/* ## corrects possible view port issues in browsers that do not recognize the viewport meta tag ## */
/* http://timkadlec.com/2013/01/windows-phone-8-and-device-width/ */
@-webkit-viewport {
    width: device-width;
}

@-moz-viewport {
    width: device-width;
}

@-ms-viewport {
    width: device-width;
}

@-o-viewport {
    width: device-width;
}

@viewport {
    width: device-width;
}

/*
MAIN FONT:
font-family: Montserrat, sans-serif; font-weight: 400+italic / 600 / 700 / 800
*/


*, *:before, *:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

/*! normalize.css v2.0.1 | MIT License | git.io/normalize */

/* ==========================================================================
   HTML5 display definitions
   ========================================================================== */

/*
 * Corrects `block` display not defined in IE 8/9.
 */

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
nav,
section,
summary {
    display: block;
}

/*
 * Corrects `inline-block` display not defined in IE 8/9.
 */

audio,
canvas,
video {
    display: inline-block;
}

    /*
 * Prevents modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */

    audio:not([controls]) {
        display: none;
        height: 0;
    }

/*
 * Addresses styling for `hidden` attribute not present in IE 8/9.
 */

[hidden] {
    display: none;
}

/* ==========================================================================
   Base
   ========================================================================== */

/*
 * 1. Sets default font family to sans-serif.
 * 2. Prevents iOS text size adjust after orientation change, without disabling
 *    user zoom.
 */

html {
    font-family: sans-serif; /* 1 */
    -webkit-text-size-adjust: 100%; /* 2 */
    -ms-text-size-adjust: 100%; /* 2 */
    scroll-behavior: smooth;
    scroll-padding-top: 120px;
}

/*
 * Removes default margin.
 */

body {
    margin: 0;
}

/* ==========================================================================
   Links
   ========================================================================== */

/*
 * Addresses `outline` inconsistency between Chrome and other browsers.
 */


:focus,
a:focus {
    outline: none;
}

::-moz-focus-inner,
a::-moz-focus-inner {
    border: 0;
}

/*
 * Improves readability when focused and also mouse hovered in all browsers.
 */

a:active,
a:hover {
    outline: 0;
}

/* ==========================================================================
   Typography
   ========================================================================== */

/*
 * Addresses `h1` font sizes within `section` and `article` in Firefox 4+,
 * Safari 5, and Chrome.
 */

h1 {
    font-size: 2em;
}

/*
 * Addresses styling not present in IE 8/9, Safari 5, and Chrome.
 */

abbr[title] {
    border-bottom: 1px dotted;
}

/*
 * Addresses style set to `bolder` in Firefox 4+, Safari 5, and Chrome.
 */

b,
strong {
    font-weight: bold;
}

/*
 * Addresses styling not present in Safari 5 and Chrome.
 */

dfn {
    font-style: italic;
}

/*
 * Addresses styling not present in IE 8/9.
 */

mark {
    background: #ff0;
    color: #000;
}


/*
 * Corrects font family set oddly in Safari 5 and Chrome.
 */

code,
kbd,
pre,
samp {
    font-family: monospace, serif;
    font-size: 1em;
}

/*
 * Improves readability of pre-formatted text in all browsers.
 */

pre {
    white-space: pre;
    white-space: pre-wrap;
    word-wrap: break-word;
}

/*
 * Sets consistent quote types.
 */

q {
    quotes: "\201C" "\201D" "\2018" "\2019";
}

/*
 * Addresses inconsistent and variable font size in all browsers.
 */

small {
    font-size: 80%;
}

/*
 * Prevents `sub` and `sup` affecting `line-height` in all browsers.
 */

sub,
sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}

sup {
    top: -0.5em;
}

sub {
    bottom: -0.25em;
}

/* ==========================================================================
   Embedded content
   ========================================================================== */

/*
 * Removes border when inside `a` element in IE 8/9.
 */

img {
    border: 0;
}

/*
 * Corrects overflow displayed oddly in IE 9.
 */

svg:not(:root) {
    overflow: hidden;
}

/* ==========================================================================
   Figures
   ========================================================================== */

/*
 * Addresses margin not present in IE 8/9 and Safari 5.
 */

figure {
    margin: 0;
}

/* ==========================================================================
   Forms
   ========================================================================== */

/*
 * Define consistent border, margin, and padding.
 */

fieldset {
    border: 1px solid #c0c0c0;
    margin: 0 2px;
    padding: 0.35em 0.625em 0.75em;
}

/*
 * 1. Corrects color not being inherited in IE 8/9.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 */

legend {
    border: 0; /* 1 */
    padding: 0; /* 2 */
}

/*
 * 1. Corrects font family not being inherited in all browsers.
 * 2. Corrects font size not being inherited in all browsers.
 * 3. Addresses margins set differently in Firefox 4+, Safari 5, and Chrome
 */

button,
input,
select,
textarea {
    font-family: inherit; /* 1 */
    font-size: 100%; /* 2 */
    margin: 0; /* 3 */
}

/*
 * Addresses Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */

button,
input {
    line-height: normal;
}

    /*
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *    and `video` controls.
 * 2. Corrects inability to style clickable `input` types in iOS.
 * 3. Improves usability and consistency of cursor style between image-type
 *    `input` and others.
 */

    button,
    html input[type="button"], /* 1 */
    input[type="reset"],
    input[type="submit"] {
        -webkit-appearance: button; /* 2 */
        cursor: pointer; /* 3 */
    }

        /*
 * Re-set default cursor for disabled elements.
 */

        button[disabled],
        input[disabled] {
            cursor: default;
        }

    /*
 * 1. Addresses box sizing set to `content-box` in IE 8/9.
 * 2. Removes excess padding in IE 8/9.
 */

    input[type="checkbox"],
    input[type="radio"] {
        box-sizing: border-box; /* 1 */
        padding: 0; /* 2 */
    }

    /*
 * 1. Addresses `appearance` set to `searchfield` in Safari 5 and Chrome.
 * 2. Addresses `box-sizing` set to `border-box` in Safari 5 and Chrome
 *    (include `-moz` to future-proof).
 */

    input[type="search"] {
        -webkit-appearance: textfield; /* 1 */
        -moz-box-sizing: content-box;
        -webkit-box-sizing: content-box; /* 2 */
        box-sizing: content-box;
    }

        /*
 * Removes inner padding and search cancel button in Safari 5 and Chrome
 * on OS X.
 */

        input[type="search"]::-webkit-search-cancel-button,
        input[type="search"]::-webkit-search-decoration {
            -webkit-appearance: none;
        }

    /*
 * Removes inner padding and border in Firefox 4+.
 */

    button::-moz-focus-inner,
    input::-moz-focus-inner {
        border: 0;
        padding: 0;
    }

/*
 * 1. Removes default vertical scrollbar in IE 8/9.
 * 2. Improves readability and alignment in all browsers.
 */

textarea {
    overflow: auto; /* 1 */
    vertical-align: top; /* 2 */
}

/* ==========================================================================
   Tables
   ========================================================================== */

/*
 * Remove most spacing between table cells.
 */

table {
    border-collapse: collapse;
    border-spacing: 0;
}



/* ===============  Default Adjustments  =============== */

body {
}

::-moz-selection {
    background: #3197fc;
    text-shadow: none;
}

::selection {
    background: #3197fc;
    text-shadow: none;
}

hr {
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid #ccc;
    margin: 1em 0;
    padding: 0;
}

/* HACK: Exclude chat bot images from the 'height' rule */
img:not([class^='rcw']) {
    max-width: 100% !important;
    height: auto !important;
    vertical-align: middle;
}

fieldset {
    border: 0;
    margin: 0;
    padding: 0;
}

textarea {
    resize: vertical;
}

/** FIX Google Maps Info window styes problem **/
img[src*="gstatic.com/"],
img[src*="googleapis.com/"] {
    max-width: none !important;
}

p {
    margin: 0 0 1em 0;
}

.ir {
    background-color: transparent;
    border: 0;
    overflow: hidden;
    *text-indent: -9999px;
}

    .ir:before {
        content: "";
        display: block;
        width: 0;
        height: 100%;
    }

.hidden {
    display: none !important;
    visibility: hidden !important;
}

.visuallyHidden,
.visually-hidden {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
}

    .visuallyHidden.focusable:active, .visuallyHidden.focusable:focus, .visually-hidden:active, .visually-hidden:focus {
        clip: auto;
        height: auto;
        margin: 0;
        overflow: visible;
        position: static;
        width: auto;
    }

.invisible {
    visibility: hidden;
}

.clearfix:before, .clearfix:after {
    content: "";
    display: table;
}

.clearfix:after {
    clear: both;
}

.clearfix {
    zoom: 1;
}

.hide {
    display: none;
}

.smallest {
    font-size: .8em;
}

.smaller {
    font-size: .9em;
}

.larger {
    font-size: 1.1em;
}

.largest {
    font-size: 1.2em;
}

.bold {
    font-weight: bold;
}

.italic {
    font-style: italic !important;
}

.strike {
    text-decoration: line-through !important;
}

.red, .red:visited {
    color: #f00 !important;
}

.green, .green:visited {
    color: #390 !important;
}

.lgreen, .lgreen:visited {
    color: #97937d !important;
}

.bgYellow {
    background: yellow;
}

.bgGreen {
    background: lime;
}

.vtop {
    vertical-align: top;
}

.center {
    text-align: center;
}

.left {
    text-align: left;
}

.right {
    text-align: right;
}

.floatLeft {
    float: left;
}

.floatRight {
    float: right;
}

.imgLeft {
    float: left;
    margin-right: 5px;
    padding: 5px;
    border: 1px solid #c4c4c4;
}

.imgRight {
    float: right;
    margin-left: 5px;
    padding: 5px;
    border: 1px solid #c4c4c4;
}

.imgCircle {
    border-radius: 50%;
}

.nowrap {
    white-space: nowrap;
}

.borderless {
    border: 0;
    border-collapse: collapse;
}

.breakforprint {
    page-break-after: always;
}

.clear {
    overflow: hidden;
    clear: both;
    height: 0;
    margin: 0;
    font-size: 1px;
    line-height: 0;
}

.important {
    color: red;
    font-weight: bold;
    text-transform: uppercase;
}

.skip {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    -webkit-transition: none;
    -moz-transition: none;
    -o-transition: none;
    transition: none;
}

    .skip:focus, .skip:active {
        clip: auto;
        color: #fff;
        height: auto;
        margin: 0;
        overflow: visible;
        padding: 10px;
        text-align: center;
        background: #1f3b62;
        width: 100%;
        border: 1px dashed #fff;
        z-index: 1001;
    }


/* ## Base List styles ## */
ul, ol {
    margin: 0 0 1em;
}

.noBullet {
    padding: 0 0 0 1em;
    list-style-type: none;
}

.noIndent {
    padding: 0;
    list-style-type: none;
}

.bulletSquare {
    list-style-type: square;
}

/* ## Note/hint text or link ## */
.note {
    font-size: .8em;
    color: #4e4e4e;
}

    .note a, .note a:link, .note a:visited {
        text-decoration: underline;
    }

/* GOOGLE MAP IMAGES */
.gm-style img {
    max-width: initial !important;
    height: initial !important;
}

/* ================================================================
   PRIMARY LAYOUT STYLES 
   ================================================================ */

/* Enter unique styles for site here */

/* ## Disabled Form Fields ## */
input[disabled=true] {
    background-color: #F0F0F0;
}

textarea[disabled=true] {
    background-color: #F0F0F0;
}

select[disabled=true] {
    background-color: #F0F0F0;
}

input[readonly=true] {
    background-color: #F0F0F0;
}

textarea[readonly=true] {
    background-color: #F0F0F0;
}

select[readonly=true] {
    background-color: #F0F0F0;
}

/* Removed :link from the list to help cut down on writing time and prevent the need for extra specificity for classes */
a,
a:visited {
    text-decoration: underline;
    font-weight: bold;
}

    a:hover,
    a:active,
    a:focus {
        text-decoration: none;
    }

    a,
    a:visited {
        color: #003f72;
    }

.site-theme-1 a:hover,
.site-theme-1 a:active,
.site-theme-1 a:focus {
    color: #003f72;
}

a:active,
a:focus { /* outline:1px solid #78aeda; */
}

.btnText {
    margin: 0;
    padding: 0;
    color: #6D6D6D;
    text-decoration: underline;
    border: 0;
    background: none;
}

    .btnText:hover {
        color: #6D6D6D;
        text-decoration: none;
    }

/* ## Link Modifiers ## */
a .text {
    text-decoration: underline;
}

a:hover .text, a:active .text, a:focus .text {
    text-decoration: none;
}

a [class^="icon-"] {
    text-decoration: none;
}

a.removeLink {
    color: #f00;
    font-size: 0.9em;
}

svg.icon {
    display: inline-block;
    width: 1em;
    height: 1em;
    stroke-width: 0;
    stroke: currentColor;
    fill: currentColor;
}

    svg.icon.icon-size-1 {
        width: 1.5em;
        height: 1.5em;
    }

.btn svg.icon:not(.icon-search) {
    min-width: 1.5em;
    min-height: 1.5em;
    margin: 0 5px 0 0;
}

/* ## Focus Overlay - Advanced Focus States - It is still important to add basic css focus states for when no JS is active ## */
#focus-overlay {
    display: none;
    position: relative;
    border-radius: 2px;
    box-shadow: 0 0 3px 2px #78aeda;
    transition: all 0.2s cubic-bezier(0, 1, 0, 1);
}

    #focus-overlay::after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        opacity: 0;
        box-shadow: 0 0 2px 1px #008cff, 0 0 2px #008cff inset;
        transition: all 0.1s ease-out;
    }

    #focus-overlay.focus-overlay-active {
        display: block;
    }

    #focus-overlay.focus-overlay-animating::after {
        opacity: 1;
    }

.focus-overlay-target {
    outline: none;
}

.skip a {
    position: absolute;
    left: -10000px;
    width: 1px;
    height: 1px;
    overflow: hidden;
    text-align: center;
}

    .skip a:focus {
        position: static;
        width: auto;
        height: auto;
        background: #444444;
        color: #ffffff;
        font-weight: bold;
        display: block;
        padding: 10px;
    }


/* ## Link Lists ## */
/* We use '<ul class="linkList">' when setting a list of organized links. */
ul.linkList {
    margin: 0 0 15px 0;
    padding: 0;
    list-style-type: none;
}

    ul.linkList li {
        margin-bottom: 8px;
    }

    ul.linkList a,
    ul.linkList a:link,
    ul.linkList a:visited {
        text-decoration: none;
    }

        ul.linkList a:hover,
        ul.linkList a:active {
            text-decoration: underline;
        }


/* ## Start Up Layout - Use, modify, or delete as need be ## */
html, body {
    overflow-x: hidden;
    color: #444444;
}

body {
    background: #fff;
    font-family: Montserrat, sans-serif;
}

.container {
}

.site-body,
.footer {
    position: relative;
}

.footer a {
    text-decoration: none;
    font-weight: normal;
}
    .footer a:hover,
    .footer a:focus {
        text-decoration: underline;
    }

.cm-js-menu-active #swContainer:after,
.cm-js-menu-active .site-body:after,
.cm-js-menu-active .footer:after {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: #000;
    opacity: .6;
}

/* ==========================================================================
   Typography
   ========================================================================== */

h1, h2, h3, h4, h5, h6 {
    margin: 0 0 .7em 0;
    line-height: 1.1em;
    font-weight: 700;
    color: #003f72;
}

h1 {
    font-size: 60px;
}

h2,
.title-size-1 {
    font-size: 35px;
}

h3,
.title-size-2 {
    font-size: 25px;
}

h4,
.title-size-3 {
    font-size: 20px;
}

h5,
.title-size-4 {
    font-size: 17px;
}

.title-size-5 {
    font-size: 18px;
}

.title-size-6,
h6 {
    font-size: 17px;
}

@media only screen and (min-width:64em) {
    h1 {
        font-size: 55px;
    }

    h2,
    .title-size-1 {
        font-size: 40px;
    }

    h3,
    .title-size-2 {
        font-size: 30px;
    }

    h4,
    .title-size-3 {
        font-size: 26px;
    }
}

@media only screen and (max-width:63.99em) {
    .page-subtitle {
        text-align: center;
    }
}

/* ==========================================================================
   Layouts
   ========================================================================== */

.table-layout {
}

    .table-layout .table-cell {
        background-repeat: no-repeat;
        background-size: cover;
        background-position: 50% 50%;
    }

        .table-layout .table-cell .inner {
            padding: 10px;
        }

    .table-layout.with-overlay .table-cell {
        padding: 10px;
    }

        .table-layout.with-overlay .table-cell .inner {
            background: rgba(255,255,255,.7);
            padding: 20px;
        }

    .table-layout .table-cell img.set-as-background {
        display: none;
    }



/* ==========================================================================
   Global Modules - Most modules use the same setup and changing below changes each one. 
   If global, change here, if specific, change via events.css, news.css etc. 
   ========================================================================== */

.mod {
    position: relative;
    margin: 0 0 1em;
}

.title {
    position: relative;
    margin: 0 0 1em;
}

    .title a {
        text-decoration: none;
    }

.mod-head {
    position: relative;
}

    .mod-head .title {
    }

    .mod-head .more {
        position: absolute;
        right: 0px;
        top: 0px;
    }

.mod-content {
}

.mod-rail {
    border: 1px solid #dddddd;
}

    .mod-rail .mod-head {
        background: #eeeeee;
        border-bottom: 1px solid #dddddd;
    }

        .mod-rail .mod-head .title {
            padding: 10px;
            margin: 0;
        }

    .mod-rail .mod-content {
        padding: 10px;
        font-size: .875em;
    }

    .mod-rail .more {
        border-top: 1px solid #dddddd;
    }

        .mod-rail .more a {
            display: block;
            background: #eeeeee;
            padding: 10px;
            text-decoration: none;
            text-align: center;
        }

            .mod-rail .more a:hover,
            .mod-rail .more a:focus {
                background: #dddddd;
            }

/* Item Lists Content
   ========================================================================== */

.item-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.item {
    padding: 1em 0;
    border-top: 1px solid #ccc;
}

    .item:first-child {
        border-top: 0;
        padding-top: 0;
    }

    .item:last-child {
        padding-bottom: 0;
    }

    .item > .content {
        display: table-cell;
    }

.content .title {
    margin: 0;
}

.item-list .content p {
    margin: 0;
}

.content .date {
    font-size: 0.85em;
    margin: 0 0 5px;
    display: block;
}


/* Item Media
   ========================================================================== */

.aside {
    text-align: center;
    padding: 0 0 10px;
}

    .aside.date-icon {
        display: table-cell;
        padding: 0 15px 0 0;
    }

.date-icon .date {
    border: 1px solid #888;
    background: #888;
    font-weight: bold;
    text-align: center;
    width: 50px;
}

    .date-icon .date .month {
        font-size: .875em;
        padding: 5px;
        color: #fff;
    }

    .date-icon .date .day {
        padding: 10px 5px;
        background: #fff;
    }

.caption {
    display: block;
    font-size: 0.8em;
    line-height: 1.2em;
}


/* Media Queries for Item Lists 
  ========================================================================== */


@media only screen and (min-width:30em) {

    .item {
        display: table;
        padding: 1em 0;
        width: 100%;
        border-top: 1px solid #ccc;
    }

        .item > .content {
            display: table-cell;
            width: 100%;
            vertical-align: top;
        }

    .aside {
        display: table-cell;
        padding: 0 15px 0 0;
    }

        .aside img {
            max-width: 80px !important;
        }
}

@media only screen and (min-width:48em) {

    .item .item-block {
        display: table-cell;
        vertical-align: top;
        padding: 0 10px 0 0;
    }

        .item .item-block:last-child {
            padding: 0;
        }
}


/* News
   ========================================================================== */

.article > .aside {
    float: right;
    margin: 1em;
}

.meta {
    margin: 0.5em 0;
}

    .meta > div {
        float: left;
    }

    .meta .social-tools {
        float: right;
    }


/* ==========================================================================
   Filters
   ========================================================================== */

.filter {
    padding: 30px;
    margin: 0 0 28px;
}

.tabs-container .filter {
    margin: 0;
}

.filter .title {
    text-align: center;
    font-size: 27px;
}

.filter.theme-2 .title {
    color: #fff;
}

.site-theme-2 .filter.theme-2 .title {
    color: #003f72;
}

@media (min-width: 80em) {
    .filter {
        padding: 40px;
        margin: 0 0 38px;
    }

    .tabs-container .filter {
        margin: 0;
    }

    .filter .title {
        text-align: center;
        font-size: 34px;
    }
}

.filter-col {
    margin-bottom: 25px;
}

    .filter-col input,
    .filter-col select {
        margin-bottom: 0 !important;
    }

    .filter-col.actions {
        text-align: center;
    }

@media (min-width: 64em) {
    .filter-row {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }

    .filter-col {
        margin-bottom: 0;
        padding: 0 20px;
        align-self: flex-end;
    }

        .filter-col.fc-size-1 {
            width: 40%;
        }

        .filter-col.fc-size-2 {
            width: 35%;
        }

        .filter-col.fc-size-3 {
            width: 25%;
        }

        .tabs-container .filter-col.fc-size-3 {
            width: 21%;
        }
        .tabs-container .filter-col.fc-size-3:first-child {
            width: 37%;
        }

        .filter-col .btn {
            width: 100%;
        }
}
@media (min-width: 64em) and (max-width: 79.99em) {
    .tabs-container .filter-col {
        padding: 0 2px;
    }
}


/* Pagination
   ========================================================================== */

.paging {
}

.sort-status {
    font-size: .875em;
    margin: 0 0 1em;
}

.paging-results {
    float: left;
}

.paging-list {
    float: right;
}

    .paging-list ul {
        display: block;
        padding: 0;
        margin: 0;
    }

    .paging-list li {
        display: block;
        padding: 0;
        margin: 0;
        border: 1px solid #002B40;
        border-left-width: 0;
        float: left;
    }

        .paging-list li:first-child {
            border-left-width: 1px;
        }

        .paging-list li a,
        .paging-list li span {
            display: block;
            min-width: 30px;
            padding: 2px 5px;
            text-align: center;
        }

        .paging-list li a {
            /* Link State */
        }

        .paging-list li span {
            /* Current Page State */
        }

        .paging-list li.disabled {
            display: none;
        }

            .paging-list li.disabled + li {
                border-left-width: 1px;
            }

            .paging-list li.disabled + .all {
                border-left-width: 0;
            }

/* ==============================================================
   GLOBAL STYLES 
   ============================================================== */
/*--- where is this used at? ----*/
.unset-line-clamp {
    -webkit-line-clamp: unset !important;
}

.field-validation-error {
    color: red;
}

.test {
    color: red;
}

.bdr {
    border: 1px solid #555244;
    padding: 1px;
    background-color: #a7a496;
}

.bdrTop {
    border-top: 1px solid #999;
}

.bdrRight {
    border-right: 1px solid #999;
}

.bdrBottom {
    border-bottom: 1px solid #999;
}

.bdrLeft {
    border-left: 1px solid #999;
}

.bdrDash {
    border: 1px dashed #555244;
}

.bdrDashTop {
    border-top: 1px dashed #999;
}

.bdrDashRight {
    border-right: 1px dashed #999;
}

.bdrDashBottom {
    border-bottom: 1px dashed #999;
}

.bdrDashLeft {
    border-left: 1px dashed #999;
}

.alternate {
    background-color: #d8d8d8;
}

.row {
    background-color: #ffffff;
}

.pl-1 {
    padding-left: 15px;
}

.align-items-center {
    align-items: center;
}

/* ##  Error Markers  ## */

.fieldlbl {
    padding: 4px 2px 0 0;
    text-align: right;
}

.field {
    padding-left: 2px;
}

.fieldpad {
    padding-bottom: 2px;
}

.fieldtext {
    color: #000000;
}

.fielderror {
    color: #cc0000;
}

.fieldnorm {
    width: 16px;
    height: 20px;
}

.fieldreq {
    width: 16px;
    height: 20px;
}

span.fieldreq {
    padding: 0 6px;
    background-position: center center;
}

span.fieldnorm {
    padding: 0 6px;
    background-position: center center;
}

.fieldred {
    width: 16px;
    height: 20px;
}

span.fieldred {
    padding: 0 6px;
    background-position: center center;
}


/* ##  Tooltip Classes  ## */

.toolTipWrpr {
    display: none;
    width: 340px;
    z-index: 99;
}

.toolTipShadow {
    padding: 10px 13px 1px 13px;
    color: #666666;
}

.toolTopShadowBottom {
    width: 340px;
    height: 16px;
}

.toolTipDate {
    font-size: 11px;
    color: #999999;
    font-weight: bold;
}

.toolTipName {
    font-size: 14px;
    color: #666666;
    font-weight: bold;
    margin-bottom: 14px;
}


/* ##  Generic Pager  ## */

.generic-pager {
    margin: 0 0 1em;
}

    .generic-pager ul {
        list-style-type: none;
        margin: 0;
        padding: 0;
    }

    .generic-pager li {
        display: inline-block;
        margin: 0 3px 5px 0;
        font-size: .875em;
        font-weight: bold;
    }

        .generic-pager li a {
            display: inline-block;
            color: #444444;
            padding: 6px 10px;
            background: #cccccc;
            text-decoration: none;
        }

            .generic-pager li a:hover, .genericPager li a:focus {
                color: #333333;
                background: #aaaaaa;
                text-decoration: none;
            }

        .generic-pager li.nolink {
            color: #fff;
            background: #444444;
            padding: 6px 10px;
        }

        .generic-pager li.active {
            color: #fff;
            background: #444444;
            padding: 6px 10px;
        }


/* ##  Smart Bug  ## */

.smartbug ul {
    list-style-type: none;
    background-color: #ccc;
    font-size: 10px;
    border-left: 1px solid #000;
    border-right: 1px solid #000;
    border-top: 1px solid #000;
    padding: 0px;
}

.smartbug li {
    border-bottom: 1px solid #000;
}

.smartbug a, .smartbug a:link, .smartbug a:visited {
    text-decoration: none;
    display: block;
    color: #000;
    padding: 5px;
}

    .smartbug a:hover {
        background-color: #999;
        text-decoration: underline;
    }


/* ##  Master Overlay Styles ## */

.site-overlay {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    background: #ffffff;
    overflow: hidden;
    -webkit-box-shadow: 0 0 15px #333;
    -moz-box-shadow: 0 0 15px #333;
    box-shadow: 0 0 15px #333;
}

    .site-overlay .overlay-content {
        padding: 15px;
    }


/* Legacy Overlay */
.siteOverlay {
    display: none;
    position: relative;
    width: 550px;
    max-width: 95%;
    min-height: 1px;
    background-color: #fff;
    z-index: 1000;
    -webkit-box-shadow: 0 0 15px #333;
    -moz-box-shadow: 0 0 15px #333;
    box-shadow: 0 0 15px #333;
}

    .siteOverlay .overlayBar {
        position: relative;
        padding: 7px 10px;
        text-align: right;
        border-bottom: 1px solid #e6e6e6;
    }

    .siteOverlay .overlayClose {
        display: inline-block;
        cursor: pointer;
        z-index: 5;
    }

    .siteOverlay .overlayContent {
        padding: 15px;
    }


/* =================================================================
   MODULE STYLES - No Specific home for these yet
===================================================================*/

.breadcrumb-container {
    background: #eee;
    border-bottom: 1px solid #ddd;
    padding: 10px 0;
}

/* ##  Breadcrumb  ## */
.bar {
    font-weight: 600;
}

.breadcrumbs {
    padding: 0 0 0 66px;
    font-size: 15px;
}

    .breadcrumbs a, .breadcrumbs a:visited {
        text-decoration: none;
    }

        .breadcrumbs a {
            text-decoration: underline;
        }

        .breadcrumbs a.disable-link:hover, .breadcrumbs a.disable-link:focus, .breadcrumbs a.disable-link:active {
            text-decoration: none;
        }

.bc-devider {
    border: 5px solid transparent;
    border-left: 5px solid currentColor;
    display: inline-block;
    margin: 0 5px;
}

.bc-devider2 {
    border: 5px solid transparent;
    border-left: 5px solid currentColor;
    display: inline-block;
    margin: 0 5px;
}

.pageToolsWrapper {
    font-size: 15px;
    padding: 0 16px;
}

    .pageToolsWrapper a {
        padding: 0 16px 0 0;
    }

    .pageToolsWrapper .icon {
        width: 1.5em;
        height: 1.5em;
        margin: 0 4px 0 16px;
        vertical-align: middle;
        color: #003f72;
    }

        .pageToolsWrapper .icon:last-of-type {
            margin-left: 8px;
        }



/* Remove Print icon and link from Page Tools for mobile */
@media (max-width: 63.99em) {
    .pageToolsWrapper > a:nth-of-type(1),
    .pageToolsWrapper > .icon:nth-of-type(1) {
        display: none;
    }
}

/* ## Page Heading ## */

.page-heading {
    margin-bottom: 15px;
    border-bottom: 1px solid #dbdbdb;
}

    .page-heading .title {
        margin: 0;
        padding: 0 0 10px;
        font-size: 1.6em;
        font-weight: normal;
        background: none;
        border: 0;
    }


/* ## Email a Friend ## */

.emailFriendWrapper {
}

    .emailFriendWrapper .inner {
        padding: 10px;
    }

    .emailFriendWrapper .emailFriendSender {
        margin: 10px 0 20px;
        border-bottom: 1px dashed #ccc;
    }

    .emailFriendWrapper .emailFriendAdditional {
        margin: 10px 0 0;
        padding: 20px 0 0;
        border-top: 1px dashed #ccc;
    }


/* ## FAQ ## */

.faq-wrapper {
}

    .faq-wrapper h2 {
    }

    .faq-wrapper .category-header {
    }

    .faq-wrapper .question-list {
        list-style-type: none;
        padding: 0px;
        margin: 0 0 20px 10px;
        position: relative;
    }

        .faq-wrapper .question-list:before {
            position: absolute;
            content: '';
            height: 100%;
            width: 1px;
            left: 0;
            top: -10px;
            background: #ccc;
        }

        .faq-wrapper .question-list li {
            position: relative;
            padding: 0 0 0 20px;
        }

            .faq-wrapper .question-list li:before {
                position: absolute;
                content: '';
                width: 10px;
                height: 1px;
                left: 0;
                top: 10px;
                background: #ccc;
            }

    .faq-wrapper .faq-block {
    }

/* =================================================================
                  Carousel STYLES - Slick
===================================================================*/
.carousel-container {
    position: relative;
    margin: 2em 0;
}

.related-carousels .slider-nav a {
    text-decoration: none;
}

.slider-nav-slide {
    border: 0;
    background: none;
}

.related-carousels.carousel-container {
    margin-top: 0;
}
.site-theme-2 #additonal-locations .carousel-container {
    margin-top: 0;
}

.carousel-container:last-child {
    margin-bottom: 0;
}

.main-grid .carousel-container:not(.related-carousels) {
    margin-left: -10px;
    margin-right: -10px;
}

@media only screen and (max-width: 63.99em) {
    .main-grid .carousel-container:not(.related-carousels) {
        margin-left: -20px;
        margin-right: -20px;
    }
}

@media only screen and (max-width: 47.99em) {
    .main-grid .carousel-container.related-carousels {
        margin-left: -20px;
        margin-right: -20px;
    }
}

@media (max-width:1599px) {
    .carousel-container {
        overflow: hidden;
    }
}

.carousel,
.carousel-videos,
.dynamic-carousel {
    margin-bottom: 20px !important;
    padding-bottom: 40px;
}

@media only screen and (max-width: 39.99em) {
    .location-doctors .carousel .slick-dots,
    .dynamic-carousel .slick-dots {
        display: none !important;
    }
}

.carousel .carousel-item,
.carousel-videos .carousel-item {
    padding: 0 25px;
    outline: none;
}

.slick-arrow {
    background: #013f72;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 0;
    color: transparent;
}

    .slick-arrow:before {
        content: "";
        display: block;
        width: 10px;
        height: 10px;
        border: 1px solid #fff;
    }

@media (max-width:63.99em) {
    .slick-arrow.slick-prev {
        background-color: #013f72;
        background-image: url("../images/arrow-left.png");
        background-repeat: no-repeat;
        background-position: 73% 50%;
    }

    .slick-arrow.slick-next {
        background-color: #013f72;
        background-image: url("../images/arrow-right.png");
        background-repeat: no-repeat;
        background-position: 27% 50%;
    }

    .slick-arrow:before,
    .slick-arrow:before {
        display: none;
    }
}

.slick-prev,
.slick-next {
    position: absolute;
    top: 50%;
    z-index: 1;
    outline: none;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.related-carousels-alt-view .slick-prev,
.related-carousels-alt-view .slick-next {
    top: 100%;
}
@media (max-width: 63.99em) {
    .related-carousels-alt-view .slick-prev,
    .related-carousels-alt-view .slick-next {
        background-color: #dddddd;
    }
    .related-carousels-alt-view .slick-arrow.slick-prev {
        background-image: url(../images/arrow-left-alt.png);
    }
    .related-carousels-alt-view .slick-arrow.slick-next {
        background-image: url(../images/arrow-right-alt.png);
    }
}

.related-carousels:not(.related-carousels-alt-view) .slick-prev,
.related-carousels:not(.related-carousels-alt-view) .slick-next {
    top: 106px;
}

.item-view-3 .slick-prev,
.item-view-3 .slick-next {
    top: 50%;
    margin-top: -22px;
}

@media (max-width:47.99em) {
    .item-view-3 .slick-prev,
    .item-view-3 .slick-next {
        top: 248px;
        margin-top:0;
    }
}

@media (max-width:29.99em) {
    .item-view-3 .slick-prev,
    .item-view-3 .slick-next {
        top: 216px;
    }
}

.item-view-1.carousel .slick-prev,
.item-view-1.carousel .slick-next {
    top: 195px;
}

@media (min-width:64em) {
    .item-view-1.carousel .slick-prev,
    .item-view-1.carousel .slick-next {
        top: 260px;
    }
}

.item-view-2.carousel .slick-prev,
.item-view-2.carousel .slick-next {
    top: 150px;
}

.slick-prev {
    left: 10px;
    margin-left: -48px;
}

.slick-next {
    right: 10px;
    margin-right: -48px;
}

.slick-prev:before {
    border-right: 0;
    border-bottom: 0;
    -webkit-transform: translateX(40px) translateY(11px) rotate(-45deg);
    -ms-transform: translateX(40px) translateY(11px) rotate(-45deg);
    transform: translateX(40px) translateY(11px) rotate(-45deg);
}

.slick-next:before {
    border-left: 0;
    border-top: 0;
    -webkit-transform: translateX(5px) translateY(11px) rotate(-45deg);
    -ms-transform: translateX(5px) translateY(11px) rotate(-45deg);
    transform: translateX(5px) translateY(11px) rotate(-45deg);
}

@media (min-width:64em) {
    .slick-arrow,
    .slick-arrow {
        width: 56px;
        height: 56px;
    }

        .slick-arrow:before,
        .slick-arrow:before {
            width: 15px;
            height: 15px;
        }

    .slick-prev,
    .slick-next {
        margin: 0;
    }

        .slick-prev:before {
            -webkit-transform: translateX(17px) translateY(12px) rotate(-45deg);
            -ms-transform: translateX(17px) translateY(12px) rotate(-45deg);
            transform: translateX(17px) translateY(12px) rotate(-45deg);
        }

        .slick-next:before {
            -webkit-transform: translateX(11px) translateY(12px) rotate(-45deg);
            -ms-transform: translateX(11px) translateY(12px) rotate(-45deg);
            transform: translateX(11px) translateY(12px) rotate(-45deg);
        }

    .slick-prev {
        left: -52px;
    }

    .slick-next {
        right: -52px;
    }
}

@media (min-width:64em) and (max-width:1599px) {
    .carousel-container:not(.related-carousels) {
        padding: 0 54px;
    }
}


.slick-dots {
    margin: 25px 0 0;
    padding: 0px;
    list-style-type: none;
    text-align: center;
    position: absolute;
    bottom: 0;
    width: 100%;
}

    .slick-dots li {
        display: inline-block;
        margin: 0 4px;
    }

        .slick-dots li button {
            text-indent: -9999em;
            text-align: left;
            display: block;
            width: 12px;
            height: 12px;
            padding: 0px;
            background: none;
            border: 1px solid #cccccc;
            -webkit-border-radius: 20px;
            border-radius: 20px;
        }

        .slick-dots li.slick-active button {
            border: 1px solid #ed1990;
            background: #ed1990;
        }

.site-theme-2 .slick-dots li.slick-active button {
    border: 1px solid #6aade4;
    background: #6aade4;
}

/* Styles for Desktop Grid vs. Mobile Carousel */
@media (min-width:1400px) {
    .carousel-mobile-only {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
    }

        .carousel-mobile-only .carousel-item {
            width: 33.33%;
            margin-bottom: 20px;
        }
}
@media (min-width:1400px) and (max-width:1599px) {
    .carousel-mobile-only {
        margin: 0 -54px;
    }
}

/* =================================================================
                        PRINT STYLES
===================================================================*/

@media print {
    * {
        color: #000 !important;
        box-shadow: none !important;
        text-shadow: none !important;
        -webkit-print-color-adjust: exact !important;
        color-adjust: exact !important;
        print-color-adjust: exact !important;
    }

    a, a:visited {
        text-decoration: underline;
    }
    /* a[href]:after { content: " (" attr(href) ")"; } 
	abbr[title]:after { content: " (" attr(title) ")"; }
	.ir a:after, a[href^="javascript:"]:after, a[href^="#"]:after { content: ""; }*/
    pre, blockquote {
        border: 1px solid #999;
        page-break-inside: avoid;
    }

    thead {
        display: table-header-group;
    }

    tr, img {
        page-break-inside: avoid;
    }

    img {
        max-width: 100% !important;
    }

    @page {
        margin: 0.5in;
    }

    p, h2, h3 {
        orphans: 3;
        widows: 3;
    }

    h2, h3 {
        page-break-after: avoid;
    }

    /* Custom Print Styles */
    .hide-for-print,
    .header-links,
    .slick-dots,
    .slick-arrow,
    .site-search,
    .main-banner-links,
    .main-banner-bottom,
    .footer-middle,
    .footer-top,
    .pageToolsWrapper,
    .location-map,
    .mobile-rail-top .rail-navigation,
    .rail-banner,
    .warning-msg-container,
    .header-navigation,
    .header-search {
        display: none !important;
    }

    .svg-theme-10 svg, .svg-theme-11 svg, .svg-theme-12 svg, .svg-theme-13 svg, .svg-theme-5 svg, .svg-theme-6 svg, .svg-theme-7 svg, .svg-theme-8 svg, .svg-theme-9 svg, svg.svg-theme-5, svg.svg-theme-6, svg.svg-theme-7 {
        fill: #000 !important;
    }

    .main-banner.size-2 {
        min-height: 125px !important;
    }

    .outer-container {
        min-height: auto !important;
    }

    .sticky-wrapper,
    .sticky-wrapper .site-header {
        background: none !important;
        border: none !important;
        height: auto !important;
    }

        .sticky-wrapper .inner {
            padding: 0;
        }

    .carousel-item {
        float: none !important;
        left: 0 !important;
    }

    .item-view-5 .item-image,
    .item-view-7 .item-image {
        display: none !important;
    }

    .carousel, .carousel-videos, .dynamic-carousel {
        margin-bottom: 0px !important;
        padding-bottom: 0px !important;
    }

    .section {
        padding: 10px 0 !important;
        clear: both;
    }

    .main-banner.size-2 {
        min-height: 1px !important;
    }

    .main-banner-text {
        position: relative !important;
        left: 0 !important;
        margin-top: 20px;
    }

    .match-h-1,
    .match-h-2 {
        min-height: 1px !important;
    }

    .item-view-2 .carousel-item {
        padding-top: 0 !important;
    }

        .item-view-2 .carousel-item > div {
            padding: 0 !important;
        }

    .item-view-2 .item-image {
        position: static !important;
        margin-bottom: 10px;
    }

    /* Hide Videos Carousles */
    .carousel-videos {
        display: none !important;
    }

    /* Related Carousles */
    .slider-nav .slider-nav-slide:not(.slick-current) {
        display: none !important;
    }

    .slider-for .slider-for-item-content {
        padding: 0 !important;
    }

    .slider-for {
        margin-top: 0 !important;
    }

        .slider-for .slick-list {
            height: auto !important;
        }

    .site-theme-2 .site-logo img {
        -webkit-filter: invert(100%); /* Safari 6.0 - 9.0 */
        filter: invert(100%);
    }
}

/* Align Arrows with Images - Mobile Related carousels (Tabs) */
.align-arrows-with-images .tab-image-container {
    display: block;
    height: 402px;
    background-size: cover;
    background-position: 50% 0;
}

@media (max-width: 479px) {
    .align-arrows-with-images .tab-image-container {
        height: 200px;
    }

    .related-carousels .align-arrows-with-images-carousel .slick-next,
    .related-carousels .align-arrows-with-images-carousel .slick-prev {
        top: 200px;
    }
}

@media (min-width: 480px) and (max-width: 639px) {
    .align-arrows-with-images .tab-image-container {
        height: 280px;
    }

    .related-carousels .align-arrows-with-images-carousel .slick-next,
    .related-carousels .align-arrows-with-images-carousel .slick-prev {
        top: 280px;
    }
}

@media (min-width: 640px) and (max-width: 767px) {
    .align-arrows-with-images .tab-image-container {
        height: 370px;
    }

    .related-carousels .align-arrows-with-images-carousel .slick-next,
    .related-carousels .align-arrows-with-images-carousel .slick-prev {
        top: 370px;
    }
}

@media (min-width: 768px) and (max-width: 959px) {
    .align-arrows-with-images .tab-image-container {
        height: 220px;
    }
}

@media (min-width: 960px) and (max-width: 1023px) {
    .align-arrows-with-images .tab-image-container {
        height: 270px;
    }
}

@media (min-width: 1024px) and (max-width: 1299px) {
    .align-arrows-with-images .tab-image-container {
        height: 290px;
    }
}

@media (min-width: 1300px) and (max-width: 1399px) {
    .align-arrows-with-images .tab-image-container {
        height: 340px;
    }
}

/* ## Button Styles ## */

.btn,
a.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 14px 16px;
    line-height: 1em;
    font-weight: 700;
    font-size: 15px;
    color: #003f72;
    background: #fff;
    border: 1px solid #0a4778;
    border-radius: 4px;
    text-align: center;
    cursor: pointer;
    overflow: visible;
    text-decoration: none !important;
}

    .btn:hover,
    .btn:focus,
    a.btn:hover,
    a.btn:focus {
        text-decoration: none;
        opacity: .7;
    }

    .btn a:hover,
    .btn a:focus {
        text-decoration: none;
    }

    .btn.btn-transparent,
    a.btn.btn-transparent {
        background: none;
    }

@media (min-width:64em) and (max-width:79.99em) {
    .btn.btn-small-font,
    a.btn.btn-small-font {
        padding: 15px 10px;
        font-size: 14px;
    }
}

.site-theme-2 .btn:not(.btn-transparent),
.site-theme-2 a.btn:not(.btn-transparent) {
    color: #fff;
    background: #003f72;
    border: 1px solid #003f72;
}

.site-theme-2 .rs-heading .btn:not(.btn-transparent),
.site-theme-2 .rs-heading a.btn:not(.btn-transparent) {
    border: 1px solid #fff;
}

.site-theme-2 .btn a:not(.btn-transparent),
.site-theme-2 .btn a:not(.btn-transparent):visited {
    color: #fff;
}

.btn.btn-has-icon {
    padding-right: 46px;
    position: relative;
}

    .btn.btn-has-icon:before {
        content: "";
        position: absolute;
        top: 50%;
        right: 17px;
        display: block;
        width: 14px;
        height: 14px;
        border-radius: 50%;
        border: 1px solid currentColor;
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        transform: translateY(-50%);
    }

    .btn.btn-has-icon:after {
        content: "";
        position: absolute;
        top: 50%;
        right: 22px;
        display: block;
        width: 6px;
        height: 6px;
        border: 2px solid currentColor;
        border-left: 0;
        border-top: 0;
        -webkit-transform: translateY(-50%) rotate(-45deg);
        -ms-transform: translateY(-50%) rotate(-45deg);
        transform: translateY(-50%) rotate(-45deg);
    }

.event-email-btn.btn {
    word-wrap: break-word;
    font-size: 13px;
    padding-left: 5px;
    padding-right: 5px;
}

    .event-email-btn.btn svg.icon {
        display: block;
        margin: 0 auto 3px;
    }

.site-theme-1 .btn.btn-transparent,
.site-theme-1 a.btn.btn-transparent {
    background: none;
    border: 1px solid currentColor;
}

.site-theme-2 .content-theme-9 .main-banner-box .btn.btn-transparent,
.site-theme-2 .content-theme-9 .main-banner-box a.btn.btn-transparent {
    color: #fff;
    border-color: #fff;
}

@media (max-width: 63.99em) {
    .site-theme-2 .content-theme-9 .main-banner-box p:last-child {
        text-align: center;
    }
    #location-detail-banner-image{
        min-height: 180px;
    }
}

.site-theme-1 .btn.theme-4,
.site-theme-1 a.btn.theme-4 {
    color: #fff;
    background: #0a4778;
    border: 1px solid #0a4778;
}

.btn.full-width-btn {
    width: 100%;
}

.btn.btn-theme-1 {
    background: #6aade4;
    color: #003f72;
}

.btn.btn-theme-2 {
    background: none;
    color: #fff;
    border-color: #6aade4;
    border-width: 2px;
}

.btn.disabled-btn {
    cursor: default;
}
.btn.disabled-btn:hover,
.btn.disabled-btn:focus {
    opacity: 1;
}

.more-link {
    padding-right: 25px;
    position: relative;
    font-size: 16px;
    font-weight: 700;
    display: inline-block;
    line-height: 1em;
}

    .more-link:before {
        content: "";
        position: absolute;
        top: 50%;
        right: 0px;
        display: block;
        width: 14px;
        height: 14px;
        border-radius: 50%;
        border: 1px solid currentColor;
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        transform: translateY(-50%);
    }

    .more-link:after {
        content: "";
        position: absolute;
        top: 50%;
        right: 5px;
        display: block;
        width: 6px;
        height: 6px;
        border: 2px solid currentColor;
        border-left: 0;
        border-top: 0;
        -webkit-transform: translateY(-50%) rotate(-45deg);
        -ms-transform: translateY(-50%) rotate(-45deg);
        transform: translateY(-50%) rotate(-45deg);
    }

a.small-link {
    font-size: 14px;
    text-decoration: underline;
}

    a.small-link:hover {
        text-decoration: none;
    }


/* ## modifier for icon fonts (IcoMoon) embedded within button wrapper ## */

.btn-wrapper [class^="icon-"] {
    margin: 0 3px;
    font-size: 0.7em;
}


/* ## Site Icons ## */

.iconImage {
    position: relative;
    display: inline-block;
    bottom: 1px;
    width: 10px;
    height: 10px;
    vertical-align: middle;
    text-indent: -9999em;
    overflow: hidden;
}

.iconCart {
    width: 22px;
    height: 22px;
    background-position: 0 0;
}

.iconRefresh {
    width: 22px;
    height: 22px;
    background-position: 0 -27px;
}

.iconContinueArrow {
    width: 22px;
    height: 16px;
    background-position: 0 -57px;
}

.iconCheckbox {
    width: 18px;
    height: 14px;
    background-position: -23px -112px;
}

.iconXSquareRed {
    width: 12px;
    height: 12px;
    background-position: 0 -112px;
}

.iconSearch {
    width: 14px;
    height: 14px;
    background-position: -55px 0;
}

.iconQuestion {
    width: 22px;
    height: 22px;
    background-position: 0 -75px;
}


/* ## truncate styling ## */

.truncateLink {
}

    .truncateLink a, .truncateLink a:link, .truncateLink a:visited {
        margin-left: 5px;
    }

        .truncateLink a.truncateMore, .truncateLink a.truncateMore:link, .truncateLink a.truncateMore:visited {
        }

        .truncateLink a.truncateLess, .truncateLink a.truncateLess:link, .truncateLink a.truncateLess:visited {
        }





/* ## Table Wrapper to allow for overflow/scroll on smaller screens ## */
.image-wrapper {
    overflow: auto;
}

@media (max-width: 47.99em) {
    .image-wrapper.image-size-1 img {
        max-width: 700px !important;
    }

    .small-hide {
        display: none;
    }
}

@media (min-width: 48em) {
    .middle-large-hide {
        display: none;
    }
}

/* ## Table Wrapper to allow for overflow/scroll on smaller screens ## */
.table-wrapper {
    overflow: auto;
}

.data-table {
    widtH: 100%;
    display: table;
    border-collapse: collapse;
    margin-bottom: 20px;
}

    .data-table tr:nth-child(odd) {
        background: #e6e6e6;
    }

    .data-table th {
        background: #888888;
        padding: 6px 15px;
        font-size: 1em;
        border: 1px solid #888;
        border-bottom: 2px solid #555555;
        color: #fff;
    }

        .data-table th a {
            color: #fff;
            text-decoration: underline;
        }

    .data-table td {
        vertical-align: top;
        padding: 6px 15px;
        border: 1px solid #E1E1E1;
    }

        .data-table td td {
            border-style: none;
        }


/* ## NEW Limit Text Box ## */

.limitTextBox {
    width: 100% !important;
    margin: 0 0 1em;
}

    .limitTextBox span {
        display: none;
    }

.limitTextBoxBar {
    width: 100%;
}

.limitTextBoxBarWrpr {
    width: 100%;
    border: 0px solid #000;
    overflow: hidden;
    font-size: 9px;
    color: #000;
    white-space: nowrap;
    height: 5px;
    background-color: #FDFBBE;
}

.limitTextBoxBarInner {
    width: 0%;
    background-color: #FF0000;
}

.limitTextBoxInputWrpr {
    display: table-cell;
    width: 100%;
    vertical-align: top;
}

    .limitTextBoxInputWrpr textarea {
        vertical-align: top;
        margin: 0px !important;
    }

.limitTextBoxSpellWrpr {
    display: table-cell;
    padding-left: 5px;
    vertical-align: top;
}

    .limitTextBoxSpellWrpr img {
        max-width: 16px !important;
        cursor: pointer;
    }


/* =================================================================
                        Media Queries
===================================================================*/


/* 16px baseline (180px - 767px) */
@media only screen and (min-width:11.250em) and (max-width:47.938em) {
    .page-tools-wrapper {
        display: none;
    }

    .responsive-table,
    .responsive-table thead,
    .responsive-table tbody,
    .responsive-table tr,
    .responsive-table td {
        display: block;
        width: 100%;
    }

        .responsive-table tr {
            border: 1px solid #E1E1E1;
        }

        .responsive-table th {
            display: none;
        }

        .responsive-table td {
            border-style: none;
        }
}


/* 16px baseline (768px +) */
@media only screen and (min-width:48em) {

    /* Content and layout modifiers */
    .d-align-right {
        text-align: right;
    }

    .d-align-left {
        text-align: left;
    }

    /* ==========================================================================
       Layouts
   ========================================================================== */

    .table-layout {
        display: table;
        width: 100%;
        table-layout: fixed;
    }

        .table-layout .table-cell {
            display: table-cell;
            vertical-align: middle;
        }

            .table-layout .table-cell .inner {
                display: inline-block;
                width: 100%;
                max-width: 40em; /* half of container width */
            }

            .table-layout .table-cell:first-child {
                text-align: right;
            }

                .table-layout .table-cell:first-child .inner {
                    text-align: left;
                }

        .table-layout.full-width .table-cell .inner {
            max-width: 2000px;
        }
}


/* ==========================================================================
   THEMES
========================================================================== */
/* bg white */
.theme-1 {
    background: #fff;
}
/* bg pink color white */
.theme-2 {
    background: #ed1990;
    color: #fff;
}
/* bg light blue color dark blue */
.site-theme-2 .theme-2 {
    background: #6aade4;
    color: #003f72
}

.theme-2 a:not(.btn),
a.theme-2:not(.btn),
.theme-2 h2:not(.section-title),
.theme-2 h3:not(.section-title),
.theme-2 h4,
.theme-2 h5 {
    color: #fff;
}

.site-theme-2 .theme-2 a:not(.btn),
.site-theme-2 a.theme-2:not(.btn),
.site-theme-2 .theme-2 h2:not(.section-title),
.site-theme-2 .theme-2 h3:not(.section-title),
.site-theme-2 .theme-2 h4,
.site-theme-2 .theme-2 h5 {
    color: #003f72;
}

.rail-banner.theme-2 .content {
    background: #ed1990;
    color: #fff;
}

.site-theme-2 .rail-banner .theme-2 {
    background: #003c72;
    color: #fff;
}

    .site-theme-2 .rail-banner .theme-2 .title {
        color: #fff;
    }

    .site-theme-2 .rail-banner .theme-2 .btn {
        color: #fff;
        border-color: #fff;
    }

.site-theme-2 .rail-banner {
    border: 1px solid #e1e1e1;
}

/* bg pink color white */
.theme-3 {
    background: #ebebeb;
}
/* bg gray */
.theme-4,
.theme-4.btn {
    background: #0a4778;
    color: #fff;
}
    /* bg dark blue color white */
    .theme-4 a,
    .theme-4 .btn {
        color: #fff;
    }

.theme-5 {
    background: #ededed;
}
/* bg light gray */
.theme-6 {
    background: #6aade4;
}
/* bg light blue */
.theme-7 {
    background: #b22a2e;
    color: #fff;
}
    /* bg red */
    .theme-7 a:not(.btn),
    a.theme-7:not(.btn),
    .theme-7 h2:not(.section-title),
    .theme-7 h3:not(.section-title),
    .theme-7 h4,
    .theme-7 h5 {
        color: #fff;
    }

.theme-8 {
    background: #003f72;
}
    /* bg blue color white*/
    .theme-8,
    .theme-8 a:not(.btn) {
        color: #fff;
    }

        .theme-8 .btn-transparent {
            color: #fff;
        }

        .theme-8 h2:not(.section-title),
        .theme-8 h3:not(.section-title),
        .theme-8 h4,
        .theme-8 h5 {
            color: #fff;
        }

.theme-9 {
    background: #044376;
}
/* bg blue-alt */
.theme-10 {
    background: #f9f9f9;
}

.svg-theme-1 {
    background: #8cb8ca;
}

    .svg-theme-1 svg {
        fill: #fff;
    }

.svg-theme-2 {
    background: #004270;
}

    .svg-theme-2 svg {
        fill: #fff;
    }

.svg-theme-3 {
    background: #3678a2;
}

    .svg-theme-3 svg {
        fill: #fff;
    }

.svg-theme-4 svg,
svg.svg-theme-4 {
    fill: #6aade4;
}

.svg-theme-5 {
    background: #3678a2;
}

    svg.svg-theme-5,
    .svg-theme-5 svg {
        fill: #fff;
    }

.svg-theme-6 {
    background: #f3893c;
}

    svg.svg-theme-6,
    .svg-theme-6 svg {
        fill: #fff;
    }

.svg-theme-7 {
    background: #955e88;
}

    svg.svg-theme-7,
    .svg-theme-7 svg {
        fill: #fff;
    }

.svg-theme-8 {
    background: #d05f27;
}

    .svg-theme-8 svg {
        fill: #fff;
    }

.svg-theme-9 {
    background: #86339a;
}

    .svg-theme-9 svg {
        fill: #fff;
    }

.svg-theme-10 {
    background: #9d2065;
}

    .svg-theme-10 svg {
        fill: #fff;
    }

.svg-theme-11 {
    background: #3778a2;
}

    .svg-theme-11 svg {
        fill: #fff;
    }

.svg-theme-12 {
    background: #8db8c9;
}

    .svg-theme-12 svg {
        fill: #fff;
    }

.svg-theme-13 {
    background: #114f79;
}

.svg-theme-13 svg {
    fill: #fff;
}

.svg-icon-container {
    display: block;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    margin: 0 auto .5em auto;
}

    .svg-icon-container svg.icon {
        width: 40px;
        height: 40px;
        margin: 15px;
    }

.site-theme-2 .svg-icon-container[class*="svg-theme"] {
    background: none;
}

.site-theme-2 .svg-icon-container svg.icon {
    width: 70px;
    height: 70px;
    margin: 0px;
}

.site-theme-2 .svg-icon-container[class*="svg-theme"] svg {
    fill: currentColor;
}

@media only screen and (min-width:48em) {
    .title .svg-icon-container {
        display: inline-block;
        vertical-align: middle;
        margin-bottom: 0;
    }
}

.color-1,
.title-color-1,
.title-color-1 a {
    color: #ed1990;
}
/* pink */
.site-theme-2 .title-color-1,
.site-theme-2 .title-color-1 a {
    color: #003f72;
}
/* blue */
.color-2,
.title-color-2,
.title-color-2 a {
    color: #003f72;
}
/* blue */
.title-color-3,
.title-color-3 a {
    color: #282828;
}
/* black */

.color-1,
.color-1 a {
    color: #003f72;
}

.color-3,
.color-3 a {
    color: #6aade4;
}
    .site-theme-2 .color-3, 
    .site-theme-2 .color-3 a {
        color: #282828;
    }

    .site-theme-2 .color-3 svg.icon {
        fill: #237AC2 !important;
    }

/* blue */
.site-them-1 .color-2,
.site-theme-1 .color-2 a {
    color: #ed1990;
}
/* pink */

.box-shadow-1 {
    -webkit-box-shadow: inset 0px 0px 30px 0px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: inset 0px 0px 30px 0px rgba(0, 0, 0, 0.1);
    box-shadow: inset 0px 0px 30px 0px rgba(0, 0, 0, 0.1);
}

.box-shadow-2 {
    -webkit-box-shadow: inset 0px 45px 85px 0px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: inset 0px 45px 85px 0px rgba(0, 0, 0, 0.1);
    box-shadow: inset 0px 45px 85px 0px rgba(0, 0, 0, 0.1);
}

/* Carousel themes */
.carousel-container[class*="theme-"] {
    background: none;
}

.carousel-container .item-view-1 .carousel-item > div,
.carousel-container .item-view-2 .carousel-item > div {
    background: #ededed;
}

.theme-5 .carousel-container .item-view-1 .carousel-item > div,
.theme-5 .carousel-container .item-view-2 .carousel-item > div {
    background: #fff;
}

.carousel-container.theme-2 .item-view-3 .slick-slide > div,
.carousel-container.theme-2 .item-view-4 .slick-slide > div {
    background: #ed1990;
}

.site-theme-2 .carousel-container.theme-2 .item-view-3 .slick-slide > div,
.site-theme-2 .carousel-container.theme-2 .item-view-4 .slick-slide > div {
    background: #6aade4;
}

.carousel-container.theme-8 .item-view-3 .slick-slide > div,
.carousel-container.theme-8 .item-view-4 .slick-slide > div {
    background: #003f72;
}


/* ==========================================================================
   VIEWS
========================================================================== */
/* view 1 */
.item-view-1 .carousel-item {
    padding-top: 100px;
    position: relative;
}

@media (min-width:80em) {
    .item-view-1 .carousel-item {
        padding-left: 30px;
        padding-right: 30px;
    }
}

.item-view-1 .carousel-item > div {
    padding: 130px 20px 20px 20px;
}

.item-view-1 .item-image {
    position: absolute;
    /* width: 100%; */
    top: 0px;
    left: 50%;
    transform:translateX(-50%);
    width:270px;
}

    .item-view-1 .item-image img {
        display: block;
        margin: 0 auto;
        width: 200px;
        max-width: 80% !important;
        border-radius: 50%;
    }

.item-view-1 .item-content p:last-child {
    margin-bottom: 0;
}

.item-view-1 .item-content .match-h-2 {
    margin-bottom: 1em;
}

@media (min-width:64em) {
    .item-view-1 .carousel-item > div {
        padding: 150px 40px 40px 40px;
    }

    .item-view-1 .item-image img {
        width: 269px;
    }
}
/* Adjustement when there are less then three items in view-1 carousel */
.item-view-1.desktop-1 {
    max-width: 451px;
    margin: 0 auto;
}

.item-view-1.desktop-2 {
    max-width: 902px;
    margin: 0 auto;
}

/* view 2 */
.item-view-2 .carousel-item {
    padding-top: 70px;
    position: relative;
}

@media (max-width:39.99em) {
    .item-view-2 .carousel-item { padding-top: 110px; }
}
@media (max-width:22.49em) {
    .item-view-2 .carousel-item {
        padding-top: 90px;
    }
}

@media (min-width:80em) {
    .item-view-2 .carousel-item {
        padding-left: 20px;
        padding-right: 20px;
    }
}

.show-all-btn-container {
    display: none;
}

@media (min-width:87.5em) {
    .item-view-2 .carousel-item + .carousel-item + .carousel-item + .carousel-item {
        display: none;
    }

    .show-all .item-view-2 .carousel-item + .carousel-item + .carousel-item + .carousel-item {
        display: block;
    }

    .show-all-btn-container {
        display: block;
        margin-top: -40px;
    }

        .show-all-btn-container.hide-btn {
            display: none;
        }
}

.item-view-2 .carousel-item > div {
    padding: 130px 25px 20px 25px;
}

.item-view-2 .item-image {
    position: absolute;
    width: 100%;
    top: 0px;
    left: 0;
}

    .item-view-2 .item-image img {
        display: block;
        margin: 0 auto;
        width: 370px;
    }
@media(max-width:39.99em) {
    .item-view-2 .item-image {
        padding: 0 25px;
    }
}
@media(min-width:40em) {
    .item-view-2 .item-image img {
        max-width: 80% !important;
    }
}

.item-view-2 .item-content p:last-child {
    margin-bottom: 1em;
}

.item-view-2 .item-content .match-h-2 {
    margin-bottom: 1em;
}

@media (min-width:64em) {
    .item-view-2 .carousel-item > div {
        padding: 150px 20px 5px;
    }
    .grid-9.main-grid .item-view-2 .carousel-item > div {
        padding: 100px 20px 5px;
    }
}

@media(min-width:75em){
    .item-view-2 .carousel-item > div{
        padding: 100px 20px 5px;
    }
    .grid-9.main-grid .item-view-2 .carousel-item > div {
        padding: 65px 20px 5px;
    }
}

@media(min-width:78.50em){
    .item-view-2 .carousel-item > div{
        padding: 130px 20px 5px;
    }
    .grid-9.main-grid .item-view-2 .carousel-item > div {
        padding: 85px 20px 5px;
    }
    .item-view-2 .item-content .title{
        margin-bottom: 20px;
        margin-top: 10px;
    }
}

@media(min-width:85.38em) {
    .item-view-2 .carousel-item > div {
        padding: 140px 20px 5px;
    }
    .grid-9.main-grid .item-view-2 .carousel-item > div {
        padding: 95px 20px 5px;
    }
}

@media(min-width:93.76em){
    .item-view-2 .carousel-item > div{
        padding: 150px 20px 5px;
    }
    .grid-9.main-grid .item-view-2 .carousel-item > div {
        padding: 115px 20px 5px;
    }
}

/* view 3 */
/* @media (min-width:48em) {
	.item-view-3.carousel .carousel-item .img {
		overflow: hidden;
	}
	.item-view-3.carousel .carousel-item .img img {
		height: 100% !important;
		max-width: 800px !important;
	}
}
*/
@media (min-width:90em) {
    .item-view-3 .carousel-item {
        padding-left: 160px;
        padding-right: 160px;
    }

    .item-view-3 .slick-prev {
        left: 0;
    }

    .item-view-3 .slick-next {
        right: 0;
    }
}

/* view 4 */
.item-view-4.carousel .carousel-item {
    padding: 0 23px;
}

.item-view-4 .match-h-1 {
    position: relative;
}

.item-view-4 .item-content {
    padding: 30px 25px 115px 25px;
}

.item-view-4 .item-image img {
    width: 100%;
}

.item-view-4 .item-footer {
    position: absolute;
    left: 25px;
    bottom: 35px;
}

/* view 5 */
.item-view-5 {
    font-size: 17px;
    text-align: center;
}

    .item-view-5.desktop-2 {
        max-width: 800px;
        margin: 0 auto;
    }

    .item-view-5 .item-image img {
        display: block;
        margin: 0 auto 25px auto;
        width: 188px;
        border-radius: 50%;
    }

    .item-view-5 .item-image .image-holder {
        display: block;
        width: 188px;
        height: 188px;
        background-repeat: no-repeat;
        background-size: cover;
        background-position: 50% 0;
        border-radius: 50%;
        margin: 0 auto 25px auto;
        overflow: hidden;
    }

    .item-view-5 .item-image .image-holder img {
        border-radius: 0;
    }

    .item-view-5 .item-image .doctor-video-button {
        margin-top: -50px;
        margin-bottom: 20px;
    }

@media (min-width:75em) and (max-width: 81.200em) {
    .item-view-5 .item-image .image-holder {
        width: 156px;
        height: 156px;
    }
}

    .item-view-5 .title {
        margin: 0;
    }

    .item-view-5 p {
        margin: 0 0 5px 0;
    }

    .item-view-5 ul {
        padding: 0;
        margin: 0;
        list-style-type: none;
    }

    /* view 6 */
    .item-view-6 {
    }

    /* view 7 */
    .item-view-7.desktop-1 {
        max-width: 484px;
        margin: 0 auto;
    }

    .item-view-7.desktop-2 {
        max-width: 968px;
        margin: 0 auto;
    }

    @media (max-width:63.99em) {
        .item-view-7.carousel .carousel-item {
            padding: 0 40px;
        }
    }

    .item-view-7 .item-image {
        margin-bottom: 15px;
    }

        .item-view-7 .item-image > span {
            display: block;
            margin: 0 auto;
            width: 176px;
            height: 130px;
            background-size: cover;
            background-position: 50% 50%;
            background-repeat: no-repeat;
        }

    .item-view-7 .item-content {
        font-size: 17px;
    }

    @media (min-width:48em) {
        .item-view-7 .carousel-item > div {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
        }

            .item-view-7 .carousel-item > div .item-image {
                -ms-flex-negative: 0;
                flex-shrink: 0;
                padding-right: 25px;
            }

            .item-view-7 .carousel-item > div .item-content {
                -webkit-box-flex: 1;
                -ms-flex-positive: 1;
                flex-grow: 1;
            }
    }

    @media (min-width:48em) and (max-width:63.99em) {
        .item-view-7 .carousel-item > div .item-image {
            padding-right: 15px;
        }

            .item-view-7 .carousel-item > div .item-image > span {
                width: 136px;
                height: 100px;
            }
    }

    @media (min-width:64em) {
        .carousel.item-view-7 .carousel-item {
            padding: 0 20px;
        }
    }

    @media (min-width:75em) and (max-width:85.37em) {
        .carousel.item-view-7 .carousel-item {
            padding: 0 10px;
        }

        .item-view-7 .carousel-item > div .item-image {
            padding-right: 10px;
        }

        .item-view-7 .item-image > span {
            width: 120px;
            height: 90px;
        }
    }


    /* ==========================================================================
   COMMON MODULES
========================================================================== */
    /*** for general use */
    main {
        outline: none;
    }

    @media (min-width: 1460px) {
        .row-expand {
            margin: 0 -10px;
        }
    }

    @media (max-width:47.99em) {
        .row-expand-mobile {
            margin: 0 -10px;
        }
    }

    .section {
        padding: 30px 0 40px 0;
        clear: both;
    }

        .section.no-padding {
            padding: 0
        }

        .section.no-padding-bottom {
            padding-bottom: 0
        }

        .section.no-padding-top {
            padding-top: 0
        }

    #additonal-locations.section:not(.theme-3) {
        padding-bottom: 0;
    }

    .horizontal-padding.accordion-container {
        padding: 0 20px 40px;
    }

        .horizontal-padding.accordion-container:last-child {
            padding-bottom: 0px;
        }

    @media (min-width:64em) {
        .tabs-container.content-box .simple-tabs {
            max-width: 1480px;
            margin: 0 auto;
        }

        .section {
            padding: 60px 0 70px 0
        }

        .horizontal-padding {
            padding: 0 65px;
        }

    .main-grid.grid-9 .horizontal-padding {
        padding: 0 65px 0 0;
    }
    .main-grid.grid-12 .horizontal-padding {
        padding: 0;
    }

        .section .grid-12 .horizontal-padding {
            padding: 0 65px;
        }

        .horizontal-padding.accordion-container {
            padding-bottom: 60px;
            max-width: 1480px;
            margin: 0 auto;
        }

            .horizontal-padding.accordion-container:last-child {
                padding-bottom: 0px;
            }

        .search-results-top-filter .horizontal-padding {
            padding: 0 65px;
        }

        .horizontal-padding .carousel-container {
            padding: 0;
        }

        .content-max-width-1 .horizontal-padding {
            max-width: 1160px;
            margin: 0 auto;
        }
    }

    @media (max-width:63.99em) {
        .mobile-full-width {
            margin-left: -10px;
            margin-right: -10px
        }
    }

    .content-box {
        font-size: 17px;
        line-height: 1.5em;
        color: #282828;
    }

    .grow {
        -webkit-box-flex: 1;
        -ms-flex-positive: 1;
        flex-grow: 1;
        -ms-flex: 1;
        display: block;
    }

    .footer-flex .grow {
        -ms-flex: 1 0 auto;
    }

    .fixed {
        -ms-flex-negative: 0;
        flex-shrink: 0;
        display: block;
    }

    @media (min-width:64em) {
        .mobile-only {
            display: none;
        }
    }

    @media (max-width:30em) {
        .sm-hide {
            display: none;
        }
    }

    .content-box p:last-child {
        margin-bottom: 0;
    }

    .title-align-left .section-title {
        text-align: left;
    }

    .title-align-right .section-title {
        text-align: right;
    }

    .title-align-center .section-title {
        text-align: center;
    }

    ul.column-list-2 {
        list-style: none;
        padding: 0;
        margin: 0 0 1em 0;
        -webkit-column-count: 2;
        -moz-column-count: 2;
        column-count: 2;
        -webkit-column-width: 150px;
        -moz-column-width: 150px;
        column-width: 150px;
    }

        ul.column-list-2 li {
            margin-bottom: 0.5em;
            overflow: hidden;
            -webkit-column-break-inside: avoid; /* Chrome, Safari, Opera */
            page-break-inside: avoid; /* Firefox */
            break-inside: avoid; /* IE 10+ */
            break-inside: avoid-column;
        }

    .center-image img {
        display: block;
        margin: 0 auto;
    }

    [class*="box-fixed-width-"] {
        max-width: 100%;
        margin: 0 auto;
    }

    .box-fixed-width-1 {
        width: 285px;
    }

    .padding-right-1 {
        padding-right: 15px;
    }

    .anchor {
        padding-top: 150px;
        margin-top: -150px;
    }

    .alter-content-mob-desktop {
        width: 1310px;
        max-width: 100%;
        margin: 0 auto;
    }

        .alter-content-mob-desktop .mobile-hide,
        .rail-summary .mobile-hide {
            display: none;
        }

    @media (min-width:48em) {
        .alter-content-mob-desktop .mobile-hide,
        .rail-summary .mobile-hide {
            display: block;
        }

        .alter-content-mob-desktop .desktop-hide,
        .rail-summary .desktop-hide {
            display: none;
        }
    }

    /* Right Rail */
    @media (max-width:63.99em) {
        .right-rail .rail-top-content,
        .right-rail .rail-bottom-content {
            display: none;
        }

        .mobile-rail-top .rail-navigation a.title:hover,
        .mobile-rail-top .rail-navigation a.title:focus {
            text-decoration: none;
        }
    }

    @media (min-width:64em) {
        .mobile-rail-top,
        .mobile-rail-bottom {
            display: none;
        }
    }

    /*
@media (min-width:64em) {
    .right-rail {
        padding-top: 60px;
        padding-left: 0px;
		position:relative;
		z-index: 10;
    }
}
*/

    @media (min-width:64em) {
        .right-rail {
            padding-top: 0px;
            padding-left: 32px;
            margin-top: -157px;
            margin-right: 0px;
            z-index: 1;
            position: relative;
        }

        .right-rail.cta-without-top-content {
            margin-top: 0;
        }

            .right-rail .panel {
                padding-top: 220px;
            }
    }

    .right-rail .rail-top-btn {
        margin-bottom: 30px;
    }

    .rail-top-btn .title {
        font-size: 18px;
        text-align: center;
        margin: 0;
        height: 63px;
        display: table;
        width: 100%;
    }

        .rail-top-btn .title > span {
            display: table-cell;
            vertical-align: middle;
            padding: 0 20px;
        }

            .rail-top-btn .title > span .btn {
                width: 100%;
            }

    .rail-top-btn .theme-2.title > span .btn {
    }

    @media (min-width:80em) {
        .rail-top-btn .title {
            height: 73px;
        }
    }



    /* Responsive video */
    .videoWrapper {
        position: relative;
        padding-bottom: 56.25%; /* 16:9 */
        height: 0;
    }

        .videoWrapper iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100% !important;
            height: 100% !important;
        }

    /* Video Details page - ORG site 2019 */
    .video-details-box {
        width: 700px;
        max-width: 100%;
        margin: 0 auto;
    }

        .video-details-box iframe {
            border: 0;
        }


    .video-details-box-doctors {
        max-width: 80%;
        margin-bottom: 40px;
    }
    
    @media (max-width:64em) {
        .video-details-box-doctors {
            max-width: 100%;
            margin-bottom: 20px;
        }
    }

    .video-details-box-doctors iframe {
        border: 0;
    }

    .video-details-meta{
        margin-top: 50px
    }

    .video-details-meta h1 {
        margin: 15px 0;
        font-weight: bold;
        font-size: 2em;
    }

    .video-details-meta div{
        font-size: 1em;
        font-weight: 400;
        color: #000000;
    }

    .return-library-link {
        margin-bottom: 50px;
    }

    .return-library-link a {
        font-weight: 700;
        position: relative;
        padding-left: 15px;
    }
    
    .return-library-link a:before {
        content: "";
        position: absolute;
        border: 2px solid #003f72;
        top: 54%;
        width: 8px;
        height: 8px;
        left: 0;
        transform: translate(-50%,-50%) rotate(45deg);
        border-top: 0;
        border-right: 0;
    }

    /* Hero Banners */
    .main-banner-container {
        position: relative;
    }

        .main-banner-container .banner-bottom-box {
            z-index: 10;
        }

        @media (min-width:64em) {
            .main-banner-container .banner-bottom-box {
                position: absolute;
                right: 1%;
                bottom: -100px;
            }
        }

        @media (min-width:80em) {
            .main-banner-container .banner-bottom-box {
                right: 5%;
            }
        }

    .main-banner,
    .main-banner-background {
        position: relative;
        background-size: cover;
        background-repeat: no-repeat;
        background-position: 50% 0;
    }

        .main-banner.background-align-left,
        .main-banner-background.background-align-left{
            background-position: 0 0;
        }

        .main-banner.background-align-right,
        .main-banner-background.background-align-right{
            background-position: 100% 0;
        }

        .main-banner.overlay-1:before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            display: block;
            /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#000000+0,000000+100&0+0,0+50,0.75+100 */
            background: -moz-linear-gradient(top, rgba(0,0,0,0) 0%, rgba(0,0,0,0) 50%, rgba(0,0,0,0.75) 100%); /* FF3.6-15 */
            background: -webkit-linear-gradient(top, rgba(0,0,0,0) 0%,rgba(0,0,0,0) 50%,rgba(0,0,0,0.75) 100%); /* Chrome10-25,Safari5.1-6 */
            background: linear-gradient(to bottom, rgba(0,0,0,0) 0%,rgba(0,0,0,0) 50%,rgba(0,0,0,0.75) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
        }

        .main-banner.overlay-2:before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            display: block;
            /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#000000+0,000000+100&0.45+0,0.2+25,0+50,0+75,0+100 */
            background: -moz-linear-gradient(45deg, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.2) 25%, rgba(0,0,0,0) 50%, rgba(0,0,0,0) 75%, rgba(0,0,0,0) 100%); /* FF3.6-15 */
            background: -webkit-linear-gradient(45deg, rgba(0,0,0,0.45) 0%,rgba(0,0,0,0.2) 25%,rgba(0,0,0,0) 50%,rgba(0,0,0,0) 75%,rgba(0,0,0,0) 100%); /* Chrome10-25,Safari5.1-6 */
            background: linear-gradient(45deg, rgba(0,0,0,0.45) 0%,rgba(0,0,0,0.2) 25%,rgba(0,0,0,0) 50%,rgba(0,0,0,0) 75%,rgba(0,0,0,0) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
            filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#73000000', endColorstr='#00000000',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
        }

    .site-theme-2 .main-banner.overlay-2:before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        display: block;
        /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#000000+0,000000+100&0+0,0+25,0+50,0.1+75,0.23+100 */
        background: -moz-linear-gradient(top, rgba(0,0,0,0) 0%, rgba(0,0,0,0) 25%, rgba(0,0,0,0) 50%, rgba(0,0,0,0.1) 75%, rgba(0,0,0,0.23) 100%); /* FF3.6-15 */
        background: -webkit-linear-gradient(top, rgba(0,0,0,0) 0%,rgba(0,0,0,0) 25%,rgba(0,0,0,0) 50%,rgba(0,0,0,0.1) 75%,rgba(0,0,0,0.23) 100%); /* Chrome10-25,Safari5.1-6 */
        background: linear-gradient(to bottom, rgba(0,0,0,0) 0%,rgba(0,0,0,0) 25%,rgba(0,0,0,0) 50%,rgba(0,0,0,0.1) 75%,rgba(0,0,0,0.23) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
        filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#3b000000',GradientType=0 ); /* IE6-9 */
    }

    .main-banner-background.overlay-1::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0%;
        width: 100%;
        height: 100%;
        display: block;
        /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#000000+0,000000+100&0.32+0,0.16+24,0.08+49,0+75,0+100 */
        background: -moz-linear-gradient(45deg, rgba(0,0,0,0.32) 0%, rgba(0,0,0,0.16) 24%, rgba(0,0,0,0.08) 49%, rgba(0,0,0,0) 75%, rgba(0,0,0,0) 100%); /* FF3.6-15 */
        background: -webkit-linear-gradient(45deg, rgba(0,0,0,0.32) 0%,rgba(0,0,0,0.16) 24%,rgba(0,0,0,0.08) 49%,rgba(0,0,0,0) 75%,rgba(0,0,0,0) 100%); /* Chrome10-25,Safari5.1-6 */
        background: linear-gradient(45deg, rgba(0,0,0,0.32) 0%,rgba(0,0,0,0.16) 24%,rgba(0,0,0,0.08) 49%,rgba(0,0,0,0) 75%,rgba(0,0,0,0) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
        filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#52000000', endColorstr='#00000000',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
    }

    @media (max-width:47.99em) {
        .main-banner-background.overlay-1::before {
            display: none;
        }

        .main-banner .ds-summary-item .ds-stars-item {
            display: block;
        }

        .ds-stars-rating-average {
            border: 0;
            clip: rect(0 0 0 0);
            height: 1px;
            margin: -1px;
            overflow: hidden;
            padding: 0;
            position: absolute;
            width: 1px
        }
    }

    .main-banner.size-1 {
        min-height: 135px;
    }

    .main-banner.size-2 {
        min-height: 128px;
    }

    .main-banner.size-3 {
        min-height: 180px;
    }

    .main-banner-text {
        position: absolute;
        left: 5%;
        text-shadow: 0px 0px 20px rgba(114,114,114,.5);
    }

    .general-hero-banner .main-banner-text {
    bottom: 30px;
    }

    @media (min-width: 64em) {
        .size-1 .main-banner-text {
            bottom: 20px;
        }
    }

    @media (min-width: 80em) {
        .size-1 .main-banner-text {
            bottom: 45px;
        }

        .site-theme-2 .size-1 .main-banner-text {
            bottom: 85px;
        }
    }

    .main-banner-with-box-content {
        position: relative;
    }

    .content-theme-9 .main-banner-box {
        background: #044376;
        color: #fff;
        padding: 40px 48px;
    }

        .content-theme-9 .main-banner-box .title-size-4 {
            color: #fff;
        }

    .main-banner-with-box-content .main-banner-logo {
        position: absolute;
        left: 15px;
        top: 42px;
        width: 115px;
    }

    .content-box-align-right.main-banner-with-box-content .main-banner-logo {
        left: auto;
        right: 15px;
    }

    @media (min-width:64em) {
        .main-banner-with-box-content .main-banner-logo {
            position: absolute;
            left: 385px;
            top: 95px;
            width: auto;
        }

        .content-box-align-right.main-banner-with-box-content .main-banner-logo {
            left: auto;
            right: 385px;
        }

        .main-banner-box-container {
            position: absolute;
            left: 10px;
            top: 95px;
            width: 100%;
        }

        .main-banner-with-box-content .main-banner-box {
            width: 316px;
        }

        .content-box-align-right.main-banner-with-box-content .main-banner-box {
            float: right;
        }
    }

    @media (min-width: 64em) and (max-width: 80em) {
        .main-banner-with-box-content .main-banner-logo {
            left: 350px;
            top: 60px;
            width: 116px;
        }

        .content-box-align-right.main-banner-with-box-content .main-banner-logo {
            left: auto;
            right: 350px;
        }

        .main-banner-box-container {
            top: 60px;
        }
    }

    .mobile-hide-text .main-banner-text {
        display: none;
    }

    .main-banner-text {
        color: #fff;
        width: 90%;
    }

    @media (min-width: 64em) {
        .main-banner-text {
            width: 72%;
        }

        .doctors-custom-banner .main-banner-text {
            width: 90%;
        }
    }

    .main-banner-text h1 {
        font-size: 65px;
        font-weight: 800;
        color: #fff;
        margin-bottom: 0;
    }

        .main-banner-text h1 span {
            font-size: 40px;
            font-weight: 700;
            display: block;
        }

    @media (min-width:85em) and (max-width:99.99em) {
        .site-theme-2 .main-banner-text h1.resized {
            font-size: 62px;
        }
        .site-theme-2 .main-banner-text h1.resized-1 {
            font-size: 55px;
        }
    }

    @media (min-width:100em) {
        .site-theme-2 .main-banner-text h1 {
            font-size: 80px;
        }

            .site-theme-2 .main-banner-text h1 span {
                line-height: 1.3em;
            }

            .site-theme-2 .main-banner-text h1.resized {
                font-size: 70px;
            }
            .site-theme-2 .main-banner-text h1.resized-1 {
                font-size: 60px;
            }
    }

    @media (max-width:84.99em) {
        .main-banner-text h1 {
            font-size: 44px;
        }

            .main-banner-text h1 span {
                font-size: 30px;
            }
    }

    @media (max-width:47.99em) {
        .main-banner-text h1 {
            font-size: 35px;
        }

            .main-banner-text h1 span {
                font-size: 26px;
            }
    }

    @media (max-width:29.99em) {
        .main-banner-text h1 {
            font-size: 24px;
        }

            .main-banner-text h1 span {
                font-size: 18px;
            }
    }

    @media (min-width:30em) {
        .main-banner.size-1 {
            min-height: 200px;
        }

        .main-banner.size-2 {
            min-height: 200px;
        }

        .main-banner.size-3 {
            min-height: 200px;
        }
    }

    @media (min-width:40em) {
        .main-banner.size-1 {
            min-height: 300px;
        }

        .main-banner.size-3 {
            min-height: 300px;
        }
    }

    @media (min-width:48em) {
        .mobile-hide-text .main-banner-text {
            display: block;
        }

        .main-banner.size-1 {
            min-height: 400px;
        }

        .main-banner.size-3 {
            min-height: 350px;
        }
    }

    @media (min-width:64em) {
        .main-banner-container {
            padding-left: 65px;
        }

            .main-banner-container:before {
                content: "";
                position: absolute;
                left: 0;
                top: 20%;
                width: 65px;
                height: 80%;
                background: #ebebeb;
            }

        .main-banner.size-1 {
            min-height: 470px;
        }

        .main-banner.size-2 {
            min-height: 250px;
        }

        .main-banner.size-3 {
            min-height: 400px;
        }
    }

    @media (min-width:85em ) {
        .main-banner.size-1 {
            min-height: 559px;
        }

        .main-banner.size-2 {
            min-height: 298px;
        }

        .main-banner.size-3 {
            min-height: 515px;
        }
    }

    .main-banner-text.has-extra-image {
        height: 100%;
    }

    .main-banner-text .flex-item {
        display: table;
        height: 100%;
    }

        .main-banner-text .flex-item h1 {
            margin: 0 0 5px 0;
        }

        .main-banner-text .flex-item > div {
            display: table-cell;
        }

            .main-banner-text .flex-item > div.fixed {
                vertical-align: middle;
            }

            .main-banner-text .flex-item > div.grow {
                vertical-align: middle;
            }

    .main-banner-text .l-item-img {
        border-radius: 50%;
        width: 70px;
    }

    .main-banner-text .image-holder {
        display: block;
        width: 70px;
        height: 70px;
        background-repeat: no-repeat;
        background-size: cover;
        background-position: 50% 0;
        overflow: hidden;
        border-radius: 50%;
        margin-right: 15px;
    }

    .main-banner-text .rating,
    .main-banner-text .accepting {
        font-size: 15px;
    }

    .main-banner-text .accepting{
        margin-bottom: 0px;
    }

    @media (min-width:35em) {
        .main-banner-text .image-holder {
            width: 120px;
            height: 120px;
        }
        .main-banner-text .accepting {
            margin-bottom: 30px;
        }
    }

    @media (min-width:48em) {
        .main-banner-text .l-item-img {
            width: 180px;
        }

        .main-banner-text .image-holder {
            width: 180px;
            height: 180px;
        }

        .main-banner-text .rating,
        .main-banner-text .accepting {
            font-size: 19px;
        }
      
    }

    @media (min-width:80em) {
        .main-banner-text .image-holder {
            margin-right: 40px;
        }

        .main-banner-text .flex-item > div.grow {
            padding-top: 20px;
        }
    }

    .main-banner-bottom .main-banner-links {
        list-style: none;
        margin: 0;
        padding: 0;
        font-weight: 700;
        font-size: 18px;
    }

        .main-banner-bottom .main-banner-links svg.icon {
            width: 1.7em;
            height: 1.7em;
        }

    .main-banner-links li a {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        text-decoration: none;
    }

        .main-banner-links li a:hover,
        .main-banner-links li a:focus {
            text-decoration: none;
            color: #ed1990;
        }

    .site-theme-2 .main-banner-links li a:hover,
    .site-theme-2 .main-banner-links li a:focus {
        text-decoration: underline;
        color: #003f72;    
    }

    .main-banner-links li a > span {
        align-self: center;
    }

        .main-banner-links li a > span.grow {
            align-self: center;
            -ms-flex: 1 0 auto;
        }

        .main-banner-links li a > span.fixed {
            align-self: center;
            padding: 0 15px 0 25px;
        }

    @media (max-width:63.99em) {
        .main-banner-links li a {
            border-bottom: 1px solid #d3d3d3;
            padding: 6px;
        }

        .main-banner-bottom .main-banner-links svg.icon {
            width: 1.5em;
            height: 1.5em;
        }

        .main-banner-bottom .main-banner-links,
        .bar {
            position: relative;
            margin-bottom: 20px;
            min-height: 50px;
        }

        .breadcrumbs {
            padding: 15px 110px 15px 20px;
        }

        .site-theme-1 .breadcrumbs > a,
        .site-theme-1 .breadcrumbs > span {
            display: none;
        }

        .site-theme-2 .breadcrumbs > a:not(.active-breadcrumb-item),
        .site-theme-2 .breadcrumbs > span:not(.bc-devider2) {
            display: none;
        }

            .site-theme-2 .breadcrumbs > a:nth-last-child(3) {
                display: inline-block;
            }

        .main-banner-bottom.has-breadcrumb .pageToolsWrapper > a:first-child {
            display: none;
        }

        .bc-devider2 {
            border: 5px solid transparent;
            border-right: 5px solid currentColor;
            display: inline-block;
            margin: 0 5px;
        }
    }

    @media (max-width:63.99em) {
        .main-banner-bottom.has-breadcrumb .pageToolsWrapper {
            position: absolute;
            right: 0;
            top: 15px;
        }
    }

    @media (max-width:47.99em) {
        .main-banner-bottom.has-breadcrumb .pageToolsWrapper {
            padding: 0 5px 15px;
        }
    }

    @media (min-width:64em) {
        .main-banner-links li a > span.fixed {
            padding-left: 0;
            padding-right: 5px;
        }

        .main-banner-bottom-container {
            position: relative;
        }

        .main-banner-container + .main-banner-bottom-container .main-banner-links {
            margin-left: 65px;
        }

        .main-banner-bottom {
            display: table;
            height: 70px;
            width: 66.66%;
        }

            .main-banner-bottom.has-breadcrumb.full-width-bar {
                width: 100%;
            }

            .main-banner-bottom .bar {
                display: table;
                height: 100%;
                width: 100%;
            }

        .no-flexboxlegacy.no-borderimage .main-banner-bottom .bar {
            margin-top: 25px;
        }

        .main-banner-bottom .bar > div {
            display: table-cell;
            vertical-align: middle;
        }

            .main-banner-bottom .bar > div.pageToolsWrapper {
                text-align: right;
                width: 338px;
            }

        .main-banner-bottom .main-banner-links {
            font-size: 16px;
            display: table;
            height: 100%;
        }

        .main-banner-links li {
            display: table-cell;
            padding-right: 12px;
            vertical-align: middle;
        }

        .no-flexboxlegacy .main-banner-links li {
            padding-top: 12px;
        }
    }

    @media (min-width:80em) {
        .main-banner-bottom:not(.has-breadcrumb) {
            width: 62%;
        }

        .main-banner-bottom .main-banner-links {
            font-size: 18px;
        }

        .main-banner-links li {
            padding-right: 35px;
        }

        .site-theme-2 .main-banner-links li {
            padding-right: 20px;
        }
    }

    @media (min-width:92em) {
        .main-banner-links li {
            padding-right: 55px;
        }

        .site-theme-2 .main-banner-links li {
            padding-right: 30px;
        }
    }


    /* Rail Banners */
    .rail-banner {
        position: relative;
        padding-top: 100px;
        padding-right: 100px;
        background-size: cover;
        background-repeat: no-repeat;
        background-position: 100% 0;
        max-width: 340px;
        margin: 0 auto 20px;
    }

        .rail-banner .rail-content-wrap {
            display: table;
            height: 215px;
        }

        .rail-banner .content {
            display: table-cell;
            vertical-align: middle;
            padding: 5px 30px;
        }

            .rail-banner .content .title {
                margin-bottom: 10px;
            }

        .rail-banner .theme-2 {
            color: #fff;
        }

            .rail-banner .theme-2 .title {
                color: #fff;
            }

            .rail-banner .theme-2 .btn {
                color: #ed1990;
                background: #fff;
                border-color: #fff;
            }

        .rail-banner p:last-child {
            margin: 0;
        }

    @media (min-width:64em) and (max-width:80em) {
        .rail-banner {
            padding-right: 40px;
        }

            .rail-banner .btn.btn-has-icon {
                font-size: 15px;
                padding-right: 35px;
                padding-left: 12px;
            }
    }

    @media (min-width:64em) and (max-width:90em) {
        .rail-banner .content {
            padding: 5px 15px;
            font-size: 15px
        }

            .rail-banner .content .title {
                margin-bottom: 5px;
                font-size: 18px;
            }
    }

    @media (max-width:30em) {
        .rail-banner .content {
            padding: 5px 15px;
            font-size: 15px
        }

            .rail-banner .content .title {
                margin-bottom: 5px;
                font-size: 18px;
            }

        .rail-banner .btn.btn-has-icon {
            font-size: 14px;
            padding-right: 35px;
            padding-left: 12px;
        }
    }

.doctor-video-button {
    display: block;
    text-align: center;
    margin-top: -26px;
}

    .doctor-video-button > span {
        padding: 3px 27px 3px 4px;
        background: #fff;
        border-radius: 5px;
        text-transform: uppercase;
        font-weight: 100;
        font-size: 13px;
        border: 1px solid #003f72;
        display: inline-block;
        overflow: hidden;
        position: relative;
    }

        .doctor-video-button > span:before {
            position: absolute;
            top: 0;
            right: 0;
            content: "";
            display: block;
            width: 20px;
            height: 100%;
            background: #003f72;
        }

        .doctor-video-button > span:after {
            position: absolute;
            top: 8px;
            right: 0;
            content: "";
            display: block;
            width: 0;
            height: 0;
            border-top: 4px solid transparent;
            border-bottom: 4px solid transparent;
            border-right: 7px solid transparent;
            border-left: 7px solid #fff;
        }

    .flex-search {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }

    .flex-search-input {
        -webkit-box-flex: 1;
        -ms-flex-positive: 1;
        flex-grow: 1;
        -ms-flex: 1;
    }

    .footer-flex .flex-search-input {
        -ms-flex: 1 0 auto;
    }

    .flex-search-btn {
        -ms-flex-negative: 0;
        flex-shrink: 0;
        padding-left: 8px;
    }

    @media (max-width:63.99em) {
        .flex-search-btn {
            margin: 0 auto;
        }
    }

    @media (max-width:63.99em) {
        .flex-mobile {
            display: inline-flex;
            margin-bottom: 10px;
        }

            .flex-mobile .grow {
                align-self: center;
            }

            .flex-mobile .fixed {
                align-self: center;
                padding-right: 8px;
            }
    }

    /* Callouts */
    .callouts {
        padding-inline: 1em;
        zoom: 1;
    }

        .callouts ul a {
            text-decoration: none;
        }
        .callouts ul a:hover {
            text-decoration: underline;
        }

        .callouts:before,
        .callouts:after {
            content: "";
            display: table;
        }

        .callouts:after {
            clear: both;
        }

        .callouts > div {
            margin-bottom: 30px;
        }

    .site-theme-2 .callouts .title a {
        color: #282828;
    }

        .site-theme-2 .callouts .title a:hover,
        .site-theme-2 .callouts .title a:focus {
            color: #282828;
            text-decoration:underline;
        }

    /* Reset padding from grid.css */
    [class*="grid-"] .grid-item {
        padding: initial;
    }

    @media (min-width:48em) {
        .callouts > div {
            margin-bottom: 0px;
        }

        .grid-9.main-grid .callouts > .grid-4 {
            width: 50% !important;
            margin-bottom: 30px;
        }

            .grid-9.main-grid .callouts > .grid-4:nth-child(3) {
                clear: left;
                margin-bottom: 0px;
            }

        .flex-item {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
        }

            .flex-item.inline-flex {
                display: inline-flex;
            }

        .callouts .flex-item .fixed {
            padding-right: 15px;
        }

        .callouts .title {
            margin-top: .7em;
        }

        .callouts .flex-item p:last-child {
            margin: 0;
        }

        .flex-item.three-per-row {
            flex-wrap: wrap;
        }

        .flex-item.one-per-row > div {
            width: 100%;
        }

        .flex-item.two-per-row {
            flex-wrap: wrap;
        }

            .flex-item.two-per-row > div {
                width: 50%;
                margin: 0 auto;
            }

        .flex-item.three-per-row > div {
            width: 33.33%;
        }

        .flex-item.four-per-row {
            flex-wrap: wrap;
        }

            .flex-item.four-per-row > div {
                width: 25%;
            }

        .flex-item.five-per-row {
            flex-wrap: wrap;
        }

        .flex-item.five-per-row > div {
            width: 20%;
        }

        .grid-item {
            display: grid;
        }

    /* Different alignment when less than 3 items in list */
    .align-for-one-item > div:first-child {
        margin-left: 33.33%;
    }
    .align-for-two-item > div:first-child {
        margin-left: 17%;
    }
}

    @media (min-width:64em) {
        .callouts {
            padding: 0;
        }

            .callouts .title, .callouts .title-size-3 {
                font-size: 25px;
            }

        .flex-item.two-per-row.mixed-size-1 > div:first-child {
            width: 75%;
        }

        .flex-item.two-per-row.mixed-size-1 > div:last-child {
            width: 25%;
        }
    }

    @media (min-width:48em) and (max-width:63.99em) {
        .callouts .flex-item {
            display: block;
        }

            .callouts .flex-item .fixed {
                padding-right: 15px;
            }
    }

    .mob-flex {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }

        .mob-flex.inline-flex {
            display: inline-flex;
        }

    .no-flexboxlegacy .mob-flex.inline-flex {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }

    /* Carousel with video */
    .carousel-flex-item .media {
        text-align: center;
    }

        .carousel-flex-item .media .video {
            position: relative;
            display: inline-block;
            width: 100%;
        }

            .carousel-flex-item .media .video img {
                display: inline-block;
            }

            .carousel-flex-item .media .video .play-video {
                position: absolute;
                top: 50%;
                left: 50%;
                display: block;
                width: 68px;
                height: 48px;
                margin: -24px 0 0 -34px;
                border-radius: 8px;
                background: rgba(0,0,0,.6);
            }

                .carousel-flex-item .media .video .play-video:after {
                    content: "";
                    position: absolute;
                    border: 10px solid transparent;
                    border-left: 18px solid #fff;
                    margin: 15px -5px;
                }

    .carousel-flex-item .content {
        padding: 45px;
    }

        .carousel-flex-item .content .title {
            margin-bottom: .7em;
        }

    @media (min-width:48em) {
        .carousel-flex-item {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
        }

            .carousel-flex-item .media {
                width: 62%;
                align-self: center;
            }

            .carousel-flex-item .content {
                width: 38%;
                align-self: center;
                padding: 15px 25px;
                line-height: 1.4em;
                font-size: 16px;
            }

                .carousel-flex-item .content .title {
                    margin-bottom: .5em;
                    font-size: 22px;
                }

        .item-view-6 .carousel-flex-item .media {
            width: 50%;
        }

        .item-view-6 .carousel-flex-item .content {
            width: 50%;
        }
    }

    @media (min-width:75em) {
        .carousel-videos {
            width: 872px;
            margin-left: auto;
            margin-right: auto;
        }

        .carousel-flex-item .content {
            padding: 15px 30px;
            line-height: 1.5em;
            font-size: 17px;
        }
    }

    @media (min-width:80em) {
        .carousel-videos {
            width: 1060px;
        }

        .carousel-flex-item .media {
            width: 56%;
        }

        .carousel-flex-item .content {
            width: 44%;
        }
    }

    @media (min-width:90em) {
        .carousel-videos {
            width: 1200px;
        }
    }

    @media (min-width:100em) {
        .carousel-videos {
            width: 1350px;
        }

        .carousel-flex-item .content {
            padding: 25px 45px 15px;
        }

            .carousel-flex-item .content .title {
                margin-bottom: .7em;
                font-size: 26px;
            }
    }

    /* Item List */
    .list-items {
        margin-bottom: 40px;
    }

        .list-items > h3 {
            margin-bottom: 0px;
            margin-top: 2em;
        }

    .l-item {
        padding: 1.5em 1em;
        border-bottom: 1px solid #d0d0d0
    }

    .hideBorder.l-item {
        padding-bottom: 0 !important;
        border-bottom: 0;
    }

    .tabs-container .l-item-theme-1 {
        padding: 3em 1em 1.6em;
    }

    .l-item.l-item-theme-2 {
        padding: 2.5em 0;
    }

    .hideBorder .l-item.l-item-theme-2 {
        padding: 1.5em 0;
    }

    .l-item-flex {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }

    #locations-results .l-item {
        padding-bottom: 1.5em;
    }

        #locations-results .l-item .title {
            margin-bottom: .7em;
        }

#locations-results .l-item-split > div:first-child .l-item-flex > .grow,
#doctors-results .l-item-split > div:last-child .l-item-flex > .grow,
#events-classes-results .l-item-split > div:last-child .l-item-flex > .grow {
    padding-right: 10px;
}

#locations-results .l-item-split > div:first-child .l-item-flex > .fixed,
#doctors-results .l-item-split > div:last-child .l-item-flex > .fixed,
#events-classes-results .l-item-split > div:last-child .l-item-flex > .fixed {
    padding-top: 10px;
}

    .l-item-split > div:first-child {
        border-bottom: 1px solid #eee;
        margin-bottom: 1em;
        padding-bottom: 1em;
    }

    .l-item .title {
        font-size: 18px;
    }

    .l-item.l-item-theme-1 .title {
        margin-bottom: .2em;
    }

    .l-item p {
        margin-bottom: .2em;
    }

    .l-item.l-item-theme-2 h3 {
        margin-bottom: .4em;
    }

    .l-item.l-item-theme-2 p {
        margin-bottom: 1em;
    }

    .l-item-img {
        margin: 0 auto 1em;
        display: block;
    }

    #locations-results .l-item-img {
        width: 240px;
    }

    #locations-results .l-item-split .expandable-hidden .grow {
        padding-left: 33px;
    }

    #locations-results .title-with-icon .icon {
        width: 1.2em;
        height: 1.2em;
    }

    .l-item-theme-1 .l-item-img {
        width: 180px;
        border-radius: 50%;
    }

    .l-item-theme-1 .image-holder {
        display: block;
        width: 188px;
        height: 188px;
        background-repeat: no-repeat;
        background-size: cover;
        background-position: 50% 0;
        border-radius: 50%;
        margin: 0 auto 25px auto;
    }

    #locations-results .image-holder {
        display: block;
        width: 240px;
        height: 140px;
        background-repeat: no-repeat;
        background-size: cover;
        background-position: 50% 0;
        margin: 0 auto 25px auto;
    }

    .l-item-theme-2 .l-item-img {
        max-width: 100%;
        display: block;
        background-size: cover;
        background-position: 50%;
    }

    @media (min-width:48em) {
        .l-item {
            padding-right: 0;
        }

            .l-item > .fixed {
                align-self: center;
            }

            .l-item.vertical-align-top > .fixed {
                align-self: flex-start;
            }

        .tabs-container .l-item-theme-1.l-item > .fixed,
        .tabs-container #locations-results .l-item > .fixed {
            align-self: flex-start;
        }

        .hideBorder .l-item.l-item-theme-2 {
            padding: .5em 0;
        }

        .l-item .title {
            padding-left: 25px;
            font-size: 19px;
        }

        .l-item.l-item-theme-1 .title {
            padding-left: 0;
        }

        .l-item,
        .l-item-split {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
        }

        .l-item-img {
            margin: 0 15px 0 0;
        }

        .l-item-theme-1 .l-item-img {
            width: 160px;
            margin-top: -25px;
        }

        .l-item-theme-1 .image-holder {
            width: 160px;
            height: 160px;
            margin-top: -26px;
        }

        .tabs-container .l-item-theme-1 .image-holder,
        .tabs-container #locations-results .image-holder {
            margin-bottom: 0;
        }

        .l-item-theme-2 .fixed {
            max-width: 60%;
            padding-right: 45px;
        }

        .l-item-theme-2 .l-item-img {
            margin: 0;
            max-width: 100%;
        }

        .l-item-split > div {
            padding: 0 25px;
            width: 50%;
            position: relative;
        }

            .l-item-split > div:first-child {
                border: 0;
                margin: 0;
                padding-bottom: 0;
            }

                .l-item-split > div:first-child:after {
                    content: "";
                    display: block;
                    width: 1px;
                    height: 80%;
                    position: absolute;
                    top: 0;
                    right: 0;
                    background: #eee;
                }
    }

    @media (min-width:80em) {

        .l-item-theme-1 .l-item-img {
            width: 180px;
        }

        .l-item-theme-1 .image-holder {
            width: 180px;
            height: 180px;
        }

        .l-item-theme-2 .fixed {
            padding-right: 60px;
        }

        .l-item-theme-2 .l-item-img {
            margin: 0;
        }

        .l-item-theme-1 .l-item-split > div:first-child {
            padding-right: 60px;
            padding-left: 40px;
        }

        .l-item-theme-1 .l-item-split > div:last-child {
            padding-left: 75px;
        }
    }

    @media (min-width:85em) {
        .l-item {
            padding: 2em 3em 1em 4em;
        }

        .tabs-container .l-item-theme-1 {
            padding: 3em 3em 1.6em 4em;
        }

        .l-item.l-item-theme-2 {
            padding: 3.5em 0;
        }

        .hideBorder .l-item.l-item-theme-2 {
            padding: .5em 0;
        }
    }

    .title-with-icon {
        padding-left: 33px;
        position: relative;
    }

        .title-with-icon .icon {
            position: absolute;
            left: 0;
            top: 0;
        }

    @media (max-width:47.99em) {
        .l-item .expandable-trigger {
            cursor: pointer;
            position: relative;
        }

            .l-item .expandable-trigger:before,
            .l-item .expandable-trigger:after {
                content: " ";
                display: inline-block;
                position: absolute;
                top: 50%;
                right: 10px;
                margin: 2px 0 0 5px;
                vertical-align: middle;
                background: #5b5b5b;
                width: 12px;
                height: 2px;
                -wekbit-transition: all 0.4s ease-in-out;
                transition: all 0.4s ease-in-out;
                -webkit-transform: scale(0.98) translateY(-50%);
                -ms-transform: scale(0.98) translateY(-50%);
                transform: scale(0.98) translateY(-50%);
            }

            .l-item .expandable-trigger:after {
                -webkit-transform: scale(0.98) translateY(-75%) rotate(-90deg);
                -ms-transform: scale(0.98) translateY(-75%) rotate(-90deg);
                transform: scale(0.98) translateY(-75%) rotate(-90deg);
            }

        .l-item .active .expandable-trigger:after {
            -webkit-transform: scale(0.98) translateY(-75%) rotate(-180deg);
            -ms-transform: scale(0.98) translateY(-75%) rotate(-180deg);
            transform: scale(0.98) translateY(-75%) rotate(-180deg);
        }

        .l-item .expandable-hidden {
            height: 0;
            overflow: hidden;
        }

        .l-item .active .expandable-hidden {
            height: auto;
        }
    }

    .go-top {
        float: right;
        margin-top: -2.0em;
        position: relative;
        display: block;
        width: 54px;
        height: 54px;
        padding-top: 20px;
        background: #6aade4;
        font-size: 10px;
        font-weight: 800;
        text-transform: uppercase;
        border-radius: 50%;
        text-align: center;
    }

        .go-top:hover,
        .go-top:focus {
            text-decoration: none;
            opacity: .7;
        }

    .go-top:after {
        content: "";
        position: absolute;
        top: 16px;
        left: 20px;
        width: 14px;
        height: 14px;
        border: 4px solid transparent;
        border-top-color: currentColor;
        border-left-color: currentColor;
        -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        transform: rotate(45deg);
    }

    .list-footer .btn:not([style*="display: none"]) + .go-top {
        margin-top: -1.5em;
    }

    @media (min-width:64em) {
        .go-top {
            position: relative;
            width: 70px;
            height: 70px;
            padding-top: 28px;
            font-size: 13px;
        }

            .go-top:after {
                content: "";
                position: absolute;
                top: 22px;
                left: 26px;
                width: 16px;
                height: 16px;
                border: 5px solid transparent;
                border-top-color: currentColor;
                border-left-color: currentColor;
            }
    }

    .rating {
        line-height: 1em;
        padding: 3px 0;
    }

    /*** Details Pages (Event and Location) ***/
    /* Rail - Summary */
    .rail-summary {
        margin-bottom: 30px;
    }

        .rail-summary.no-margin {
            margin-bottom: 0px;
        }

.rs-heading {
    padding: 18px 20px 17px;
    color: #fff;
    background: #d6006e;
}

    .site-theme-2 .rs-heading,
    .site-theme-2 .theme-2.rs-heading {
        background: #6aade4;
        color: #fff;
    }

    @media (min-width:64em) {
        .rs-heading {
            min-height: 87px;
        }
    }

    .rs-heading p:last-child {
        margin-bottom: 0px;
    }

.site-theme-1 .rs-heading .btn {
    width: 100%;
    color: #d6006e;
    background: #dde4ec;
    border-color: #dde4ec;
}

        .site-theme-1 .rs-heading .btn.register-btn {
            color: #ed1990;
            background: #fff;
            border-color: #fff;
        }

    .site-theme-2 .rs-heading .btn {
        width: 100%;
        color: #fff !important;
        background: #003f72 !important;
    }

    .site-theme-2 .dark-pink .rs-heading .btn {
        border-color: #fff !important;
    }

    .site-theme-2 .rs-heading .btn.btn-transparent,
    .site-theme-2 .rs-heading a.btn.btn-transparent {
        background: none;
        border: 1px solid #6aade4 !important;
    }

    .site-theme-2 .dark-pink .rs-heading .btn.btn-transparent {
        border-color: #fff !important;
        background: none !important;
    }

    .site-theme-2 .rs-heading .btn.register-btn {
        color: #003f72 !important;
        background: #e6eef8 !important;
        border-color: #e6eef8 !important;
    }

    .site-theme-2 .rs-heading .btn-red {
        background-color: #b02c32 !important;
    }

    .rs-content {
        border: 1px solid #d0d0d0;
        border-top: 0;
        background: #fff;
    }

        .rs-content .expandable {
            padding: 20px;
            border-bottom: 1px solid #d0d0d0;
        }

            .rs-content .expandable:last-child {
                border-bottom: 0;
            }

        .rs-content .expandable-trigger {
            position: relative;
            font-weight: 800;
            color: #000;
            padding-right: 20px;
            display: block;
        }

            .rs-content .expandable-trigger:before,
            .rs-content .expandable-trigger:after {
                content: " ";
                display: inline-block;
                position: absolute;
                top: 50%;
                right: 10px;
                margin: 2px 0 0 5px;
                vertical-align: middle;
                background: #88bde9;
                width: 12px;
                height: 2px;
                -wekbit-transition: all 0.4s ease-in-out;
                transition: all 0.4s ease-in-out;
                -webkit-transform: scale(0.98) translateY(-50%);
                -ms-transform: scale(0.98) translateY(-50%);
                transform: scale(0.98) translateY(-50%);
            }

            .rs-content .expandable-trigger:after {
                -webkit-transform: scale(0.98) translateY(-75%) rotate(-90deg);
                -ms-transform: scale(0.98) translateY(-75%) rotate(-90deg);
                transform: scale(0.98) translateY(-75%) rotate(-90deg);
            }

        .rs-content .active .expandable-trigger:after {
            -webkit-transform: scale(0.98) translateY(-75%) rotate(-180deg);
            -ms-transform: scale(0.98) translateY(-75%) rotate(-180deg);
            transform: scale(0.98) translateY(-75%) rotate(-180deg);
        }

        .rs-content .expandable-hidden {
            display: none;
            padding: 10px 8px 0 8px;
        }

        .rs-content .expandable > .flex-item {
            padding: 0 8px;
        }

            .rs-content .expandable > .flex-item .fixed {
                padding-left: 10px;
            }

        .rs-content .expandable-hidden.no-padding {
            padding: 0;
        }

        .rs-content .active .expandable-hidden {
            display: block;
        }

        .rs-content p:last-child {
            margin-bottom: 0px;
        }

        .rs-content .smaller a {
            text-decoration: underline;
        }

            .rs-content .smaller a:hover,
            .rs-content .smaller a:focus {
                text-decoration: none;
            }

        .rs-content .wait-time{
            padding:10px 20px;
            margin-top: 1em;
            align-items: center;
        }

        .wait-time > strong {
            display: block;
            width: 55px;
        }

/* .rs-content .wait-time {
    font-size: 13px;
} */

        .wait-time svg.icon.icon-size-1 {
            margin-right: 5px;
            width: 2em;
            height: 2em;
            display: block;
        }

    .break-word-item {
        word-wrap: break-word;
    }

    /* Event Details - Content */
    .event-date-item {
        padding: 0 0 20px 0;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }

    @media (min-width:48em) {
        .event-date-item {
            padding: 0 20px 50px 0;
        }
    }

    .event-date {
        width: 70px;
        height: 70px;
        margin-right: 25px;
        text-align: center;
        background: #ed1990;
        color: #fff;
        border-radius: 50%;
        display: table;
    }

    .site-theme-2 .event-date {
        background: #003f72;
    }

    .event-date > span {
        display: table-cell;
        vertical-align: middle;
    }

        .event-date > span.multy-day-event > span:first-child {
            font-size: 28px;
            font-weight: 700;
            display: block;
            margin-bottom: 5px;
        }

        .event-date > span:last-child {
            font-size: 13px;
            font-weight: 600;
            text-transform: uppercase;
            line-height: 16px;
        }

    .event-date-item .title {
        margin: 0 0 8px 0;
    }

    .site-theme-2 .event-date-item h6.title {
        color: #282828;
        font-weight: normal;
    }

    .site-theme-2 .event-date-item svg.icon {
        fill: #237AC2;
    }

    /*** Related Carousels ***/
    .slider-nav a.slick-slide:hover,
    .slider-nav a.slick-slide:focus {
        text-decoration: none;
    }

    .slider-nav .slick-slide,
    .slider-for .slick-slide {
        outline: none;
    }

    /* ! Do not remove - Slider splitted content fix when there is no image */
    .slider-for-item .grid-6.push-6 > div,
    .slider-for-item .grid-6.push-6 > div > div,
    .slider-for-item .row-expand-mobile.center-image {
        min-height: 1px;
    }

    .slider-nav .slick-list {
        padding: 0 !important;
    }

    .slider-nav .slick-slide {
        padding: 0px 0px 16px 0px;
    }

    .slider-nav-item {
        position: relative;
        display: block;
        padding: 10px;
        text-align: center;
        font-weight: 700;
        box-sizing: content-box;
    }

    .slick-current .slider-nav-item:before,
    .slick-current .slider-nav-item:after {
        content: "";
        position: absolute;
        top: 100%;
    }

    .site-theme-1 .slick-current .slider-nav-item:before,
    .site-theme-1 .slick-current .slider-nav-item:after {
        background: #ed1990;
    }

    .site-theme-2 .slick-current .slider-nav-item:before,
    .site-theme-2 .slick-current .slider-nav-item:after {
        background: #003f72;
    }

    .slick-current .slider-nav-item:before {
        left: 0;
        height: 10px;
        width: 100%;
    }

    .slick-current .slider-nav-item:after {
        left: 50%;
        margin-top: 4px;
        margin-left: -5px;
        display: block;
        width: 10px;
        height: 10px;
        -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        transform: rotate(45deg);
    }

    @media (max-width:47.99em) {
        .slider-nav {
            z-index: 1;
        }

        .slider-nav-item:before,
        .slider-nav-item:after {
            content: "";
            position: absolute;
            top: 100%;
        }

        .slider-nav-item:before {
            left: 0;
            height: 10px;
            width: 100%;
        }

        .slider-nav-item:after {
            left: 50%;
            margin-top: 4px;
            margin-left: -5px;
            display: block;
            width: 10px;
            height: 10px;
            -webkit-transform: rotate(45deg);
            -ms-transform: rotate(45deg);
            transform: rotate(45deg);
        }

        .site-theme-1 .slider-nav-item:before,
        .site-theme-1 .slider-nav-item:after {
            background: #ed1990;
        }

        .site-theme-2 .slider-nav-item:before,
        .site-theme-2 .slider-nav-item:after {
            background: #003f72;
        }


        .slider-for {
            margin-top: -16px;
            padding-bottom: 45px;
        }

            .slider-for .slick-dots {
                bottom: 5px;
            }
    }

    @media (min-width:48em) {
        .slider-nav {
            position: relative;
        }

            .slider-nav:before {
                content: "";
                position: absolute;
                display: block;
                bottom: 6px;
                left: 0;
                width: 100%;
                height: 1px;
                background: #b7b7b7;
            }

        .related-carousels-alt-view .slider-nav:before {
            display: none;
        }

        .slider-nav {
            margin-bottom: 50px;
        }

        .slider-nav-item {
            border-right: 1px solid #b7b7b7;
        }

        .related-carousels-alt-view .slider-nav-item {
            border-right: 0;
        }

        .slick-slide:last-child .slider-nav-item {
            border-right: 0;
        }

        .related-carousels-alt-view .slider-nav {
            margin: 0px auto;
            max-width: 1440px;
            z-index: 1;
        }

        .related-carousels-alt-view .slider-for {
            margin-top: -6px;
        }
    }

    .related-carousels-alt-view.related-carousels.carousel-container {
        margin-top: 1em;
        margin-bottom: 0;
    }

    @media (max-width:47.99em) {
        .slider-for-item-content {
            padding: 30px 30px 5px;
        }

            .slider-for-item-content .btn {
                margin-left: 50%;
                -webkit-transform: translateX(-50%);
                -ms-transform: translateX(-50%);
                transform: translateX(-50%);
            }
    }

    .slider-for-item-content > .flex-item {
        margin-bottom: 1em;
    }

        .slider-for-item-content > .flex-item > div:first-child {
            -ms-flex-negative: 0;
            flex-shrink: 0;
        }

    /* Related Carousels with View All link */
    @media (max-width:47.99em) {
        .tabs-with-view-all .mobile-hide {
            display: none;
        }

        .tabs-with-view-all .tabs-view-all-link {
            padding: 1em 0 2em;
        }
    }

    @media (min-width:48em) {
        .tabs-with-view-all .desktop-hide {
            display: none;
        }

        .tabs-with-view-all .slider-nav {
            padding-right: 100px;
        }

        .tabs-view-all-link {
            position: absolute;
            right: 0px;
            top: 15px;
        }

            .tabs-view-all-link a.btn {
                border: 0;
                font-size: 15px;
                z-index: 100;
            }
    }

    @media (min-width:48em) and (max-width:63.99em) {
        .tabs-with-view-all .slider-nav .title-size-4 {
            font-size: 15px;
        }

        .tabs-view-all-link a.btn {
            width: 100px;
            padding-right: 16px !important;
        }

            .tabs-view-all-link a.btn:before,
            .tabs-view-all-link a.btn:after {
                display: none !important;
            }
    }

    @media (min-width:64em) {
        .tabs-with-view-all .slider-nav {
            padding-right: 250px;
        }

        .tabs-view-all-link a.btn {
            font-size: 19px;
        }
    }

    @media (min-width: 64em) and (max-width: 85.37em) {
        .tabs-with-view-all .slider-nav .title-size-4 {
            font-size: 17px;
        }

        .tabs-view-all-link a.btn {
            font-size: 17px;
        }
    }

    @media (min-width: 64em) and (max-width: 79.99em) {

        .tabs-view-all-link a.btn {
            padding-right: 16px !important;
        }

            .tabs-view-all-link a.btn:before,
            .tabs-view-all-link a.btn:after {
                display: none !important;
            }
    }

    @media (min-width: 71.875em) and (max-width: 79.99em) {
        .tabs-view-all-link {
            right: -70px;
        }
    }
    /* Slick slider bug fix */
    @media (min-width:48em) {
        .related-carousels .slider-nav.slick-slider .slick-track {
            -webkit-transform: translate3d(0,0,0) !important;
            -moz-transform: translate3d(0,0,0) !important;
            -ms-transform: translate3d(0,0,0) !important;
            -o-transform: translate3d(0,0,0) !important;
            transform: translate3d(0,0,0) !important;
        }
    }

    /* Rating Details */
    .rating-details {
        padding: 1.5em 0 0 0;
    }

        .rating-details > .flex-item > div {
            align-self: center;
        }

        .rating-details > .flex-item {
            font-size: 15px;
        }

            .rating-details > .flex-item .rating-num {
                display: none;
                font-size: 20px;
                font-weight: bold;
                color: #6aade4;
                width: 100px;
                padding-right: 20px;
                text-align: right;
            }

            .rating-details > .flex-item .rating-stars {
                display: block;
            }

            .rating-details > .flex-item:first-child .rating-stars > span {
                display: block;
                text-align: center;
            }

                .rating-details > .flex-item:first-child .rating-stars > span:first-child {
                    min-width: 96px;
                    padding-right: 5px;
                }

            .rating-details > .flex-item:first-child > div {
                padding-bottom: 20px;
            }

    @media (min-width:30em) {
        .rating-details > .flex-item:first-child .rating-stars > span {
            display: inline-block;
            text-align: left;
        }
    }

    @media (min-width:48em) {
        .rating-details > .flex-item > div:first-child {
            border-right: 1px solid #c4c4c4;
        }

        .rating-details > .flex-item .rating-num {
            display: block;
        }

        .rating-details > .flex-item .rating-stars {
            padding-left: 20px;
        }
    }

    @media (min-width:60em) {
        .rating-details {
            padding: 0;
        }
    }

    @media (min-width:80em) {
        .rating-details > .flex-item .rating-stars {
            padding-left: 50px;
        }

        .rating-details > .flex-item .rating-num {
            padding-right: 50px;
        }

        .rating-details > .flex-item:first-child > div {
            padding-bottom: 25px;
        }
    }

    .rating-details > .flex-item:first-child {
        font-size: 20px;
    }

        .rating-details > .flex-item:first-child .rating-num {
            color: #6aade4;
            font-size: 45px;
        }

    /* Accordion */
    .accordion > .ui-accordion-header {
        font-size: 18px;
    }

        .accordion > .ui-accordion-header .flex-item > div {
            align-self: center;
        }

        .accordion > .ui-accordion-header img {
            display: block;
            width: 36px;
            height: 36px;
            border-radius: 50%;
            margin-right: 15px;
        }

    @media (min-width:30em) {
        .accordion > .ui-accordion-header {
            font-size: 20px;
        }

            .accordion > .ui-accordion-header img {
                width: 60px;
                height: 60px;
                margin-right: 30px;
            }
    }

    /* Conatc Us Page */
    .contacts-list .flex-item {
        margin-bottom: 10px;
    }

    .contacts-list .grow > strong {
        display: block;
    }

    @media (min-width:64em) {
        .contacts-list .flex-item {
            margin-bottom: 25px;
        }

        .contacts-list-title {
            font-size: 19px;
        }
    }

    /* Publications and Services */
    .resources-icons > div {
        text-align: center;
    }

    .resources-icons a {
        text-decoration: none;
    }

    @media (max-width:47.99em) {
        .resources-icons {
            display: block;
            -webkit-column-count: 2;
            -moz-column-count: 2;
            column-count: 2;
            column-gap: 10px;
        }
    }

    @media (min-width:48em) {
        .resources-icons {
            flex-wrap: wrap;
        }

            .resources-icons > div {
                width: 20%;
            }
    }

    @media (min-width:1200px) {
        .resources-icons > div p:last-child {
            font-size: 1.4em;
            font-weight: 700;
        }
    }

    @media (min-width:1400px) {
        .resources > .grid-6:first-child {
            padding-right: 25px;
        }

        .resources > .grid-6:last-child {
            padding-left: 25px;
        }
    }

    .publication-item {
        padding: 15px 0;
        border-top: 1px solid #d8d8d8;
    }

        .publication-item:first-child {
            border-top: 0;
        }

        .publication-item .fixed img {
            margin-right: 20px;
        }

    /* Location Boxes */
    .location-boxes {
        width: 1050px;
        max-width: 100%;
        margin: 3em auto;
        flex-wrap: wrap;
        justify-content: center;
    }

        .location-boxes > div {
            width: 50%;
            padding: 5px;
            height: 145px;
        }

            .location-boxes > div > div {
                display: block;
                position: relative;
                width: 100%;
                height: 100%;
                background-size: cover;
                background-repeat: no-repeat;
                overflow: hidden;
            }

                .location-boxes > div > div > a {
                    display: block;
                    width: 100%;
                    height: 100%;
                    background: rgba(0, 63, 114, .82);
                    color: #fff;
                    text-decoration: none;
                }

                    .location-boxes > div > div > a:hover,
                    .location-boxes > div > div > a:focus {
                        background: rgba(236, 245, 253, .9);
                        color: #003f72;
                        text-decoration: none;
                    }

    @media (min-width:30em) {
        .location-boxes > div {
            height: 200px;
        }
    }

    @media (min-width:48em) {
        .location-boxes > div {
            width: 20%;
            height: 170px;
        }
    }

    @media (min-width:80em) {
        .location-boxes > div {
            height: 200px;
        }
    }

    .location-box-content {
        width: 100%;
        height: 100%;
        display: table;
        font-size: 19px;
        font-weight: bold;
    }

        .location-box-content > span {
            display: table-cell;
            vertical-align: middle;
            text-align: center;
            padding: 20px 15px;
        }

        .location-box-content .more-link {
            display: none;
            position: absolute;
            bottom: 30px;
            left: 50%;
            padding-right: 15px;
            font-size: 13px;
            -webkit-transform: translateX(-50%);
            -ms-transform: translateX(-50%);
            transform: translateX(-50%);
        }

            .location-box-content .more-link:before {
                width: 12px;
                height: 12px;
                margin-top: 1px;
            }

            .location-box-content .more-link:after {
                border: 1px solid currentColor;
                border-left: 0;
                border-top: 0;
                width: 5px;
                height: 5px;
                margin-top: 1px;
            }

    @media (min-width:64em) {
        a:hover .location-box-content .more-link {
            display: block;
        }
    }

    /* Items Lists */
    .items-list {
        margin: 0;
        padding: 0;
    }

        .items-list .flex-item {
            margin-bottom: 30px;
        }

        .items-list .item-media {
            display: block;
            width: 70px;
            height: 70px;
            margin-right: 20px;
            border-radius: 50%;
            background-size: cover;
            background-repeat: no-repeat;
            background-position: 50% 50%;
        }

    .squared-images .items-list .item-media {
        border-radius: 0;
    }

    .items-list-footer {
        text-align: center;
        margin: 0 0 40px;
    }

    @media (min-width:48em) {
        .items-list .item-media {
            width: 100px;
            height: 100px;
            margin-right: 32px;
        }

        .items-list-footer {
            text-align: left;
            padding-left: 135px;
            margin: 10px 0 0;
        }

        .items-list-header {
            text-align: center;
        }
    }

    @media (min-width:60em) {
        .items-list-header {
            padding-left: 135px;
            text-align: left;
        }
    }

    /* Homepage News and Events - custom */
    .site-body > .news-events-callouts-section {
        display:none;
    }

    .news-events-callouts-section strong {
        font-weight: 600;
    }

    .news-events-callouts-section .title-size-4 {
        line-height: 1.3em;
    }

    @media (min-width:64em) {
        .mobile-rail-bottom .news-events-callouts-section {
            display:none;
        }
        .site-body > .news-events-callouts-section {
            display:block;
        }

    }

    @media (min-width:64em) and (max-width:84.99em) {
        .news-events-callouts-section .title-size-2 {
            font-size: 25px;
        }

        .news-events-callouts-section .container .grid-6:first-child {
            padding: 0 20px 0 0;
        }

        .news-events-callouts-section .container .grid-6:last-child {
            padding: 0 0 0 20px;
        }
    }

    @media (min-width:85em) {
        .news-events-callouts-section .container .grid-6 {
            padding: 0 65px;
        }

        .news-events-callouts-section .items-list-header {
            padding-bottom: 10px;
        }
    }

    @media (max-width:47.99em) {
        .news-events-callouts-section .title-size-2 {
            text-align: center;
        }
    }

    /***********************
    Colorbox Core Style:
    The following CSS is consistent between example themes and should not be altered.
***********************/
    #colorbox, #cboxOverlay, #cboxWrapper {
        position: absolute;
        top: 0;
        left: 0;
        z-index: 9999;
        overflow: hidden;
        -webkit-transform: translate3d(0,0,0);
    }

    #cboxOverlay {
        z-index: 999;
    }

    #cboxWrapper {
        max-width: none;
    }

    #cboxOverlay {
        position: fixed;
        width: 100%;
        height: 100%;
    }

    #cboxMiddleLeft, #cboxBottomLeft {
        clear: left;
    }

    #cboxContent {
        position: relative;
    }

    #cboxLoadedContent {
        overflow: auto;
        -webkit-overflow-scrolling: touch;
    }

    #cboxTitle {
        margin: 0;
    }

    #cboxLoadingOverlay, #cboxLoadingGraphic {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }

    #cboxPrevious, #cboxNext, #cboxClose, #cboxSlideshow {
        cursor: pointer;
    }

    .cboxPhoto {
        float: left;
        margin: auto;
        border: 0;
        display: block;
        max-width: none;
        -ms-interpolation-mode: bicubic;
    }

    .cboxIframe {
        width: 100%;
        height: 100%;
        display: block;
        border: 0;
        padding: 0;
        margin: 0;
    }

    #colorbox, #cboxContent, #cboxLoadedContent {
        box-sizing: content-box;
        -moz-box-sizing: content-box;
        -webkit-box-sizing: content-box;
    }

    /* 
    User Style:
    Change the following styles to modify the appearance of Colorbox.  They are
    ordered & tabbed in a way that represents the nesting of the generated HTML.
*/
    #cboxOverlay {
        background: #00223e;
        opacity: 0.8;
        filter: alpha(opacity = 80);
    }

    #colorbox {
        outline: 0;
    }

    #cboxTopLeft {
        width: 21px;
        height: 21px;
    }

    #cboxTopRight {
        width: 21px;
        height: 21px;
    }

    #cboxBottomLeft {
        width: 21px;
        height: 21px;
    }

    #cboxBottomRight {
        width: 21px;
        height: 21px;
    }

    #cboxMiddleLeft {
        width: 21px;
    }

    #cboxMiddleRight {
        width: 21px;
    }

    #cboxTopCenter {
        height: 21px;
    }

    #cboxBottomCenter {
        height: 21px;
    }

    #cboxContent {
        background: #fff;
        overflow: hidden;
        padding: 40px 15px 20px 15px;
    }

    @media (min-width:80em) {
        #cboxContent {
            background: #fff;
            border-radius: 4px;
        }
        .get-care-now-module {
            padding: 65px 60px 55px;
        }
    }

    .cboxIframe {
        background: #fff;
    }

    #cboxError {
        padding: 50px;
        border: 1px solid #ccc;
    }

    #cboxLoadedContent {
        margin-bottom: 0;
    }

    #cboxTitle {
        position: absolute;
        bottom: 4px;
        left: 0;
        text-align: center;
        width: 100%;
        color: #949494;
        /* Hide this because of StayWell page */
        display: none !important;
    }

    #cboxCurrent {
        position: absolute;
        bottom: 4px;
        left: 58px;
        color: #949494;
    }

    /* these elements are buttons, and may need to have additional styles reset to avoid unwanted base styles */
    #cboxPrevious, #cboxNext, #cboxSlideshow, #cboxClose {
        border: 0;
        padding: 0;
        margin: 0;
        overflow: visible;
        width: auto;
        background: none;
    }

        /* avoid outlines on :active (mouseclick), but preserve outlines on :focus (tabbed navigating) */
        #cboxPrevious:active, #cboxNext:active, #cboxSlideshow:active, #cboxClose:active {
            outline: 0;
        }

    #cboxSlideshow {
        position: absolute;
        bottom: 4px;
        right: 30px;
        color: #0092ef;
    }

    #cboxPrevious {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 25px;
        height: 25px;
        text-indent: -9999px;
    }

        #cboxPrevious:hover {
            background-position: -75px -25px;
        }

    #cboxNext {
        position: absolute;
        bottom: 0;
        left: 27px;
        width: 25px;
        height: 25px;
        text-indent: -9999px;
    }

        #cboxNext:hover {
            background-position: -50px -25px;
        }

    #cboxClose {
        position: fixed;
        top: 25px;
        left: 25px;
        background: #003f72;
        border-radius: 50%;
        width: 30px;
        height: 30px;
        text-indent: -9999px;
        line-height: 0;
    }

        #cboxClose:before,
        #cboxClose:after {
            content: "";
            display: block;
            position: absolute;
            width: 14px;
            height: 2px;
            background: #fff;
            margin-left: 8px;
            top: 14px;
            left: 0;
        }

        #cboxClose:before {
            -webkit-transform: rotate(-45deg);
            -ms-transform: rotate(-45deg);
            transform: rotate(-45deg);
        }

        #cboxClose:after {
            -webkit-transform: rotate(45deg);
            -ms-transform: rotate(45deg);
            transform: rotate(45deg);
        }

    @media (min-width:80em) {
        #cboxClose {
            top: 35px;
            left: 30px;
        }
    }

    /*
  The following fixes a problem where IE7 and IE8 replace a PNG's alpha transparency with a black fill
  when an alpha filter (opacity change) is set on the element or ancestor element.  This style is not applied to or needed in IE9.
  See: http://jacklmoore.com/notes/ie-transparency-problems/
*/
    .cboxIE #cboxTopLeft,
    .cboxIE #cboxTopCenter,
    .cboxIE #cboxTopRight,
    .cboxIE #cboxBottomLeft,
    .cboxIE #cboxBottomCenter,
    .cboxIE #cboxBottomRight,
    .cboxIE #cboxMiddleLeft,
    .cboxIE #cboxMiddleRight {
        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#00FFFFFF,endColorstr=#00FFFFFF);
    }

    /***** End of Colorbox Popup *****/

    /* Get Care Now popup*/
    .get-care-now-module .svg-icon-container svg.icon {
        width: 70px;
        height: 70px;
        margin: 0;
    }

    .get-care-now-module .title-size-1 {
        margin-bottom: 1.2em;
    }

    .get-care-now-module .flex-item {
        flex-wrap: wrap;
    }

        .get-care-now-module .flex-item > div {
            width: 100%;
            padding: 0 15px 30px;
        }

            .get-care-now-module .flex-item > div > span {
                display: block;
                margin-bottom: 1em;
            }

        .get-care-now-module .flex-item + div {
            margin-top: 2em;
        }

    @media (min-width:64em) and (max-width:84.99em) {
        .get-care-now-module .title-size-1 {
            margin-bottom: .5em;
            font-size: 30px !important;
        }

        .get-care-now-module .title {
            margin: 0 0 .2em;
            font-size: 24px !important;
        }

        .get-care-now-module .flex-item + div {
            margin-top: 1em;
        }
    }

    @media (min-width:30em) {
        .get-care-now-module .flex-item > div {
            width: 50%;
        }
    }

    @media (min-width:80em) {
        .get-care-now-module .flex-item > div {
            width: 25%;
            padding-bottom: 70px;
            position: relative;
        }
        .occmed .get-care-now-module .flex-item > div {
            width: 50%;
            margin-bottom: 35px;
        }

            .get-care-now-module .flex-item > div .btn {
                position: absolute;
                bottom: 5px;
                left: 50%;
                -webkit-transform: translateX(-50%);
                -ms-transform: translateX(-50%);
                transform: translateX(-50%);
            }            
    }

    .popup-active {
        position: fixed;
        width: 100%;
    }

    /* Warning Messages */
    .warning-msg-container {
        position: relative;
        z-index: 1000;
    }

    @media (max-width:39.99em) {
        .warning-msg .grow > p:last-of-type {
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .warning-msg.show-full-content .grow > p:last-of-type {
            display: block;
            text-overflow: initial;
        }

        .warning-msg-more {
            display: block;
            margin-bottom: 15px;
            text-decoration: underline;
        }

        .show-full-content .warning-msg-more {
            display: none;
        }
    }

    @media (min-width:40em) {
        .warning-msg-more {
            display: none;
        }
    }

    /* Flex Callouts */
    .flex-callouts {
        flex-wrap: wrap;
    }

        .flex-callouts > div {
            width: 50%;
            text-align: center;
            padding: 0 15px 20px 15px;
            margin-bottom: 25px;
        }

            .flex-callouts > div .mobile-hide {
                display: none;
            }

    @media (max-width:47.99em) {
        .flex-callouts {
            margin: 0 14px;
        }

            .flex-callouts > div {
                margin: 0;
                padding: 0 12px 15px;
            }

        .alter-titles .title-size-3 {
            font-size: 16px;
            margin: 0;
        }

        .site-theme-2 .alter-titles .title-size-3 {
            font-size: 19px;
            font-weight: 400;
        }

        .alter-titles .title-color-3,
        .alter-titles .title-color-3 a {
            color: #003f72;
        }
    }

    @media (min-width:48em) {
        .flex-callouts > div {
            border-left: 1px solid #e1e1e1;
            padding: 0 35px;
        }

            .flex-callouts > div:first-child {
                border-left: 0;
            }

            .flex-callouts > div .mobile-hide {
                display: block;
            }

        .flex-callouts .desktop-hide {
            display: none;
        }
    }

    @media (min-width:64em) {
        .flex-callouts > div {
            text-align: left;
            width: 25%;
        }

        .flex-callouts.footer-fixed > div {
            padding-bottom: 70px;
            position: relative;
        }

        .flex-callouts.footer-fixed .btn {
            position: absolute;
            bottom: 5px;
        }

        .flex-callouts > div:nth-child(5),
        .flex-callouts > div:nth-child(9) {
            border-left: 0;
        }
    }

    @media (min-width:75em) {
        .flex-callouts-container {
            margin: 0 -30px;
        }
    }

    /* Default Plyaer */
    .default-player {
        display: block;
        position: relative;
        max-width: 100%;
        width: 688px !important;
        height: 0 !important;
        padding-bottom: 56.25%;
    }

    @media (max-width:79.99em) {
        .default-player .vjs-poster,
        .bc-player-rk1mJA1sz_default {
            background: none !important;
        }
    }

    .default-player video {
        width: 100% !important;
        height: 100% !important;
        position: absolute;
        top: 0px;
        bottom: 0px;
        right: 0px;
        left: 0px;
    }


    /* Filters */
    @media (min-width: 64em) {
        .section.after-breadcrumb {
            margin-top: -70px;
            padding-top: 130px;
        }
    }

    #letters-buttons,
    #letters-buttons-coveo {
        list-style: none;
        margin: 0 0 30px 0;
        padding: 0;
        display: table;
        width: 100%;
    }

        #letters-buttons li,
        #letters-buttons-coveo li {
            display: table-cell;
        }

        #letters-buttons .letter,
        #letters-buttons-coveo .letter {
            display: block;
            text-align: center;
            background: none;
            border: 0;
            color: #989797;
            font-weight: bold;
            width: 100%;
            padding: 0 9px;
        }

            #letters-buttons .letter.active,
            #letters-buttons-coveo .letter.active {
                font-weight: 800;
                color: #003f72;
            }

    .filter-footer .btn {
        min-width: 170px;
    }

    .search-results-top-filter label {
        color: #003f72;
        font-size: 17px;
    }

    .search-results-top-filter #uselocation {
        margin-bottom: 12px;
        display: block;
    }

    @media (min-width:80em) {
        .search-results-top-filter label {
            font-size: 19px;
        }

        .search-results-top-filter .letter {
            font-size: 17px;
        }
    }

    .search-results-top-filter .buttons-label {
        font-weight: bold;
        color: #003f72;
        font-size: 17px;
        text-transform: uppercase;
    }

    @media (min-width: 48em) and (max-width: 63.99em) {
        #letters-buttons .letter,
        #letters-buttons-coveo .letter {
            padding: 0 5px;
            font-size: 13px;
        }

        .search-results-top-filter .buttons-label {
            font-size: 13px;
        }
    }

    .coveo-results-custom .mobile-hide {
        display: none;
    }

    @media (min-width:48em) {
        .coveo-results-custom .mobile-hide {
            display: block;
        }

        .coveo-results-custom .desktop-hide {
            display: none;
        }

        .search-results-top-filter .flex-item > div {
            padding: 0 10px;
        }
    }

    @media (min-width:80em) {
        .search-results-top-filter .flex-item > div {
            padding: 0 20px 10px 20px;
        }
    }

    .search-results-top-filter .expandable.active .expandable-hidden {
        display: none;
    }

    @media (max-width:47.99em) {
        .search-results-top-filter .expandable-inner .expandable-hidden {
            display: none;
        }

        .search-results-top-filter .expandable-inner.active .expandable-hidden {
            display: block;
        }

        .mobile-slight-padding-top{
            padding-top: .5em; 
        }
    }

    .slight-padding-top {
        padding-top: .5em; 
    }

    [class*="show-hide-button"] {
        position: relative;
        text-align: center;
        margin: 1em 0 2em;
    }

    @media (min-width:48em) {
        [class*="show-hide-button"] {
            margin: 2em 0 0 0;
        }
    }

    [class*="show-hide-button"]:before {
        content: "";
        position: absolute;
        top: 50%;
        left: 0;
        height: 1px;
        width: 100%;
        background: #c7d4de;
    }

    [class*="show-hide-button"] [class*="expandable-trigger"] {
        position: relative;
        border: 0;
        background: #f9f9f9;
        padding: 0 15px;
        color: #6aade4;
        font-size: 13px;
        font-weight: bold;
        text-transform: uppercase;
        outline: none;
    }

    @media (min-width:80em) {
        [class*="show-hide-button"] [class*="expandable-trigger"] {
            font-size: 15px;
        }
    }


    /* Services Page */
    .services-by-letter {
        list-style: none;
        margin: 0;
        padding: 0;
    }

        .services-by-letter li {
            border-bottom: 1px solid #e0e0e0;
            padding: 20px 25px;
            font-size: 19px;
            font-weight: 700;
        }

            .services-by-letter li:nth-child(odd) {
                background: #f9f9f9;
            }

    /* 404 Error page */
    .error-layout {
        font-size: 1.3em;
    }

    .error-content > div {
        margin-bottom: 2em;
    }

    .error-content p {
        margin-bottom: .2em;
    }

    .error-reason {
        font-size: 1.3em;
        color: #ed1990;
        font-weight: 600;
    }

    .site-theme-2 .error-reason {
        color: #87cefa;
    }

    @media (min-width:48em) {
        .error-layout .grow {
            padding-right: 5%;
        }
    }

    @media (min-width:48em)and (max-width: 63.99em) {
        .error-layout .fixed img {
            width: 220px;
        }
    }

    @media (min-width:64em)and (max-width: 80em) {
        .error-layout .fixed img {
            width: 320px;
        }
    }
    /*Temporary fix on Services pages*/
    .location-services {
        padding-top: 1em;
    }

    /* Overwrite videos styles */
    .video-js .vjs-dock-title {
        text-align: left !important;
    }

    .video-js .vjs-dock-text {
        display: none !important;
    }

    /* Fixing IE issue with the videos in the carousel */
    .carousel-videos .mf-player-container,
    .carousel .mf-player-container {
        opacity: 0;
    }

    .carousel-videos .slick-current .mf-player-container,
    .carousel .slick-current .mf-player-container {
        opacity: 1;
    }

    @media (min-width:75em) and (max-width: 85.374em) {
        .no-flexboxlegacy .carousel-videos .mf-player-container {
            min-height: 298px;
        }
    }

    @media (min-width:85.375em) {
        .no-flexboxlegacy .carousel-videos .mf-player-container {
            min-height: 324px;
        }
    }

    /* Hubspot Form */
    .site-theme-1 .page-section .content.page-layout {
        padding-top: 50px;
    }

    .site-theme-1 .hbspt-form * {
        font-family: Montserrat, sans-serif;
    }

    .site-theme-1 .hbspt-form {
        width: 500px;
        max-width: 100%;
        margin: 50px auto 0 auto;
        padding: 0 20px;
    }

        .site-theme-1 .hbspt-form label,
        .site-theme-1 .hbspt-form label span {
            color: #003f72;
            font-size: 17px;
        }

        .site-theme-1 .hbspt-form input[type="text"],
        .site-theme-1 .hbspt-form input[type="email"],
        .site-theme-1 .hbspt-form input[type="password"],
        .site-theme-1 .hbspt-form select,
        .site-theme-1 .hbspt-form textarea {
            background: #fff;
            -moz-border-radius: 3px !important;
            -webkit-border-radius: 3px !important;
            border-radius: 3px !important;
            padding: 15px 15px;
            border-color: #b7b7b7;
            border-top-width: 1px;
            color: #4a4a4a;
            font-size: 15px;
            box-sizing: border-box !important;
            height: auto;
            line-height: 1em;
        }

        .site-theme-1 .hbspt-form .hs_submit {
            text-align: center;
        }

        .site-theme-1 .hbspt-form .hs-button.primary {
            display: inline-block;
            margin: 0;
            padding: 15px 16px;
            line-height: 1em;
            font-weight: 700;
            font-size: 15px;
            color: #fff;
            background: #ed2194;
            border: 1px solid #ed2194;
            border-radius: 4px;
            text-align: center;
            text-decoration: none;
            cursor: pointer;
            overflow: visible;
            text-shadow: none;
            box-shadow: none;
            width: 100%;
            box-sizing: border-box;
        }

            .site-theme-1 .hbspt-form .hs-button.primary:hover,
            .site-theme-1 .hbspt-form .hs-button.primary:focus {
                color: #fff;
                background: #ed2194;
                border: 1px solid #ed2194;
                box-shadow: none;
                opacity: .7;
            }

        .site-theme-1 .hbspt-form .hs-form-required {
            color: #ed1990 !important;
            margin-left: 2px;
        }

        .site-theme-1 .hbspt-form .submitted-message {
            text-align: center;
        }

    /* ORG site form */
    .site-theme-2 .page-section .content.page-layout {
        padding-top: 50px;
    }

.site-theme-2 .hbspt-form * {
    font-family: Montserrat, sans-serif;
}

    .site-theme-2 .hbspt-form {
        max-width: 500px;
        width: 100%;
        margin: 50px 0 0;
        padding: 0 20px;
    }

        .site-theme-2 .hbspt-form label,
        .site-theme-2 .hbspt-form label span {
            /* color: #003f72;*/
            font-size: 19px;
        }

        .site-theme-2 .hbspt-form label {
            font-weight: bold;
        }

        .site-theme-2 .hbspt-form fieldset {
            margin-bottom: 18px;
        }

            .site-theme-2 .hbspt-form fieldset input {
                width: 100%;
            }

        .site-theme-2 .hbspt-form .inputs-list {
            list-style: none;
            margin: 10px 0 0 0;
            padding: 0;
        }

            .site-theme-2 .hbspt-form .inputs-list label span {
                margin-left: 5px;
                font-weight: 400;
            }

        .site-theme-2 .hbspt-form input[type="text"],
        .site-theme-2 .hbspt-form input[type="email"],
        .site-theme-2 .hbspt-form input[type="password"],
        .site-theme-2 .hbspt-form select,
        .site-theme-2 .hbspt-form textarea {
            background: #fff;
            -moz-border-radius: 3px !important;
            -webkit-border-radius: 3px !important;
            border-radius: 3px !important;
            padding: 15px 15px;
            border: 1px solid #b7b7b7;
            color: #4a4a4a;
            font-size: 15px;
            box-sizing: border-box !important;
            height: auto;
            line-height: 1em;
        }

        .site-theme-2 .hbspt-form .hs_submit {
            text-align: center;
        }

        .site-theme-2 .hbspt-form .hs-button.primary {
            display: inline-block;
            margin: 0;
            padding: 15px 16px;
            line-height: 1em;
            font-weight: 700;
            font-size: 15px;
            color: #fff;
            background: #003f72;
            border: 1px solid #003f72;
            border-radius: 4px;
            text-align: center;
            text-decoration: none;
            cursor: pointer;
            overflow: visible;
            text-shadow: none;
            box-shadow: none;
            /* width: 100%; */
            box-sizing: border-box;
        }

            .site-theme-2 .hbspt-form .hs-button.primary:hover,
            .site-theme-2 .hbspt-form .hs-button.primary:focus {
                color: #fff;
                /* background: #09bfe6; */
                border: 1px solid #09bfe6;
                box-shadow: none;
                opacity: .7;
            }

        .site-theme-2 .hbspt-form .hs-form-required {
            color: #6aade4 !important;
            margin-left: 8px;
        }

        .site-theme-2 .hbspt-form .submitted-message {
            text-align: center;
        }

        .site-theme-2 .hbspt-form .hs-error-msgs label {
            font-size: inherit;
            font-weight: inherit;
        }

        .site-theme-2 .hbspt-form fieldset {
            max-width: inherit;
            width: inherit;
        }

            .site-theme-2 .hbspt-form fieldset .hs-input {
                width: 100% !important;
            }

                .site-theme-2 .hbspt-form fieldset .hs-input[type="checkbox"] {
                    width: auto !important;
                }

    /* ORG Site Class Schedule Form */

    .site-theme-2 .script-manager-div .hbspt-form {
        max-width: none;
    }

    @media (max-width:48em) {
        .site-theme-2 .script-manager-div .hbspt-form {
            padding: 0;
        }

        .site-theme-2 .hbspt-form #scheduleGXP {
            padding: 20px 0;
            min-width: 0;
            width: 100%;
        }

            .site-theme-2 .hbspt-form #scheduleGXP .searchSelect {
                width: 100%;
                float: none;
                margin-bottom: 1em;
            }

                .site-theme-2 .hbspt-form #scheduleGXP .searchSelect select {
                    width: 90%;
                }

            .site-theme-2 .hbspt-form #scheduleGXP thead {
                display: none;
            }

            .site-theme-2 .hbspt-form #scheduleGXP td {
                display: block;
            }
    }


    /* IE11 Scrollbar fix */
    @media (min-width:64em) {
        .no-flexboxlegacy .warning-msg,
        .no-flexboxlegacy .site-header > .inner {
            padding-right: 25px;
        }

        .no-flexboxlegacy .footer-bottom {
            padding-right: 15px;
        }
    }
    /* IE11 Select box fix */
    .special-select select::-ms-expand {
        display: none;
    }

    /* Special Select additional fix */
    .filter .formee .special-select select {
        padding: 11px 35px 11px 15px;
    }

    .filter .formee .special-select:after {
        top: 10px;
    }

    #locationMap {
        width: 100%;
        height: 320px;
        background-color: grey;
    }

    /* Sitemap Page */
    .sitemap h4 {
        font-size: 18px;
    }

    .sitemap > li > ul {
        -webkit-column-count: 3;
        -moz-column-count: 3;
        column-count: 3;
        -webkit-column-width: 250px;
        -moz-column-width: 250px;
        column-width: 250px;
    }

    /* Physitians Page and Clinical Trials page */
    .site-theme-2 .panel-group {
        margin-top: 2em;
    }

        .site-theme-2 .panel-group .panel-group {
            margin-top: 0em;
        }

    .site-theme-2 .nested-accordion .panel .panel-heading {
        background-color: #003f72;
    }

        .site-theme-2 .nested-accordion .panel .panel-heading .panel-title {
            padding: 0;
        }

            .site-theme-2 .nested-accordion .panel .panel-heading .panel-title a {
                font-weight: 600;
            }

                .site-theme-2 .nested-accordion .panel .panel-heading .panel-title a .caret {
                    color: #6aade4;
                    top: 7px;
                    left: -20px;
                }

    .site-theme-2 .short-fade-well {
        padding: 20px;
        font-family: inherit;
        background: #fff;
        font-size: 16px;
    }

    .site-theme-2 .nested-accordion .white-accordion .panel .panel-heading {
        background: #fff;
        padding-left: 35px;
    }

    .site-theme-2 .white-accordion .panel .panel-heading .panel-title {
        font-family: inherit;
        font-size: 16px;
    }

        .site-theme-2 .white-accordion .panel .panel-heading .panel-title a {
            font-weight: 400;
        }

            .site-theme-2 .white-accordion .panel .panel-heading .panel-title a .caret {
                top: 7px;
                left: -17px;
            }

    .physician-details h3 {
        margin: 0;
    }

    /* Referal Center Page */
    .contact-form-container {
        margin-top: 1em;
    }

    .formee.refferal-center-form fieldset {
        background: transparent;
    }

    @media(min-width:480px) {
        .refferal-form {
            margin: 0 -10px;
        }

            .refferal-form.email-patient-form {
                margin-top: 1em;
            }
    }

    .formee.refferal-center-form {
        margin-bottom: 1em;
    }

        .formee.refferal-center-form fieldset {
            border: 0;
            padding: 0;
            margin: 0;
            position: relative;
        }

        .formee.refferal-center-form label {
            display: inline;
            padding-right: 3px;
        }

        .formee.refferal-center-form .field-required {
            color: #6aade4;
        }

        .formee.refferal-center-form .move-up-custom {
            margin-top: -15px;
        }

        .formee.refferal-center-form .move-down-custom {
            margin-top: 15px;
        }

        .formee.refferal-center-form .form-footer {
            margin-top: 1em;
        }

        .formee.refferal-center-form .form-control[disabled] {
            cursor: not-allowed;
            background: #f9f9f9;
        }

    .refferal-center-form .data-table th {
        background: #003f72;
        border: 1px solid #6aade4;
    }

    .refferal-center-form .data-table td {
        text-align: center;
    }

    .VolunteerApplicationForm .checkBoxList {
        border: 2px solid #003f72;
        height: 300px;
        padding: 20px;
        overflow-y: scroll;
    }

    .well-fade {
        margin-bottom: 2em;
        background: #f9f9f9;
        padding: 1em;
    }

    /*** BILL PAY ***/
    /* Styles from the old site */
    body {
        min-width: 300px
    }

    #header-container #main-nav-container .right-column {
        max-width: 100%
    }

    #body-container .right-column {
        max-width: 100%;
        box-sizing: border-box
    }

    .page-body-content {
    }

    .visually-hidden {
        border: 0;
        clip: rect(0 0 0 0);
        height: 1px;
        margin: -1px;
        overflow: hidden;
        padding: 0;
        position: absolute;
        width: 1px
    }

        .visually-hidden.focusable:active, .visually-hidden.focusable:focus {
            clip: auto;
            height: auto;
            margin: 0;
            overflow: visible;
            position: static;
            width: auto
        }

    .clearfix:before, .clearfix:after {
        content: "";
        display: table
    }

    .clearfix:after {
        clear: both
    }

    .clearfix {
        zoom: 1
    }

    .svg-legend {
        height: 0;
        position: absolute;
        top: -999em;
        width: 0
    }

    .svg_icon {
        display: inline-block;
        width: 1em;
        height: 1em;
        stroke-width: 0;
        stroke: currentColor;
        fill: currentColor
    }

    @media(min-width:480px) {
        .flex {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex
        }
    }

    .validation-summary-valid {
        display: none
    }

    .validation-summary-errors.field-validation-error {
        display: block
    }

    .bill-payment-container {
    }

        .bill-payment-container.container-fluid {
            padding-left: 0;
            padding-right: 0
        }

        .bill-payment-container h1, .bill-payment-container h2, .bill-payment-container h3, .bill-payment-container h4, .bill-payment-container h5, .bill-payment-container h6 {
        }

    .title {
    }

    .bill-payment-hint {
        margin-left: 10px
    }

    .bill-payment-container .border-box {
        box-sizing: border-box
    }

    .full-width-container {
        padding: 26px 0;
        background: #fff !important
    }

        .full-width-container #breadcrumbs {
            margin-left: 250px
        }

    .form-container {
        border: 1px solid #c4c3c3;
        background: #f9f8f8;
        padding: 35px 50px;
        width: 625px;
        max-width: 100%;
        margin: 70px 0 50px
    }

        .form-container input[type="text"], .form-container input[type="password"], .form-container input[type="datetime"], .form-container input[type="datetime-local"], .form-container input[type="date"], .form-container input[type="month"], .form-container input[type="time"], .form-container input[type="week"], .form-container input[type="number"], .form-container input[type="email"], .form-container input[type="url"], .form-container input[type="search"], .form-container input[type="tel"], .form-container input[type="color"], label {
            font-size: 16px;
            color: #222
        }

        .form-container .info-icon-container {
            background: #6cace3;
            color: #fff;
            border-radius: 50%;
            font-size: 16px;
            overflow: hidden;
            display: inline-block;
            width: 16px;
            height: 16px;
            margin-right: 10px
        }

        .form-container .icon_info {
            display: inline-block;
            width: 20px;
            height: 20px;
            margin: -2px
        }

        .form-container .step-num {
            font-size: 24px;
            color: #6cace3;
            margin-bottom: 20px
        }

            .form-container .step-num span {
                display: inline-block;
                width: 35px;
                height: 35px;
                box-sizing: border-box;
                padding: 7px;
                vertical-align: middle;
                font-size: 21px;
                background: #6cace3;
                color: #fff;
                text-align: center;
                border-radius: 50%
            }

        .form-container .step-title {
            font-size: 21px;
            margin-bottom: 30px
        }

            .form-container .step-title.step-title-alt {
                font-size: 24px;
                color: #6cace3
            }

        .form-container .control-group {
            position: relative;
            padding-left: 30px;
            box-sizing: border-box
        }

            .form-container .control-group.center {
                display: flex;
                justify-content: center
            }

        .form-container span.required {
            position: absolute;
            left: 0;
            top: 15px;
            color: #005582;
            font-size: 25px
        }

    .payment-methods {
        font-size: 14px;
        color: #9c9c9c
    }

        .payment-methods > img {
            margin: 10px 0
        }

    .has-popup-info {
        position: relative
    }

        .has-popup-info.popup-right {
            padding-right: 40px
        }

        .has-popup-info.popup-left {
            padding-left: 40px
        }

        .has-popup-info .popup-trigger {
            position: absolute;
            top: 12px
        }

        .has-popup-info.popup-right .popup-trigger {
            right: 0
        }

        .has-popup-info.popup-left .popup-trigger {
            left: 0
        }

    .form-container .form-btn {
        display: block;
        width: 100%;
        padding: 15px;
        line-height: 1em;
        border-radius: 0;
        border: 0;
        font-size: 14px;
        text-transform: uppercase;
        text-shadow: none;
        box-shadow: none
    }

        .form-container .form-btn:hover, .form-container .form-btn:focus {
            opacity: .7
        }

    .form-container .next-btn {
        color: #fff
    }

    .form-container .prev-btn {
        color: #7c7c7c;
        background: #efefef
    }

    .form-container .form-btn > span {
        position: relative
    }

    .form-container .next-btn > span {
        padding-right: 18px
    }

    .form-container .prev-btn > span {
        padding-right: 18px
    }

    .form-container .next-btn.no-arrow > span {
        padding-right: 0
    }

    .form-container .login-btn {
        background: #005582;
        color: #fff
    }

    .form-container .next-btn {
        background: #6cace3
    }

        .form-container .next-btn > span:before, .form-container .next-btn > span:after, .form-container .prev-btn > span:before, .form-container .prev-btn > span:after {
            content: "";
            position: absolute;
            display: block;
            width: 7px;
            height: 2px
        }

        .form-container .next-btn > span:before, .form-container .next-btn > span:after {
            background: #fff
        }

    .form-container .prev-btn > span:before, .form-container .prev-btn > span:after {
        background: #7c7c7c
    }

    .form-container .next-btn.no-arrow > span:before, .form-container .next-btn.no-arrow > span:after {
        display: none
    }

    .form-container .next-btn > span:before {
        top: 50%;
        right: 0;
        margin-top: -3px;
        -webkit-transform: rotate(45deg);
        -moz-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        -o-transform: rotate(45deg)
    }

    .form-container .next-btn > span:after {
        top: 50%;
        right: 0;
        margin-top: 1px;
        -webkit-transform: rotate(-45deg);
        -moz-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
        -o-transform: rotate(-45deg)
    }

    .form-container .prev-btn > span:before {
        top: 50%;
        left: 0;
        margin-top: -3px;
        -webkit-transform: rotate(-45deg);
        -moz-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
        -o-transform: rotate(-45deg)
    }

    .form-container .prev-btn > span:after {
        top: 50%;
        left: 0;
        margin-top: 1px;
        -webkit-transform: rotate(45deg);
        -moz-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        -o-transform: rotate(45deg)
    }

    .form-complete-sign {
        position: relative;
        display: block;
        width: 100px;
        height: 100px;
        margin: 20px auto;
        border-radius: 50%;
        background: #6cace3
    }

        .form-complete-sign:before, .form-complete-sign:after {
            content: "";
            position: absolute;
            display: block;
            height: 7px;
            top: 50%;
            left: 50%;
            background: #fff
        }

        .form-complete-sign:before {
            width: 35px;
            margin-left: -12px;
            margin-top: -1px;
            -webkit-transform: rotate(-45deg);
            -moz-transform: rotate(-45deg);
            -ms-transform: rotate(-45deg);
            -o-transform: rotate(-45deg)
        }

        .form-complete-sign:after {
            width: 15px;
            margin-left: -17px;
            margin-top: 4px;
            -webkit-transform: rotate(45deg);
            -moz-transform: rotate(45deg);
            -ms-transform: rotate(45deg);
            -o-transform: rotate(45deg)
        }

    .payment-complete .text-size-1 {
        font-size: 14px;
        color: #9c9c9c
    }

        .payment-complete .text-size-1 p {
            margin-bottom: 12px
        }

    .payment-complete .text-size-2 {
        font-size: 21px;
        font-weight: bold
    }

    .payment-complete .text-size-3 {
        font-size: 24px
    }

    .payment-complete .margin-1 {
        margin-bottom: 40px
    }

    @media(max-width:479px) {
        .form-container {
            padding: 35px 20px
        }

            .form-container .row-fluid > [class*="span"] {
                width: 100%;
                margin-left: 0
            }

            .form-container .row-fluid > .control-group > [class*="span"] {
                width: 50%;
                margin-left: 0
            }

            .form-container .control-label {
                font-size: 12px
            }

            .form-container .info-icon-container {
                margin-left: 5px
            }
    }

    .control-label.visually-hidden {
        display: none !important;
    }

    .wizard > .content > .title, .tabcontrol > .content > .title {
        position: absolute;
        left: -999em
    }

    .wizard > .steps .current-info, .tabcontrol > .steps .current-info, .wizard > .steps .number, .tabcontrol > .steps .number {
        position: absolute;
        left: -999em
    }

    .wizard {
        position: relative
    }

        .wizard .steps {
            position: absolute;
            top: -122px;
            left: 0;
            width: 100%
        }

            .wizard .steps > ul {
                position: relative;
                width: 629px;
                max-width: 100%;
                margin: 20px auto;
                padding: 0;
                box-sizing: border-box;
                list-style: none !important
            }

                .wizard .steps > ul > li {
                    width: 25%;
                    padding: 0 2px;
                    float: left;
                    box-sizing: border-box;
                    background: none
                }

                    .wizard .steps > ul > li a {
                        display: block;
                        padding: 10px;
                        text-align: center;
                        border-top: 2px solid #dedede;
                        color: #c9c9c9;
                        font-size: 11px;
                        text-transform: uppercase
                    }

                    .wizard .steps > ul > li.current a, .wizard .steps > ul > li.done a {
                        border-top: 2px solid #6cace3;
                        color: #6cace3;
                        font-weight: bold
                    }

    .actions ul {
        margin: 0;
        padding: 0 0 0 30px;
        box-sizing: border-box;
        width: 100%;
        list-style: none !important
    }

        .actions ul li {
            width: 50%;
            box-sizing: border-box;
            text-align: center;
            background: none
        }

            .actions ul li:nth-child(1) {
                padding-right: 10px;
                float: left
            }

            .actions ul li:nth-child(2) {
                padding-left: 10px;
                float: right
            }

            .actions ul li:nth-child(3) {
                padding-left: 10px;
                float: right
            }

            .actions ul li.disabled {
                display: none
            }

            .actions ul li a {
                display: block;
                padding: 15px;
                line-height: 1em;
                border-radius: 0;
                border: 0;
                font-size: 14px;
                text-transform: uppercase;
                text-shadow: none;
                box-shadow: none
            }

                .actions ul li a:hover, .actions ul li a:focus {
                    opacity: .7;
                    text-decoration: none
                }

            .actions ul li:nth-child(1) a {
                color: #7c7c7c;
                background: #efefef
            }

            .actions ul li:nth-child(2) a {
                color: #fff;
                background: #6cace3
            }

            .actions ul li:nth-child(3) a {
                color: #fff;
                background: #6cace3
            }

            .actions ul li a span {
                position: relative
            }

            .actions ul li:nth-child(1) a span:before, .actions ul li:nth-child(1) a span:after {
                content: "";
                position: absolute;
                left: -20px;
                top: 50%;
                display: block;
                width: 7px;
                height: 2px;
                background: #7c7c7c
            }

            .actions ul li:nth-child(1) a span:before {
                margin-top: -3px;
                -webkit-transform: rotate(-45deg);
                -moz-transform: rotate(-45deg);
                -ms-transform: rotate(-45deg);
                -o-transform: rotate(-45deg)
            }

            .actions ul li:nth-child(1) a span:after {
                -webkit-transform: rotate(45deg);
                -moz-transform: rotate(45deg);
                -ms-transform: rotate(45deg);
                -o-transform: rotate(45deg)
            }

            .actions ul li:nth-child(2) a span:before, .actions ul li:nth-child(2) a span:after {
                content: "";
                position: absolute;
                right: -20px;
                top: 50%;
                display: block;
                width: 7px;
                height: 2px;
                background: #fff
            }

            .actions ul li:nth-child(2) a span:before {
                margin-top: -3px;
                -webkit-transform: rotate(45deg);
                -moz-transform: rotate(45deg);
                -ms-transform: rotate(45deg);
                -o-transform: rotate(45deg)
            }

            .actions ul li:nth-child(2) a span:after {
                -webkit-transform: rotate(-45deg);
                -moz-transform: rotate(-45deg);
                -ms-transform: rotate(-45deg);
                -o-transform: rotate(-45deg)
            }

    #cboxLoadedContent {
        border: 0;
        /*background: #f9f8f8*/
    }

    .info-popup {
        background: #f9f8f8;
        border: 1px solid #c6c6c6;
        padding: 50px
    }

    .sa-codes-carousel-container {
        display: none;
        position: relative
    }

    .carousel-active .sa-codes-carousel-container {
        display: block
    }

    .carousel-active .sa-codes-triggers {
        display: none
    }

    .sa-codes-main-container {
        width: 700px;
        margin: 0 auto
    }

    .sa-codes-triggers-container > h2 {
        font-size: 24px;
        color: #6cace3;
        margin-bottom: 15px
    }

        .sa-codes-triggers-container > h2 .info-icon-container {
            background: #6cace3;
            color: #fff;
            border-radius: 50%;
            font-size: 16px;
            overflow: hidden;
            display: inline-block;
            width: 31px;
            height: 31px;
            margin-right: 10px;
            margin-bottom: -5px
        }

        .sa-codes-triggers-container > h2 .icon_info {
            display: inline-block;
            width: 37px;
            height: 37px;
            margin: -3px
        }

    .sa-codes-triggers {
        margin: 0 -5px
    }

        .sa-codes-triggers > h3 {
            color: #222;
            font-size: 18px;
            margin: 5px 5px 15px
        }

    .sa-codes-trigger-item {
        float: left;
        width: 350px;
        height: 240px;
        padding: 5px;
        box-sizing: border-box
    }

        .sa-codes-trigger-item a {
            position: relative;
            display: block;
            width: 100%;
            height: 100%;
            box-sizing: border-box;
            font-size: 21px;
            color: #222;
            text-align: center;
            background: #fff;
            border: 1px solid #cdcdcd;
            border-bottom: 2px solid #cdcdcd
        }

            .sa-codes-trigger-item a span {
                display: block;
                width: 100%;
                height: 100%;
                box-sizing: border-box;
                padding-top: 190px
            }

            .sa-codes-trigger-item a .bg-hold {
                opacity: .3;
                box-sizing: border-box;
                background-repeat: no-repeat;
                background-position: 50% 50%;
                background-size: cover
            }

            .sa-codes-trigger-item a .text-hold {
                position: absolute;
                top: 0;
                left: 0
            }

            .sa-codes-trigger-item a:hover, .sa-codes-trigger-item a:focus {
                border-bottom: 2px solid #6cace3;
                text-decoration: none
            }

                .sa-codes-trigger-item a:hover .bg-hold, .sa-codes-trigger-item a:focus .bg-hold {
                    opacity: .9
                }

    .slick-slide {
        outline: none
    }

    .sa-codes-carousel h3 {
        color: #222;
        font-size: 21px;
        padding-right: 30px
    }

    .close-carousel {
        position: absolute;
        top: 42px;
        right: 15px;
        z-index: 1;
        padding: 10px
    }

        .close-carousel:before, .close-carousel:after {
            content: "";
            display: block;
            width: 14px;
            height: 2px;
            background: #818898
        }

        .close-carousel:before {
            -webkit-transform: rotate(45deg);
            -moz-transform: rotate(45deg);
            -ms-transform: rotate(45deg);
            -o-transform: rotate(45deg)
        }

        .close-carousel:after {
            margin-top: -2px;
            -webkit-transform: rotate(-45deg);
            -moz-transform: rotate(-45deg);
            -ms-transform: rotate(-45deg);
            -o-transform: rotate(-45deg)
        }

    #payment-form .g-recaptcha {
        margin-bottom: 10px
    }

    .bill-payment-container .panel {
        background: #f5f5f5;
        border: 1px solid #c7c7c7;
        border-radius: 2px;
        margin-bottom: 5px
    }

    .accordion-theme-alt {
        border-top: 1px solid #ebebeb
    }

        .accordion-theme-alt .panel {
            background: #fff;
            border: 0;
            border-bottom: 1px solid #ebebeb;
            border-top: 1px solid #fafafa;
            border-radius: 0;
            margin-bottom: 0
        }

    .panel-title {
        color: #222;
        font-weight: bold;
        padding: 20px
    }

        .panel-title a {
            color: #222;
            display: block;
            position: relative;
            padding-right: 30px;
            outline: none
        }

    .accordion-theme-alt .panel-title {
        padding: 20px 0
    }

    .panel-title a:hover, .panel-title a:focus {
        text-decoration: none
    }

    .panel-title img {
        margin-right: 10px
    }

    .panel-title .arrow {
        position: absolute;
        right: 0;
        top: 50%;
        display: block
    }

    .accordion-theme-alt .panel-title .arrow {
        top: 12px
    }

    .panel-title .initial-state .arrow {
        -webkit-transform: rotate(180deg) translate(50%,0);
        -moz-transform: rotate(180deg) translate(50%,0);
        -ms-transform: rotate(180deg) translate(50%,0);
        -o-transform: rotate(180deg) translate(50%,0)
    }

    .panel-title .collapsed .arrow {
        -webkit-transform: rotate(180deg) translate(50%,0);
        -moz-transform: rotate(180deg) translate(50%,0);
        -ms-transform: rotate(180deg) translate(50%,0);
        -o-transform: rotate(180deg) translate(50%,0)
    }

    .panel-title .arrow:before, .panel-title .arrow:after {
        content: "";
        width: 18px;
        height: 2px;
        background: #005582;
        display: block
    }

    .panel-title .arrow:before {
        -webkit-transform: rotate(45deg);
        -moz-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        -o-transform: rotate(45deg)
    }

    .panel-title .arrow:after {
        margin-top: -2px;
        margin-left: -13px;
        width: 19px;
        -webkit-transform: rotate(-45deg);
        -moz-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
        -o-transform: rotate(-45deg)
    }

    .accordion-theme-alt .panel-title .arrow:before {
        width: 13px
    }

    .accordion-theme-alt .panel-title .arrow:after {
        width: 14px;
        margin-left: -9px
    }

    .accordion-theme-alt .panel-default > .panel-heading {
        background-color: #fff;
        padding-left: 0
    }

    .bill-payment-container .panel-body {
        padding: 0 20px 20px 35px;
        border-top: none !important
    }

    .bill-payment-container .accordion-theme-alt .panel-body {
        padding-left: 0
    }

    .pay-online .panel-title {
        font-size: 22px
    }

    .linkdiv {
        cursor: pointer
    }

    .online-payments {
        width: 436px;
        margin: 0 auto;
        max-width: 100%
    }

        .online-payments > div, .online-payments > a {
            background: #fff;
            border: 1px solid #c6c6c6;
            padding: 10px;
            margin: 5px 0;
            font-size: 14px;
            box-sizing: border-box;
            display: block
        }

    @media(min-width:480px) {
        .online-payments > div, .online-payments > a {
            width: 48%
        }

            .online-payments > div:first-child, .online-payments > a:first-child {
                margin: 5px 2% 5px 0
            }

            .online-payments > div:last-child, .online-payments > a:last-child {
                margin: 5px 0 5px 2%
            }
    }

    .online-payments > div h3, .online-payments > a h3 {
        font-size: 18px;
        color: #222;
        text-align: center
    }

    .online-payments > a {
        text-decoration: inherit;
        color: inherit
    }

    .panel-title .subtitle.pay-by-phone {
        float: right;
        font-size: 20px;
        color: #3faee7;
        cursor: pointer
    }

    .panel-title .subtitle {
        float: right;
        font-size: 20px
    }

    @media(max-width:479px) {
        .panel-title {
            font-size: 15px
        }

            .pay-by-phone .panel-title a, .panel-title .subtitle, .panel-title .subtitle.pay-by-phone {
                font-size: 15px;
                margin-top: 0;
                float: none
            }
    }

    .monthPicker {
        width: 100%;
        box-sizing: border-box
    }

    .center {
        text-align: center
    }

    .row-fluid {
        width: 100%;
        *zoom: 1
    }

        .row-fluid:before, .row-fluid:after {
            display: table;
            content: "";
            line-height: 0
        }

        .row-fluid:after {
            clear: both
        }

        .row-fluid [class*="span"] {
            display: block;
            width: 100%;
            min-height: 29px;
            -webkit-box-sizing: border-box;
            -moz-box-sizing: border-box;
            box-sizing: border-box;
            float: left;
            margin-left: 2.127659574%;
            *margin-left: 2.074468085%
        }

            .row-fluid [class*="span"]:first-child {
                margin-left: 0
            }

        .row-fluid .controls-row [class*="span"] + [class*="span"] {
            margin-left: 2.127659574%
        }

        .row-fluid .span12 {
            width: 100%;
            *width: 99.946808511%
        }

        .row-fluid .span11 {
            width: 91.489361702%;
            *width: 91.436170213%
        }

        .row-fluid .span10 {
            width: 82.978723404%;
            *width: 82.925531915%
        }

        .row-fluid .span9 {
            width: 74.468085106%;
            *width: 74.414893617%
        }

        .row-fluid .span8 {
            width: 65.957446809%;
            *width: 65.904255319%
        }

        .row-fluid .span7 {
            width: 57.446808511%;
            *width: 57.393617021%
        }

        .row-fluid .span6 {
            width: 48.936170213%;
            *width: 48.882978723%
        }

        .row-fluid .span5 {
            width: 40.425531915%;
            *width: 40.372340426%
        }

        .row-fluid .span4 {
            width: 31.914893617%;
            *width: 31.861702128%
        }

        .row-fluid .span3 {
            width: 23.404255319%;
            *width: 23.35106383%
        }

        .row-fluid .span2 {
            width: 14.893617021%;
            *width: 14.840425532%
        }

        .row-fluid .span1 {
            width: 6.382978723%;
            *width: 6.329787234%
        }

        .row-fluid .offset12 {
            margin-left: 104.255319149%;
            *margin-left: 104.14893617%
        }

            .row-fluid .offset12:first-child {
                margin-left: 102.127659574%;
                *margin-left: 102.021276596%
            }

        .row-fluid .offset11 {
            margin-left: 95.744680851%;
            *margin-left: 95.638297872%
        }

            .row-fluid .offset11:first-child {
                margin-left: 93.617021277%;
                *margin-left: 93.510638298%
            }

        .row-fluid .offset10 {
            margin-left: 87.234042553%;
            *margin-left: 87.127659574%
        }

            .row-fluid .offset10:first-child {
                margin-left: 85.106382979%;
                *margin-left: 85%
            }

        .row-fluid .offset9 {
            margin-left: 78.723404255%;
            *margin-left: 78.617021277%
        }

            .row-fluid .offset9:first-child {
                margin-left: 76.595744681%;
                *margin-left: 76.489361702%
            }

        .row-fluid .offset8 {
            margin-left: 70.212765957%;
            *margin-left: 70.106382979%
        }

            .row-fluid .offset8:first-child {
                margin-left: 68.085106383%;
                *margin-left: 67.978723404%
            }

        .row-fluid .offset7 {
            margin-left: 61.70212766%;
            *margin-left: 61.595744681%
        }

            .row-fluid .offset7:first-child {
                margin-left: 59.574468085%;
                *margin-left: 59.468085106%
            }

        .row-fluid .offset6 {
            margin-left: 53.191489362%;
            *margin-left: 53.085106383%
        }

            .row-fluid .offset6:first-child {
                margin-left: 51.063829787%;
                *margin-left: 50.957446809%
            }

        .row-fluid .offset5 {
            margin-left: 44.680851064%;
            *margin-left: 44.574468085%
        }

            .row-fluid .offset5:first-child {
                margin-left: 42.553191489%;
                *margin-left: 42.446808511%
            }

        .row-fluid .offset4 {
            margin-left: 36.170212766%;
            *margin-left: 36.063829787%
        }

            .row-fluid .offset4:first-child {
                margin-left: 34.042553191%;
                *margin-left: 33.936170213%
            }

        .row-fluid .offset3 {
            margin-left: 27.659574468%;
            *margin-left: 27.553191489%
        }

            .row-fluid .offset3:first-child {
                margin-left: 25.531914894%;
                *margin-left: 25.425531915%
            }

        .row-fluid .offset2 {
            margin-left: 19.14893617%;
            *margin-left: 19.042553191%
        }

            .row-fluid .offset2:first-child {
                margin-left: 17.021276596%;
                *margin-left: 16.914893617%
            }

        .row-fluid .offset1 {
            margin-left: 10.638297872%;
            *margin-left: 10.531914894%
        }

            .row-fluid .offset1:first-child {
                margin-left: 8.510638298%;
                *margin-left: 8.404255319%
            }

        [class*="span"].hide, .row-fluid [class*="span"].hide {
            display: none
        }

        [class*="span"].pull-right, .row-fluid [class*="span"].pull-right {
            float: right
        }

    input[class*="span"] {
        float: none;
        margin-left: 0 !important;
        display: inline-block
    }

    .control-group {
        margin-bottom: 9.5px
    }

    /* Common use */
    .visually-hidden {
        border: 0;
        clip: rect(0 0 0 0);
        height: 1px;
        margin: -1px;
        overflow: hidden;
        padding: 0;
        position: absolute;
        width: 1px;
    }

        .visually-hidden.focusable:active,
        .visually-hidden.focusable:focus {
            clip: auto;
            height: auto;
            margin: 0;
            overflow: visible;
            position: static;
            width: auto;
        }

    .svg-legend {
        height: 0;
        position: absolute;
        top: -999em;
        width: 0;
    }

    .svg_icon {
        display: inline-block;
        width: 1em;
        height: 1em;
        stroke-width: 0;
        stroke: currentColor;
        fill: currentColor;
    }

    @media (min-width:480px) {
        .flex {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
        }
    }

    /* End of Common use */

    .bill-payment-container .border-box {
        box-sizing: border-box;
    }

    .full-width-container {
        padding: 26px 0;
        background: #fff !important;
    }

        .full-width-container #breadcrumbs {
            margin-left: 250px;
        }

    /* Forms */
    .form-container {
        border: 0;
        background: #f9f9f9;
        padding: 35px 50px;
        width: 635px;
        max-width: 100%;
        margin: 70px auto 50px;
    }

        .form-container .formee input[type="text"],
        .form-container .formee input[type="password"],
        .form-container .formee input[type="datetime"],
        .form-container .formee input[type="datetime-local"],
        .form-container .formee input[type="date"],
        .form-container .formee input[type="month"],
        .form-container .formee input[type="time"],
        .form-container .formee input[type="week"],
        .form-container .formee input[type="number"],
        .form-container .formee input[type="email"],
        .form-container .formee input[type="url"],
        .form-container .formee input[type="search"],
        .form-container .formee input[type="tel"],
        .form-container .formee input[type="color"],
        .form-container .formee select,
        .form-container .formee textarea {
            margin-bottom: 0;
        }

        .form-container textarea {
            min-height: 90px !important;
            width: 100%;
        }

        .form-container .field-validation-error {
            color: red;
            font-size: 14px;
        }

        .form-container .label-group {
            padding-top: 10px;
        }

        .form-container .control-label {
            font-size: 16px;
            color: #222222;
            display: inline-block;
        }

        .form-container .popup-trigger.pull-left:hover,
        .form-container .popup-trigger.pull-left:focus {
            text-decoration: none;
        }

        .form-container .info-icon-container {
            background: #6aade4;
            color: #fff;
            border-radius: 50%;
            font-size: 16px;
            overflow: hidden;
            display: inline-block;
            vertical-align: middle;
            width: 21px;
            height: 21px;
            margin-right: 10px;
        }

        .form-container .icon_info {
            display: inline-block;
            width: 25px;
            height: 25px;
            margin: -2px;
        }

        .form-container .step-num {
            font-size: 24px;
            color: #6aade4;
            margin-bottom: 20px;
        }

            .form-container .step-num span {
                display: inline-block;
                width: 35px;
                height: 35px;
                box-sizing: border-box;
                padding: 3px;
                vertical-align: middle;
                font-size: 21px;
                background: #6aade4;
                color: #fff;
                text-align: center;
                border-radius: 50%;
            }

        .form-container .step-title {
            font-size: 21px;
            margin-bottom: 30px;
        }

            .form-container .step-title.step-title-alt {
                font-size: 24px;
                color: #6aade4;
            }

        .form-container .control-group {
            position: relative;
            padding-left: 30px;
            box-sizing: border-box;
            margin-bottom: 20px;
        }

        .form-container span.required {
            position: absolute;
            left: 0;
            top: 8px;
            color: #005582;
            font-size: 25px;
        }

    .payment-methods {
        font-size: 14px;
        color: #9c9c9c;
    }

        .payment-methods > img {
            margin: 10px 0;
        }

    .has-popup-info {
        position: relative;
    }

        .has-popup-info.popup-right {
            padding-right: 40px;
        }

        .has-popup-info.popup-left {
            padding-left: 40px;
        }

        .has-popup-info .popup-trigger {
            position: absolute;
            top: 12px;
        }

        .has-popup-info.popup-right .popup-trigger {
            right: 0px;
        }

        .has-popup-info.popup-left .popup-trigger {
            left: 0px;
        }

    .form-container .form-btn {
        display: block;
        width: 100%;
        padding: 15px;
        line-height: 1em;
        border-radius: 4px;
        border: 0;
        font-size: 15px;
        text-transform: capitalize;
        text-shadow: none;
        box-shadow: none;
    }

        .form-container .form-btn:hover,
        .form-container .form-btn:focus {
            opacity: .7;
        }

    .form-container .next-btn {
        color: #fff;
    }

    .form-container .prev-btn {
        color: #7c7c7c;
        background: #efefef;
    }

    .form-container .form-btn > span {
        position: relative;
    }

    .form-container .next-btn > span {
        padding-right: 18px;
    }

    .form-container .prev-btn > span {
        padding-right: 18px;
    }

    .form-container .next-btn.no-arrow > span {
        padding-right: 0px;
    }

    .form-container .login-btn {
        background: #005582;
        color: #fff;
    }

    .form-container .next-btn {
        background: #6cace3;
    }

        .form-container .next-btn > span:before,
        .form-container .next-btn > span:after,
        .form-container .prev-btn > span:before,
        .form-container .prev-btn > span:after {
            content: "";
            position: absolute;
            display: block;
            width: 7px;
            height: 2px;
        }

        .form-container .next-btn > span:before,
        .form-container .next-btn > span:after {
            background: #fff;
        }

    .form-container .prev-btn > span:before,
    .form-container .prev-btn > span:after {
        background: #7c7c7c;
    }

    .form-container .next-btn.no-arrow > span:before,
    .form-container .next-btn.no-arrow > span:after {
        display: none;
    }

    .form-container .next-btn > span:before {
        top: 50%;
        right: 0;
        margin-top: -3px;
        -webkit-transform: rotate(45deg);
        -moz-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        -o-transform: rotate(45deg);
    }

    .form-container .next-btn > span:after {
        top: 50%;
        right: 0;
        margin-top: 1px;
        -webkit-transform: rotate(-45deg);
        -moz-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
        -o-transform: rotate(-45deg);
    }

    .form-container .prev-btn > span:before {
        top: 50%;
        left: 0;
        margin-top: -3px;
        -webkit-transform: rotate(-45deg);
        -moz-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
        -o-transform: rotate(-45deg);
    }

    .form-container .prev-btn > span:after {
        top: 50%;
        left: 0;
        margin-top: 1px;
        -webkit-transform: rotate(45deg);
        -moz-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        -o-transform: rotate(45deg);
    }

    .form-complete-sign {
        position: relative;
        display: block;
        width: 100px;
        height: 100px;
        margin: 20px auto;
        border-radius: 50%;
        background: #6cace3;
    }

        .form-complete-sign:before,
        .form-complete-sign:after {
            content: "";
            position: absolute;
            display: block;
            height: 7px;
            top: 50%;
            left: 50%;
            background: #fff;
        }

        .form-complete-sign:before {
            width: 35px;
            margin-left: -12px;
            margin-top: -1px;
            -webkit-transform: rotate(-45deg);
            -moz-transform: rotate(-45deg);
            -ms-transform: rotate(-45deg);
            -o-transform: rotate(-45deg);
        }

        .form-complete-sign:after {
            width: 15px;
            margin-left: -17px;
            margin-top: 4px;
            -webkit-transform: rotate(45deg);
            -moz-transform: rotate(45deg);
            -ms-transform: rotate(45deg);
            -o-transform: rotate(45deg);
        }

    .payment-complete .text-size-1 {
        font-size: 14px;
        color: #9c9c9c;
    }

        .payment-complete .text-size-1 p {
            margin-bottom: 12px;
        }

    .payment-complete .text-size-2 {
        font-size: 21px;
        font-weight: bold;
    }

    .payment-complete .text-size-3 {
        font-size: 24px;
    }

    .payment-complete .margin-1 {
        margin-bottom: 40px;
    }

    @media (max-width:767px) {
        .form-container {
            padding: 35px 20px;
        }

            .form-container .row-fluid > [class*="span"] {
                width: 100%;
                margin-left: 0;
            }

            .form-container .row-fluid > .control-group > [class*="span"] {
                width: 50%;
                margin-left: 0;
            }

            .form-container .control-label {
                font-size: 15px;
                line-height:16px;
            }

            .form-container .info-icon-container {
                margin-left: 5px;
            }

        .control-group.mobile-custom-row {
            position:relative;
            padding-bottom: 31px;
        }
        .control-label.mobile-custom-label {
            position: absolute;
            left: 30px;
            bottom: 0;
        }
        @media (max-width:360px) {
            .control-label.mobile-custom-label {
                bottom: -5px;
            }
        }
    }

    /* Addition to JQuery Steps Plugin */
    .wizard > .content > .title,
    .tabcontrol > .content > .title {
        position: absolute;
        left: -999em;
    }

    .wizard > .steps .current-info,
    .tabcontrol > .steps .current-info,
    .wizard > .steps .number,
    .tabcontrol > .steps .number {
        position: absolute;
        left: -999em;
    }

    .wizard {
        position: relative;
    }

        .wizard .steps {
            position: absolute;
            top: -122px;
            left: 0;
            width: 100%;
        }

            .wizard .steps > ul {
                position: relative;
                width: 629px;
                max-width: 100%;
                margin: 20px auto;
                padding: 0;
                box-sizing: border-box;
                list-style: none !important;
            }

                .wizard .steps > ul > li {
                    width: 25%;
                    padding: 0 2px;
                    float: left;
                    box-sizing: border-box;
                }

                    .wizard .steps > ul > li a {
                        display: block;
                        padding: 10px;
                        text-align: center;
                        border-top: 2px solid #dedede;
                        color: #c9c9c9;
                        font-size: 11px;
                        text-transform: uppercase;
                    }

                    .wizard .steps > ul > li.current a,
                    .wizard .steps > ul > li.done a {
                        border-top: 2px solid #6aade4;
                        color: #6aade4;
                        font-weight: bold;
                    }

    .actions ul {
        margin: 0;
        padding: 0 0 0 30px;
        box-sizing: border-box;
        width: 100%;
        list-style: none !important;
    }

        .actions ul li {
            width: 50%;
            box-sizing: border-box;
            text-align: center;
        }

            .actions ul li:nth-child(1) {
                padding-right: 10px;
                float: left;
            }

            .actions ul li:nth-child(2) {
                padding-left: 10px;
                float: right;
            }

            .actions ul li:nth-child(3) {
                padding-left: 10px;
                float: right;
            }

            .actions ul li.disabled {
                display: none;
            }

            .actions ul li a {
                display: block;
                padding: 15px;
                line-height: 1em;
                border-radius: 4px;
                border: 0;
                font-size: 15px;
                font-weight: bold;
                text-transform: capitalize;
                text-shadow: none;
                box-shadow: none;
            }

                .actions ul li a:hover,
                .actions ul li a:focus {
                    opacity: .7;
                    text-decoration: none;
                }

            .actions ul li:nth-child(1) a {
                color: #fff;
                background: #6aade4;
            }

            .actions ul li:nth-child(2) a {
                color: #fff;
                background: #003f72;
            }

            .actions ul li:nth-child(3) a {
                color: #fff;
                background: #003f72;
            }

            .actions ul li a span {
                position: relative;
            }

            .actions ul li:nth-child(1) a span:before,
            .actions ul li:nth-child(1) a span:after {
                content: "";
                position: absolute;
                left: -20px;
                top: 50%;
                display: block;
                width: 7px;
                height: 2px;
                background: #fff;
            }

            .actions ul li:nth-child(1) a span:before {
                margin-top: -3px;
                -webkit-transform: rotate(-45deg);
                -moz-transform: rotate(-45deg);
                -ms-transform: rotate(-45deg);
                -o-transform: rotate(-45deg);
            }

            .actions ul li:nth-child(1) a span:after {
                -webkit-transform: rotate(45deg);
                -moz-transform: rotate(45deg);
                -ms-transform: rotate(45deg);
                -o-transform: rotate(45deg);
            }

            .actions ul li:nth-child(2) a span:before,
            .actions ul li:nth-child(2) a span:after {
                content: "";
                position: absolute;
                right: -20px;
                top: 50%;
                display: block;
                width: 7px;
                height: 2px;
                background: #fff;
            }

            .actions ul li:nth-child(2) a span:before {
                margin-top: -2px;
                -webkit-transform: rotate(45deg);
                -moz-transform: rotate(45deg);
                -ms-transform: rotate(45deg);
                -o-transform: rotate(45deg);
            }

            .actions ul li:nth-child(2) a span:after {
                margin-top: 2px;
                -webkit-transform: rotate(-45deg);
                -moz-transform: rotate(-45deg);
                -ms-transform: rotate(-45deg);
                -o-transform: rotate(-45deg);
            }


    /* More Info Popups*/
    #cboxLoadedContent {
        border: 0;
        background: #fff;
    }

    .info-popup {
        background: #f9f8f8;
        border: 1px solid #c6c6c6;
        padding: 50px;
    }

    .sa-codes-carousel-container {
        display: none;
        position: relative;
    }

    .carousel-active .sa-codes-carousel-container {
        display: block;
    }

    .carousel-active .sa-codes-triggers {
        display: none;
    }

    .sa-codes-main-container {
        width: 700px;
        margin: 0 auto;
    }

    .sa-codes-triggers-container > h2 {
        font-size: 24px;
        color: #6cace3;
        margin-bottom: 15px;
    }

        .sa-codes-triggers-container > h2 .info-icon-container {
            background: #6cace3;
            color: #fff;
            border-radius: 50%;
            font-size: 16px;
            overflow: hidden;
            display: inline-block;
            width: 31px;
            height: 31px;
            margin-right: 10px;
            margin-bottom: -5px;
        }

        .sa-codes-triggers-container > h2 .icon_info {
            display: inline-block;
            width: 37px;
            height: 37px;
            margin: -3px;
        }

    .sa-codes-triggers {
        margin: 0 -5px;
    }

        .sa-codes-triggers > h3 {
            color: #222222;
            font-size: 18px;
            margin: 5px 5px 15px;
        }

    .sa-codes-trigger-item {
        float: left;
        width: 350px;
        height: 240px;
        padding: 5px;
        box-sizing: border-box;
    }

        .sa-codes-trigger-item a {
            position: relative;
            display: block;
            width: 100%;
            height: 100%;
            box-sizing: border-box;
            font-size: 18px;
            color: #222222;
            text-align: center;
            background: #fff;
            border: 1px solid #cdcdcd;
            border-bottom: 2px solid #cdcdcd;
        }

            .sa-codes-trigger-item a span {
                display: block;
                width: 100%;
                height: 100%;
                box-sizing: border-box;
                padding-top: 190px;
            }

            .sa-codes-trigger-item a .bg-hold {
                opacity: .3;
                box-sizing: border-box;
                background-repeat: no-repeat;
                background-position: 50% 50%;
                background-size: cover;
            }

            .sa-codes-trigger-item a .text-hold {
                position: absolute;
                top: 0;
                left: 0;
            }

            .sa-codes-trigger-item a:hover,
            .sa-codes-trigger-item a:focus {
                border-bottom: 2px solid #6cace3;
                text-decoration: none;
            }

                .sa-codes-trigger-item a:hover .bg-hold,
                .sa-codes-trigger-item a:focus .bg-hold {
                    opacity: .9;
                }

    .slick-slide {
        outline: none;
    }

    .sa-codes-carousel h3 {
        color: #222222;
        font-size: 21px;
        padding-right: 30px;
    }

    .close-carousel {
        position: absolute;
        top: 42px;
        right: 15px;
        z-index: 1;
        padding: 10px;
    }

        .close-carousel:before,
        .close-carousel:after {
            content: "";
            display: block;
            width: 14px;
            height: 2px;
            background: #818898;
        }

        .close-carousel:before {
            -webkit-transform: rotate(45deg);
            -moz-transform: rotate(45deg);
            -ms-transform: rotate(45deg);
            -o-transform: rotate(45deg);
        }

        .close-carousel:after {
            margin-top: -2px;
            -webkit-transform: rotate(-45deg);
            -moz-transform: rotate(-45deg);
            -ms-transform: rotate(-45deg);
            -o-transform: rotate(-45deg);
        }

    /*** Accordion ***/
    .panel {
        background: #f2f2f2;
        border: 1px solid #c7c7c7;
        border-radius: 2px;
        margin-bottom: 5px;
    }

    .accordion-theme-alt {
        border-top: 1px solid #ebebeb;
    }

        .accordion-theme-alt .panel {
            background: #fff;
            border: 0;
            border-bottom: 1px solid #ebebeb;
            border-top: 1px solid #fafafa;
            border-radius: 0px;
            margin-bottom: 0px;
        }

    .panel-title {
        color: #222222;
        font-size: 20px;
        font-weight: bold;
        padding: 20px;
    }

        .panel-title a {
            color: #222222;
            display: block;
            position: relative;
            padding-right: 30px;
            outline: none;
        }

            .panel-title a:hover,
            .panel-title a:focus {
                text-decoration: none;
            }

        .panel-title img {
            margin-right: 10px;
        }

        .panel-title .arrow {
            position: absolute;
            right: 0;
            top: 20px;
            display: block;
        }

    .accordion-theme-alt .panel-title .arrow {
        top: 12px;
    }

    .panel-title .initial-state .arrow {
        -webkit-transform: rotate(180deg) translate(50%, 0px);
        -moz-transform: rotate(180deg) translate(50%, 0px);
        -ms-transform: rotate(180deg) translate(50%, 0px);
        -o-transform: rotate(180deg) translate(50%, 0px);
    }

    .panel-title .collapsed .arrow {
        -webkit-transform: rotate(180deg) translate(50%, 0px);
        -moz-transform: rotate(180deg) translate(50%, 0px);
        -ms-transform: rotate(180deg) translate(50%, 0px);
        -o-transform: rotate(180deg) translate(50%, 0px);
    }

    .panel-title .arrow:before,
    .panel-title .arrow:after {
        content: "";
        width: 18px;
        height: 2px;
        background: #005582;
        display: block;
    }

    .panel-title .arrow:before {
        -webkit-transform: rotate(45deg);
        -moz-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        -o-transform: rotate(45deg);
    }

    .panel-title .arrow:after {
        margin-top: -2px;
        margin-left: -13px;
        width: 19px;
        -webkit-transform: rotate(-45deg);
        -moz-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
        -o-transform: rotate(-45deg);
    }

    .accordion-theme-alt .panel-title .arrow:before {
        width: 13px;
    }

    .accordion-theme-alt .panel-title .arrow:after {
        width: 14px;
        margin-left: -9px;
    }

    .panel-body {
        padding: 0 20px 20px;
    }

    /* Online Payments */
    .pay-online .panel-title {
        font-size: 22px;
    }

    .online-payments {
        width: 436px;
        margin: 0 auto;
        max-width: 100%;
    }

        .online-payments > div {
            background: #fff;
            border: 1px solid #c6c6c6;
            padding: 10px;
            margin: 5px 0;
            font-size: 14px;
            box-sizing: border-box;
        }

    @media (min-width:480px) {
        .online-payments > div {
            width: 48%;
        }

            .online-payments > div:first-child {
                margin: 5px 2% 5px 0;
            }

            .online-payments > div:last-child {
                margin: 5px 0 5px 2%;
            }
    }

    .online-payments > div h3 {
        font-size: 18px;
        color: #222222;
        text-align: center;
    }

    /* Pay by phone box */
    .pay-by-phone .panel-title a {
        float: right;
        font-size: 20px;
        color: #3faee7;
        margin-top: 8px;
    }

    @media (max-width:479px) {
        .panel-title {
            font-size: 15px;
        }

        .pay-by-phone .panel-title a {
            font-size: 15px;
            margin-top: 0;
            margin-left: 52px;
            float: none
        }
    }

    /* test note for merge test */

    /* Datepicker */
    .monthPicker {
        width: 100%;
        box-sizing: border-box;
    }

    /*** END of BILL PAY ***/


    @media (min-width:64em){
        .place-holder-height{
            height: 87px;
        }
    }

    /* Doctor Details Reviews more button */
    .ds-comments-more-link {
        display: inline-block;
        margin: 0;
        padding: 15px 16px;
        font-size: 15px;
        border-radius: 4px;
        text-align: center;
        cursor: pointer;
        overflow: visible;
        border: 1px solid #0a4778;
        color: #fff;
        background: #003f72;
        border: 1px solid #003f72;
        font-weight: 700;
        line-height: 1em;
    }

/* Style content embedded into external mobile & web apps */
.embedded {
    font-family: Montserrat, Calibri, Arial, sans-serif;
}

    .embedded h2 {
        font-size: 24px;
        color: #000;
    }

    .embedded h3 {
        font-size: 20px;
        font-weight: 500;
        color: #000;
    }

    .embedded .content-box {
        font-size: 15px;
    }

    .embedded .ds-comments-more-link {
        background: #237ac2;
        border: 2px solid #237ac2;
        border-radius: 10px;
        box-shadow: 0 0 5px rgba(0, 0, 0, 0.251);
        line-height: 20px;
        padding: 10px 46px;
    }

    /* Button Links in content */
    .content-links > span {
        display: block;
        margin-bottom: 15px;
        text-align: center;
    }

    @media (min-width: 48em) {
        .content-links > span {
            text-align: left;
        }
    }

    /* FIND A LOCATION/DOCTOR SEARCH BOX */
#locations-location, #doctors-location, #events-classes-address {
    display: block;
}

#locations-uselocation, #doctors-uselocation, #events-classes-uselocation {
    position: absolute;
}

    /* CONTENT BOX CHANGES */
    .content-box .content-box-info.horizontal-padding h1,
    .content-box .content-box-info.horizontal-padding h2,
    .content-box .content-box-info.horizontal-padding h3,
    .content-box .content-box-info.horizontal-padding h4,
    .content-box .content-box-info.horizontal-padding h5{
        color:#282828;
    }

    .content-box .content-box-info.horizontal-padding a{
        font-weight: 700;
    }
   



/* Open Scheduling colorbox */
#open-scheduling-widget iframe {
    display: block;
}

/* Sanford Research Website */
.mb-10 {
    margin-bottom: 10px !important;
}
.carousel-container-randomize {
    margin-bottom: 20px !important;
    padding-bottom: 40px;
}
.tab-slider-circle-image {
    padding: 0 30px;
}

.tab-slider-circle-image-holder {
    background-size: cover;
    display: inline-block;
    width: 200px;
    height: 200px;
    border-radius: 50%;
}

.tab-slider-circle-image-content {
    padding: 25px 45px 15px;
}

.lab-container {
    display: flex;
    flex-wrap: wrap;    
}

.lab {
    width: 100%;
    background: #f1f1f1;
    position: relative;
    padding: 110px 20px 20px;
    margin: 0 2% 1.5em;
    margin-bottom: 130px;
}

    .lab a {
        text-decoration: none !important;
        color: #003f72 !important;
    }

    .lab a:hover {
        text-decoration: underline !important;
    }

.lab-title {
    border-bottom: 1px solid #e1e1e1;
    border-bottom-width: 1px;
    border-bottom-style: solid;
    border-bottom-color: rgb(225, 225, 225);
    padding-bottom: 10px;
    margin-bottom: 10px;
}

.lab-title p {
    color: #282828;
}

.lab-image {
    top: -90px;
    position: absolute;
    left: 0;
    width: 100%;
}

    .lab-image > div {
        margin: 0 auto;
        border-radius: 50%;
        overflow: hidden;
        width: 180px;
    }

.lab-image-holder {
    display: block;
    height: 180px;
}

.lab-image div .lab-image-holder {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 50% 0;
}

.lab h3 {
    color: #003f72 !important;
    margin: 0;
    font-size: 20px;
}

.rs-heading p:last-of-type {
    margin-bottom: 0px;
}

.hide-show-all-btn .show-all-btn {
    display: none;
}

@media (min-width:40em) {
    .lab {
        width: 45.33%;
    }
}

@media (min-width:64em) {
    .lab {
        width: 29.33%;
    }
}

@media (min-width:80em) {
    .lab {
        width: 20.33%;
    }
}


.tabs-container .item-date {
    width: 82px;
    height: 82px;
    text-align: center;
    padding: 0 12px;
    margin-right: 15px;
    background: #003f72;
    border-radius: 50%;
    color: #fff;
    text-transform: uppercase;
    font-size: 14px;
}

@media (min-width: 80em) {
    .tabs-container .item-date {
        margin-right: 40px;
    }
}
.site-theme-1 .tabs-container .item-date {
    background: #ed1990;
}

.tabs-container .item-date > div {
    display: table;
    width: 100%;
    height: 100%;
}

    .tabs-container .item-date > div > div {
        display: table-cell;
        vertical-align: middle;
    }

        .tabs-container .item-date > div > div > span:first-child {
            font-weight: bold;
            font-size: 38px;
            line-height: 1em;
        }

        .tabs-container .item-date > div > div > span:last-child {
            font-weight: 600;
            line-height: 1em;
            font-size: 19px;
        }

#events-classes-results .l-item .title {
    font-size: 20px;
    margin-bottom: .5em;
}

@media (min-width:64em) {
    #events-classes-results .l-item .title {
        font-size: 30px;
        margin-bottom: .5em;
    }
}

.event-item-row {
    margin-bottom: 0.5em;
}

    .event-item-row > span {
        margin-right: 1em;
    }

@media (max-width:39.99em) {
    .event-item-row > span {
        display: block;
        margin-right: 0;
        margin-bottom: 0.5em;
    }

    .event-item-row span:last-child {
        margin-bottom: 0;
    }
}

/*Overwriting image styles for live person plugin*/
.lp_header img {
    max-width: none !important;
}

/* Play button for video search page */
.image-holder .play-button {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    position: absolute;
    width: 60px;
    height: 100px;
}

.image-holder .play-button > circle {
    box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
    transition: all 0.3s cubic-bezier(.25,.8,.25,1);
    opacity: 0.8;
}

.image-holder:hover .play-button > circle {
    opacity: 1;
    box-shadow: 0 14px 28px rgba(0,0,0,0.25), 0 10px 10px rgba(0,0,0,0.22);
}

@media (min-width: 80em) {
    .video-list .result-item-view-3.squared-image .coveo-result-list-container {
        padding-top: 0px;
    }
}

.video-list .result-item-view-3.squared-image .coveo-result-list-container {
    padding-top: 0px;
}

/* OccMed */
.occmed .theme-1 {
    background: #ECECEC;
    border-top: 20px solid #B2292E;
}

.occmed #cboxOverlay {
    background: #000;
    opacity: 0.55 !important;
    filter: alpha(opacity = 55);
}

.occmed #cboxClose {
    background: #B2292E;
}

.occmed .header-links a.get-care {
    background: none;
}

.occmed .cm-menu {
    background: #ECECEC;
}

.occmed .header-search .CoveoSearchInterface {
    background: none;
}

.occmed .magic-box-input {
    height: 42px !important;
    border-radius: 4px 0 0 4px;
}

.occmed .magic-box-input input {
    height: 42px !important;
    border-radius: 4px 0 0 4px;
}

.occmed .magic-box {
    height: 44px;
    border-radius: 4px;
}

.occmed .CoveoSearchButton {
    height: 44px;
    width: 47px;
    background: #003C71;
    border: 1px solid #003C71;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
}

.occmed h3.title-color-1 {
    color: #B2292E;
}

.occmed h3 a {
    color: #003F72;
}

.occmed .callouts h3 a {
    color: #B2292E;
}

.occmed .callout-links li a {
    text-decoration: underline;
}

.occmed .callout-links .btn {
    margin-top: 15px;
}

.occmed .callout-links h3 {
    color: #282828;
}

.occmed .callout-links h3 a {
    color: #282828;
}

.occmed .header-links a {
    color: #B2292E;
}

.occmed .header-links svg {
    color: #B2292E;
}

.occmed .theme-gray {
    background: #ECECEC;
}

.occmed .slick-dots li.slick-active button {
    border: 1px solid #003C71;
    background: #003C71;
}

.occmed .rs-heading .btn {
    width: 100%;
}

.occmed .rs-heading {
    background: #B2292E;
}

.occmed .theme-2 {
    background: #6aade4;
}

.occmed .rail-banner .theme-2 .btn {
    color: #003C71;
    background: #ECECEC;
    border: 1px solid #ECECEC;
}

.occmed .slick-current .slider-nav-item:before, .occmed .slick-current .slider-nav-item:after {
    background: #003C71;
}

.occmed .carousel-container h3 {
    color: #003C71;
}

.occmed .slider-for-item-content a {
    background: #003C71;
    color: #fff;
}

.occmed .rs-heading .btn.register-btn {
    background: #ECECEC;
    border: 1px solid #DBDBDB;
    color: #003C71;
}

.occmed .rs-heading a {        
    border: 1px solid #fff !important;
}

.occmed .rail-navigation .title {
    background: #003C71;
    color: #fff;
    text-decoration: none;
}

.occmed .rail-navigation .cm-menu {
    background: #FFFFFF 0% 0% no-repeat padding-box;
    border-top: none;
    border-right: 1px solid #E1E1E1;
    border-bottom: 1px solid #E1E1E1;
    border-left: 1px solid #E1E1E1;
    opacity: 1;
}

.occmed .rail-banner .rail-content-wrap .content {
    background-color: #B2292E;
}

.occmed .svg-theme-10 {
    background: #fff;
}

.occmed .svg-icon-container svg.icon {
    width: 70px;
    height: 70px;
    margin: 0px;
}

.occmed .get-care-now-module h2 {
    color: #B2292E;
}

.occmed .site-search .search-trigger {
    background: none;
}

.occmed .main-nav .toggle-menu {
    background: none;
}

.occmed .toggle-menu:before {
    background: #003C71 !important;
}

.occmed .toggle-menu:after {
    background: #003C71 !important;
}

.occmed .main-banner-links li a:hover, .occmed .main-banner-links li a:focus {
    color: #003C71;
}

.occmed .search-trigger {
    color: #003C71 !important;
}

.occmed .CoveoSearchButton:hover {
    background: #B2292E;
}

.occmed .error-reason {
    color: #B2292E;
}

.occmed .footer h4 {
    color: #282828;
}

@media (min-width: 1024px) {
    .occmed .site-header {
        box-shadow: 0px 3px 6px #00000029;
    }

    .occmed .site-search .inner {
        top: 93px;
    }
}

.occmed .btn:not(.btn-transparent), .occmed a.btn:not(.btn-transparent) {
    color: #fff;
    background: #003f72;
    border: 1px solid #003f72;    
}

.occmed .magic-box .magic-box-clear {
    height: 42px;
    line-height: 42px;
}

.occmed .callouts .callout-with-links-and-image h3 {
    color: #282828;
}

.occmed .callouts .callout-with-links-and-image h3 a {
    color: #282828;
}

.occmed .section-nav .cm-menu > li > a, .occmed .section-nav .cm-menu > li > div > a {
    color: #282828;
    font-weight: 800;
    padding-left: 20px;
}

.occmed .section-nav .cm-menu a {
    color: #093e73;
    font-weight: 600;
    font-size: 15px;
    padding-left: 55px;
}

.occmed .section-nav .cm-menu a {
    color: #093e73;
    font-weight: 600;
    font-size: 15px;
    padding-left: 55px;
}

.occmed .main-nav .cm-menu li a > span {
    color: #003C71;
    font-weight: bold;
}

.occmed .cm-menu li a:hover, .occmed .cm-menu li a:focus {
    color: #003C71;
}

.occmed .section-nav .cm-menu a.current-page {
    color: #282828;
    background: #ededed;    
}

.occmed .section-nav .cm-menu a:hover {
    color: #282828;
}

.occmed .footer-links .expandable-hidden {
    height: auto;
}

.occmed .footer-links .expandable {
    border-bottom: 0;
}

.occmed .footer-heading {
    display: none;
}

@media (min-width: 80em) {
    .occmed .size-1 .main-banner-text {
        bottom: 85px;
    }
}

@media only screen and (min-width: 1460px) {
    .occmed .site-search {
        margin: 0;
        min-width: 355px;
    }
}

@media only screen and (min-width: 1460px) {
    .occmed .header-search .CoveoSearchInterface {
        min-width: 450px;
    }
}

@media (max-width: 63.99em) {
    .occmed .header-links {
        padding: 5px 0px;
    }

    .occmed .my-chart-link {
        background: #003C71;
    }

    .occmed .header-links {
        background: #ECECEC;
    }

    .occmed .main-nav .cm-menu {
        margin-top: 20px;
    }

    .occmed .main-nav .cm-menu > li:first-child {
        border-top: none !important;
    }

    .occmed {
        border-top: none;
    }

    .occmed .site-search .inner {
        top: 7.125em;
    }

    .occmed .footer-middle-inner .footer-links {
        padding-top: 25px;
    }
}

@media (min-width: 40em) {
    .occmed .main-banner-text {
        margin-top: 45px;
    }
}

.gl-full-width-two-column .mob-flex {
    column-gap: 5px;
}

.gl-full-width-two-column-item {
    padding: 100px 0;
    flex: 1 1 0;
}

.gl-full-width-two-column-item:nth-child(odd) {
   background:#f2f2f2;
}

.gl-full-width-two-column-item:nth-child(even) {
   background:#e7e7e7;
}

.gl-full-width-two-column-item p {
    padding: 0 100px;
}

.gl-full-width-two-column-item a {
    display: inline-block;
    margin-top: 15px;
}

.gl-full-width-two-column {
    position: relative;
}

.gl-full-width-two-column h3 {
    padding: 0 15px;
}

@media (max-width: 1400px) {
    
    .gl-full-width-two-column-item p {
        padding: 0 35px;
    }
}

@media (max-width: 63.99em) {
    .gl-full-width-two-column .mob-flex {
        display: block;
    }

    .gl-full-width-two-column-item {
        width: 100%;
    }
}

.callout-with-links-and-image .grid-6 {
    align-self: center;
}

.callout-with-links-and-image img {
    padding: 15px 0px;
}

.search-card {
    display: flex;
    border: 1px solid #E1E1E1;        
}

search-card a {
    text-decoration: underline;
}

.search-card h3 {
    font-size: 20px;
    margin-bottom: 5px;
}

.search-card .provider-details {
    width: 50%;
    background: #f1f1f1;
    padding: 15px;
}

.search-card .location-details {    
    padding: 15px;
    width: 50%;
}

.search-card .provider-details div {
    align-self: center;
}

.search-card .provider-details div p {
    margin-bottom: 5px;
}

.search-card .provider-details div .rating-placeholder {
    margin-bottom: 5px;
}

.search-card .item-image {
    margin-right: 20px;
}

.search-card .item-image .image-holder {
    display: inline-block;    
    width: 188px;
    height: 188px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 50% 0;
    border-radius: 50%;
}
.search-card ul {
    margin-top: 15px;
    padding-left: 0;
}

.search-card .additional-locations {
    padding-top: 15px;
    float: right;
}

.search-card .locations div {
    border-bottom: 1px #E1E1E1 solid;
    padding: 15px 0px;
    list-style: none; 
}
.search-card .locations div:nth-child(1) {
    border-top: 1px #E1E1E1 solid;
    border-bottom: 1px #E1E1E1 solid;
       
}

.search-card .locations div p {
    margin-bottom: 0px;
}
.search-card .locations div p span {
    float: right;
}

.search-card .ctas {
    display: flex;
}

.search-card .ctas a {
    font-size: 14px;
    width: 50%;
}

.search-card .ctas a.btn:nth-child(1) {    
    margin-right: 5px;
}

.CoveoResultList .search-card .btn:hover {
    color: #fff;
}

.CoveoResultList .search-card .btn:focus {
    color: #fff;
}

/* Search Card Media Queries */
@media screen and (min-width:1300px) and (max-width:1500px) {
    .search-card .ctas {
        flex-wrap: wrap;
    }

    .search-card .ctas a {        
        margin-bottom: 5px;
        width: 100%;
    }

        .search-card .ctas a.btn:nth-child(1) {
            margin-right: 0px;
        }
}
@media only screen and (max-width: 1300px) {
    .search-card {
        display: block;
    }

        .search-card .provider-details {
            width: 100%;
        }

        .search-card .location-details {
            width: 100%;
        }
}

@media only screen and (max-width: 767px) {
    .search-card .provider-details {
        text-align: center;
    }

    .search-card .ds-stars {
        margin: 0 auto;
    }

    .search-card {
        margin: 105px 0px;
    }

    .search-card .item-image {
        margin-top: -105px;
    }

    .search-card .item-image {
        margin-right: 0px;
    }
}

@media only screen and (max-width: 570px) {
    .search-card .ctas {
        display: block;
    }

        .search-card .ctas a {
            width: 90%;
        }

        .search-card .ctas a.btn:nth-child(1) {
            margin-right: 0px;
            margin-bottom: 5px;
        }
}

.gl-for-email-and-phone-container {
    display: flex;
    flex-wrap: wrap;
    padding: 40px 0px;
}

.gl-for-email-and-phone-item {
    background: #f1f1f1;
    margin: 0 2% 1.5em;
    padding: 110px 20px 20px;
    position: relative;
    position: relative;
    width: 100%;
}

    .gl-for-email-and-phone-item a {
        text-decoration: none;
    }

    .gl-for-email-and-phone-item .image {
        left: 0;
        position: absolute;
        top: -90px;
        width: 100%;
    }

        .gl-for-email-and-phone-item .image div {
            border-radius: 50%;
            margin: 0 auto;
            overflow: hidden;
            width: 180px;
        }

            .gl-for-email-and-phone-item .image div .image-holder {
                background-repeat: no-repeat;
                background-size: cover;
                background-position: 50% 0;
                display: block;
                height: 180px;
            }

@media (min-width:40em) {
    .gl-for-email-and-phone-item {
        width: 45.33%;
    }
}

@media (min-width:64em) {
    .gl-for-email-and-phone-item {
        margin-bottom: 130px;
        width: 29.33%;
    }
}

@media (min-width:80em) {
    .gl-for-email-and-phone-item {
        width: 20.33%;
    }
}

/* Header Search */
.site-theme-1 .CoveoSearchInterface,
.site-theme-2 .CoveoSearchInterface {
    background: none;
}

@media (max-width: 480px) {
    .site-search .CoveoSearchInterface .CoveoSearchbox {
        margin-right: 0px;
    }
}

@media only screen and (min-width: 1460px) {
    .site-theme-2 .header-search .CoveoSearchInterface {
        min-width: 450px;
    }
}

.site-theme-1 .CoveoSearchbox .CoveoSearchButton {
    height: 44px;
    width: 47px;
    background: #0a4778;
    border: 1px solid #0a4778;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
}

.site-theme-1 .search-results-top-filter .CoveoSearchButton {
    color: #003f72;
    background: #fff;
    border: 1px solid #0a4778;
}

.site-theme-2 .CoveoSearchbox .CoveoSearchButton {
    height: 44px;
    width: 47px;
    background: #6aade4;
    border: 1px solid #6aade4;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
}

.site-search .CoveoSearchbox .CoveoSearchButton {
    background: #237ac2;
    border: 1px solid #237ac2;
    display: flex;
    align-items: center;
    padding-inline: 0.75em;
    width: auto;
}

.site-theme-1 .filter-footer .CoveoSearchButton,
.site-theme-2 .filter-footer .CoveoSearchButton {
    border-radius: 4px;
}

@media (min-width: 64em) {
    .site-search .CoveoSearchbox .CoveoSearchButton .coveo-search-button {
        display: flex;
        align-items: center;
        gap: 0.75em;
        margin-inline: 0.25em 1em;
    }

    .site-search .CoveoSearchbox .CoveoSearchButton .coveo-search-button:after {
        content: "Search";
        font-size: 17px;
    }
}

.site-search .CoveoSearchbox .magic-box .magic-box-input input {
    height: 44px;
}

.site-theme-1 .CoveoSearchbox .magic-box,
.site-theme-2 .CoveoSearchbox .magic-box {
    border-radius: 4px;
    height: 44px;
}

@media (max-width: 63.99em) {
    .site-theme-1 .CoveoSearchbox .magic-box,
    .site-theme-2 .CoveoSearchbox .magic-box {
        border-radius: 4px;
    }
}

.site-theme-1 .CoveoSearchbox .magic-box .magic-box-input,
.site-theme-1 .CoveoSearchbox .magic-box .magic-box-input input,
.site-theme-2 .CoveoSearchbox .magic-box .magic-box-input,
.site-theme-2 .CoveoSearchbox .magic-box .magic-box-input input {
    height: 42px;
    border-radius: 4px 0 0 4px;
}

.site-theme-1 .CoveoSearchbox .magic-box .magic-box-clear,
.site-theme-2 .CoveoSearchbox .magic-box .magic-box-clear {
    height: 42px;
    line-height: 42px;
}

.site-theme-1 .search-results-top-filter .magic-box .magic-box-clear,
.site-theme-2 .search-results-top-filter .magic-box .magic-box-clear {
    margin-top: 4px;
}

.site-theme-1 .CoveoSearchbox .magic-box .magic-box-suggestions .coveo-top-field-suggestion-header,
.site-theme-1 .CoveoSearchbox .magic-box .magic-box-suggestions .coveo-icon-omnibox-result-list,
.site-theme-2 .CoveoSearchbox .magic-box .magic-box-suggestions .coveo-top-field-suggestion-header,
.site-theme-2 .CoveoSearchbox .magic-box .magic-box-suggestions .coveo-icon-omnibox-result-list,
.site-theme-1 .CoveoSearchbox .magic-box .magic-box-suggestions .coveo-caption,
.site-theme-1 .CoveoSearchbox .magic-box .magic-box-suggestions .coveo-caption,
.site-theme-1 .CoveoSearchbox .magic-box .magic-box-suggestions .coveo-icon-omnibox-result-lis,
.site-theme-2 .CoveoSearchbox .magic-box .magic-box-suggestions .coveo-caption,
.site-theme-2 .CoveoSearchbox .magic-box .magic-box-suggestions .coveo-icon-omnibox-result-list {
    display: none;
}

.site-theme-1 .CoveoSearchbox .magic-box .magic-box-suggestions a,
.site-theme-2 .CoveoSearchbox .magic-box .magic-box-suggestions a {
    text-decoration: none;
    color: inherit;
}

    .site-theme-1 .CoveoSearchbox .magic-box .magic-box-suggestions a *,
    .site-theme-2 .CoveoSearchbox .magic-box .magic-box-suggestions a * {
        display: inline-block;
        vertical-align: bottom;
    }

@media (max-width: 63.99em) {
    .site-theme-1 .CoveoSearchbox .CoveoSearchButton {
        background: #ed1990;
        border: 1px solid #ed1990;
    }

    .site-theme-2 .CoveoSearchbox .CoveoSearchButton {
        background: #093e73;
        border: 1px solid #093e73;
    }
}

.coveo-search-button-svg {
    color: #fff !important;
}

.mobile-cta {
    display: flex;
    padding: 20px 0px;
}

.mobile-cta-content {
    display: flex;
    flex-direction: column;
    padding: 15px;
    background: #003c72;
    color: #fff;
    width: 67%;
}

.mobile-cta-image {
    background-size: cover;
    background-position: center;
    width: 33%;
}

.mobile-cta-content .title {
    color: #fff;
    font-size: 16px;
    margin-bottom: 3px;
}

.mobile-cta-content .btn {
    background: #237ac2 !important;
    width: fit-content;
    padding: 8px 30px 8px 8px;
}

    .mobile-cta-content .btn.btn-has-icon:after {
        right: 15px;
    }

    .mobile-cta-content .btn.btn-has-icon:before {
        right: 10px;
    }

    .mobile-cta-content h3 {
        font-size: 16px;
    }

    .mobile-cta-content p {
        font-size: 15px;
        margin-bottom: 4px;
    }

@media only screen and (min-width: 768px) {
    .mobile-cta {
        display: none;
    }
}

.CoveoSearchButton:hover .coveo-magnifier-circle-svg {
    fill: #fff !important;
}

/* Here for all */
.here-for-all .main-banner-background.overlay-1::before {
    background: linear-gradient(to bottom, transparent 50%, hsl(0deg 0% 100% / 85%) 100%);
}

.here-for-all .main-banner-text {
    text-shadow: none;
}

@media (min-width: 48em) {
    .here-for-all .size-1 .main-banner-text {
        bottom: 20px;
    }
}

.here-for-all .main-banner-text h1 {
    color: #237ac2;
}

    .here-for-all .main-banner-text h1 span {
        color: #13406b;
        display: block;
        font-family: Jelytta;
        font-size: 1.125em;
        font-weight: normal;
    }

.here-for-all .main-banner-container::before {
    display: none;
}

@media (min-width: 64em) {
    .here-for-all .main-banner-container {
        padding-left: 0;
    }

    .here-for-all .main-banner.size-1 {
        min-height: 450px;
    }

    .here-for-all .main-banner.size-2 {
        margin-left: 65px;
    }

    .here-for-all .main-banner.size-3 {
        margin-left: 65px;
    }

    .here-for-all .main-banner-bottom {
        display: block;
        width: auto;
    }

        .here-for-all .main-banner-bottom .main-banner-links {
            padding: 0 1em;
            width: calc(99% - 265px);
        }
}

@media (min-width:80em) {
    .here-for-all .main-banner-bottom:not(.has-breadcrumb) {
        width: 100%;
    }

    .here-for-all .main-banner-bottom .main-banner-links {
        width: calc(95% - 310px);
    }

}

@media (max-width:84.99em) {
    .here-for-all .main-banner-text h1 span {
        font-size: 48px;
    }
}

/* Here for all + Full-width */

.container-fluid .here-for-all .main-banner-background.overlay-1::before {
    background: linear-gradient(to bottom, #ebebeb00 75%, #0000008c);
}

.container-fluid .here-for-all .main-banner-text h1 {
    color: inherit;
}

    .container-fluid .here-for-all .main-banner-text h1 span {
        color: inherit;
    }

.container-fluid .here-for-all .main-banner-bottom .main-banner-links {
    width: 100%;
}

@media (min-width:64em) {
    .container-fluid .here-for-all .main-banner.size-1 {
        min-height: 470px;
    }

    .container-fluid .here-for-all .main-banner-container .banner-bottom-box {
        bottom: 0;
        height: 470px;
    }
}

@media (min-width: 85em) {
    .container-fluid .here-for-all .main-banner.size-1 {
        min-height: 550px;
    }

    .container-fluid .here-for-all .main-banner-container .banner-bottom-box {
        height: 550px;
    }
}
