﻿@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,300;0,400;0,700;0,900;1,300;1,400;1,700;1,900&display=swap');
@font-face {
  font-family: 'FontAwesome';
  src: url('/assets/_fonts/fontawesome-webfont.eot?v=4.7.0');
  src: url('/assets/_fonts/fontawesome-webfont.eot?#iefix&v=4.7.0') format('embedded-opentype'), url(/assets/_fonts/fontawesome-webfont.woff2?v=4.7.0') format('woff2'), url(/assets/_fonts/fontawesome-webfont.woff?v=4.7.0') format('woff'), url('/assets/_fonts/fontawesome-webfont.ttf?v=4.7.0') format('truetype'), url('/assets/_fonts/fontawesome-webfont.svg?v=4.7.0#fontawesomeregular') format('svg');
  font-weight: normal;
  font-style: normal;
}
/*------------------------------------*\
    #TABLE OF CONTENTS
\*------------------------------------*/
/**
 * ABSTRACTS..............................Declarations of Sass variables & mixins
 * BASE...................................Default element styles
 * LAYOUT.................................Layout-specific styles
 * COMPONENTS.............................Component styles
 * UTILITIES..............................Utility classes
 */
/*------------------------------------*\
    #ABSTRACTS
\*------------------------------------*/
/*------------------------------------*\
    #VARIABLES
\*------------------------------------*/
/**
 * CONTENTS
 *
 * COLORS
 * Brand Colors...............Globally-available variables and config
 * Neutral Colors.............Grayscale colors, including white and black
 * Utility Colors.............Info, Warning, Error, Success
 *
 * TYPOGRAPHY
 * Font Families..............The fonts used in the design system
 * Sizing.....................Font sizing
 *
 * LAYOUT
 * Max-widths.................Maximum layout container width
 *

 * SPACING
 * Spacing defaults...........Spacing between elements
 *
 * BORDERS
 * Border Width...............Border thicknesses
 * Border Radius..............Border radius definitions
 *
 * ANIMATION
 * Animation Speed............Transition/animation speed variables
 * Animation easing...........Easing variables
 *
 * BREAKPOINTS
 * Breakpoints................Global breakpoint definitions
 */
/*------------------------------------*\
     #COLORS
 \*------------------------------------*/
/**
 * Brand Colors
 * 1) Brand=specific colors
 */
/**
 * Neutral Colors
 * 1) Neutral colors are grayscale values used throughout the UI
 */
/**
 * Utility Colors
 * 1) Utility colors are colors used to provide feedback, such as alert messages,
 *    form validation, etc.
 */
/*------------------------------------*\
    #TYPOGRAPHY
\*------------------------------------*/
/**
 * Font Family
 */
/**
 * Font Sizing
 */
/**
 * Line Height
 */
/*------------------------------------*\
    #LAYOUT
\*------------------------------------*/
/**
 * Max Width
 */
/*------------------------------------*\
    #SPACING
\*------------------------------------*/
/**
 * Spacing and offsets
 * 1) Used to space grids and body padding
 */
/*------------------------------------*\
    #BORDERS
\*------------------------------------*/
/**
 * Border widths
 */
/**
 * Border radius
 */
/*------------------------------------*\
    #ANIMATION
\*------------------------------------*/
/**
 * Transition Speed
 */
/**
 * Transition Ease
 */
/*------------------------------------*\
    #BREAKPOINTS
\*------------------------------------*/
/**
 * Breakpoints used in media queries
 * 1) These are not the only breakpoints used, but they provide a few defaults
 */
/*------------------------------------*\
    #MIXINS
\*------------------------------------*/
/**
 * Body Styles 
 * 1) Prevent Mobile Safari from scaling up text: https://blog.55minutes.com/2012/04/iphone-text-resizing/
 */
/**
 * XL Type Styles
 */
/**
 * XL Heading Styles
 */
/**
 * Large Heading Styles
 */
/**
 * Medium 2 Heading Styles
 */
/**
 * Medium Heading Styles
 */
/*------------------------------------*\
    #COLORS
\*------------------------------------*/
/**
 * In this file, we take the literal colors from our palette (defined in variables.scss)
 * and define them against variables that we can utilise anywhere throughout the project.
 */
/*------------------------------------*\
    #GLOBAL TEXT COLOR
\*------------------------------------*/
/**
 * Body text and background colors
 */
/**
 * Highlight colors
 */
/*------------------------------------*\
    #LINKS
\*------------------------------------*/
/*------------------------------------*\
    #BUTTONS
\*------------------------------------*/
/*------------------------------------*\
    #FORMS
\*------------------------------------*/
/*------------------------------------*\
    #BASE
\*------------------------------------*/
/*------------------------------------*\
    #RESET
\*------------------------------------*/
/**
 * Border-Box http:/paulirish.com/2012/box-sizing-border-box-ftw/
 */
* {
  box-sizing: border-box; }

/**
 * 1) Zero out margins and padding for elements
 */
html, body, div, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, ol, ul, li, form, legend, label, table, header, footer, nav, section, figure {
  margin: 0;
  padding: 0; }

/**
 * 1) Set HTML5 elements to display: block
 */
header, footer, nav, section, article, figure {
  display: block; }

/*------------------------------------*\
    #BODY
\*------------------------------------*/
/**
 * HTML base styles
 * 1) Set the html element's height to at least 100% of the viewport.
 *    This is used to achieve a sticky footer
 */

@media screen and (min-width:2200px) {
    html {
        font-size: 125%;
    }
}

/**
 * Body base styles
 * 1) Set the body element's height to at least 100% of the viewport.
 *    This is used to achieve a sticky footer
 */
body {
  min-height: 100vh;
  /* 1 */
  font-family: 'Roboto', sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  -webkit-text-size-adjust: 100%;
  /* 1 */
  background-color: #fff;
  color: #393D3F;
  overflow-x: hidden; }

/*------------------------------------*\
    #LINKS
\*------------------------------------*/
/**
 * Link base styles
 */
a {
  color: #1D72AF;
  text-decoration: underline;
  outline: 0;
  transition: color 0.15s ease-out; }
  a:hover {
    color: #155583; 
  }
  a:active {
    color: #131313; 
  }
  a:focus {
    outline: 2px dotted #1D72AF;
  }

/*------------------------------------*\
    #LISTS
\*------------------------------------*/
/**
 * 1) List base styles
 */
/**
  * Remove list styles from unordered and ordered lists
  */
ol, ul {
  list-style: none; }

/*------------------------------------*\
    #HEADINGS
\*------------------------------------*/
/**
 * Heading 1 base styles
 */
 h1 {
  font-size: 2.4375rem;
  font-weight: 700;
  line-height: 1.2; }

@media (min-width:768px) {
    h1 {
      font-size: 3rem; }
}

/**
 * Heading 2 base styles
 */
h2 {
  font-size: 2.125rem;
  font-weight: 700;
  line-height: 1.2; }

@media (min-width:768px) {
    h2 {
        font-size: 2.4375rem; }
}

/**
 * Heading 3 base styles
 */
h3 {
  font-size: 1.8125rem;
  font-weight: 700;
  line-height: 1.2; }

/**
 * Heading 4 base styles
 */
h4 {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.2; }

/**
 * Heading 5 base styles
 */
h5 {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.2; }

/**
 * Heading 6 base styles
 */
h6 {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.2; }

/*------------------------------------*\
    #FORMS
\*------------------------------------*/
/**
 * 1) Form element base styles
 */
/**
 * Input placeholder text base styles
 */
::-webkit-input-placeholder {
  color: #808080; }

::-moz-placeholder {
  color: #808080; }

:-ms-input-placeholder {
  color: #808080; }

/**
 * Fieldset base styles
 */
fieldset {
  border: 0;
  padding: 0;
  margin: 0; }

/**
 * Legend base styles
 */
legend {
  margin-bottom: 0.25rem; }

/**
 * Label base styles
 */
label {
  display: block;
  padding-bottom: 0.25rem;
  color: #131313; }

input[type="checkbox"] + label,
input[type="radio"] + label {
    display: inline-block;
    margin-left: .5rem;
}

/**
 * Add font size 100% of form element and margin 0 to these elements
 */
button,
input,
select,
textarea {
  font-family: inherit;
  font-size: 1rem;
  margin: 0; }

/**
 * Text area base styles
 */
textarea {
  resize: none; }

/**
 * Input  and text area base styles
 */
input,
textarea {
  width: 100%;
  padding: 0.5rem;
  border: 1px solid #444;
  background: #fff; }
  input:focus,
  textarea:focus {
    border-color: #131313; }
input {
    border: 1px solid #ccc;
    padding: 6px 12px;
    display: inline-block;
    width: 100%;
    overflow: hidden;
    position: relative;
    z-index: 1;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-box-shadow: none;
    box-shadow: none;
    height: 100%;
    min-height: 3.125rem
}

/**
 * Remove webkit appearance styles from these elements
 */
input[type="text"],
input[type="search"],
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration,
input[type="url"],
input[type="number"],
textarea {
  -webkit-appearance: none;
  display: block; }

/**
 * Checkbox and radio button base styles
 */
input[type="checkbox"],
input[type="radio"] {
  width: auto;
  height: auto;
  min-height: inherit;
  margin-right: 0.3rem;
  border-color: #444; }

/**
 * Search input base styles
 */
input[type="search"] {
  -webkit-appearance: none;
  border-radius: 0; }

/**
 * Select
 * 1) Remove default styling
 */
select {
  display: block;
  font-size: 1rem;
  width: 100%;
  border: 1px solid #444;
  padding: 0.5rem;
  background: #fff;
  color: #131313; }
  select:focus {
    border-color: #131313; }

/*------------------------------------*\
    #BUTTONS
\*------------------------------------*/
/**
 * Button and submit inputs reset
 * 1) These should be styled using c-btn
 */
button {
  cursor: pointer; }

/*------------------------------------*\
    #MAIN ELEMENT
\*------------------------------------*/
/**
 * Main element
 */
[role=main] {
  display: block;
  padding: 1rem; }

/*------------------------------------*\
    #MEDIA
\*------------------------------------*/
/**
 * Responsive image styling
 * 1) Allows for images to flex with varying screen size
 */
img {
  max-width: 100%;
  height: auto; }

/*------------------------------------*\
    #TEXT
\*------------------------------------*/
/**
 * Paragraph base styles
 */
p {
  margin-bottom: 1rem; }

/**
 * Blockquote base styles
 */
blockquote {
  position: relative;
  border: 1px solid #FFBA00;
  border-radius: 5px;
  color: #393D3F;
  font-size: 1.125rem;
  font-style: italic;
  font-weight: 300;
  padding: 2rem 1.5rem 2rem 2rem;
  margin: 1.5rem 0; }

blockquote:after {
  content: "";
  display: block;
  background: url(/assets/_img/Massey/icon_quote.svg) center no-repeat #FFFFFF;
  background-size: 28px;
  width: 28px;
  height: 50px;
  position: absolute;
  left: -14px;
  top: 1.5rem;
}

@media (min-width:600px) {
    blockquote {
      padding: 2rem 3rem;
      margin: 2.5rem 0; }
}

/**
 * Horizontal rule base styles
 */
hr {
  border: 0;
  height: 1px;
  width: 100%;
  background: #808080;
  margin: 2rem 0; }

/**
 * Selection styles
 */
::-moz-selection {
  color: #131313;
  background: #ddd;
  /* Gecko Browsers */ }

::selection {
  color: #131313;
  background: #ddd;
  /* WebKit/Blink Browsers */ }

/**
 * Code base styles
 */
code {
  display: inline-block;
  background: #f9f9f9;
  border: 1px solid #ddd;
  padding: 0.2rem 0.5rem;
  line-height: 1.2;
  font-size: 0.85rem; }

/**
 * Preformatted text base styles
 */
pre {
  background: #f9f9f9;
  border: 1px solid #ddd;
  font-size: 1rem;
  padding: 1rem;
  overflow-x: auto;
  /**
	 * Remove border from code within preformatted text block
	 */ }
  pre code {
    border: 0; }

/**
 * Code with languages associated with them
 * 1) Override Prism sysles for code blocks with language
 */
code[class*="language-"],
pre[class*="language-"] {
  font-family: monospace !important; }

/*------------------------------------*\
    #TABLES
\*------------------------------------*/
/**
 * Table
 */
table {
  border-collapse: collapse;
  border-spacing: 0;
  border: 1px solid #EBEDEF;
  width: 100%; }

/**
 * Table header cell
 */
th {
  text-align: left;
  font-weight: 500;
  padding: 1.5rem 2rem;
  background: #F0F7FC;}

/**
 * Table row
 */
tr {
  vertical-align: top; }

tr:nth-child(even) {
  background: #F6F6F6; }

/**
 * Table cell
 */
td {
  padding: 1.5rem 2rem;
}

/*------------------------------------*\
    #LAYOUT
\*------------------------------------*/
/*------------------------------------*\
    #LAYOUT
\*------------------------------------*/
/**
 *
 * 1) This caps the width of text passages
 *    to achieve a comfortable line length
 */
.l-linelength-container {
  max-width: 36rem; }

/*------------------------------------*\
    #GRID
\*------------------------------------*/
/*------------------------------------*\
    #UTILITIES
\*------------------------------------*/
/*------------------------------------*\
    #VISIBILITY CLASSES
\*------------------------------------*/
/**
 * Is Hidden
 * 1) Completely remove from the flow and screen readers.
 */
.u-is-hidden {
  display: none !important;
  visibility: hidden !important; }

/**
 * Is Visibly Hidden
 * 1) Completely remove from the flow but leave available to screen readers.
 */
.u-is-vishidden {
  position: absolute !important;
  overflow: hidden;
  width: 1px;
  height: 1px;
  padding: 0;
  border: 0;
  clip: rect(1px, 1px, 1px, 1px); }

/*------------------------------------*\
    #SPACING
\*------------------------------------*/
/**
 * Margin bottom none
 * 1) Force margin bottom of 0
 */
.u-margin-bottom-none {
  margin-bottom: 0 !important; }

/**
 * Margin bottom small
 * 1) Force margin bottom of $spacing-small variable
 */
.u-margin-bottom-small {
  margin-bottom: 1rem !important; }

/**
 * Margin bottom
 * 1) Force margin bottom of $spacing variable
 */
.u-margin-bottom {
  margin-bottom: 1rem !important; }

/**
 * Margin bottom large
 * 1) Force margin bottom of $spacing-large variable
 */
.u-margin-bottom-large {
  margin-bottom: 2rem !important; }

.u-margin-bottom-large-to-xxl {
  margin-bottom: 2rem !important; }
  @media all and (min-width: 60em) {
    .u-margin-bottom-large-to-xxl {
      margin-bottom: 8rem !important; } }

/**
 * Margin top none
 * 1) Force margin top of 0
 */
.u-margin-top-none {
  margin-top: 0 !important; }

/**
 * Margin top small
 * 1) Force margin top of $spacing-small variable
 */
.u-margin-top-small {
  margin-top: 1rem !important; }

/**
 * Margin top
 * 1) Force margin top of $spacing variable
 */
.u-margin-top {
  margin-top: 1rem !important; }

/**
 * Margin top large
 * 1) Force margin top of $spacing-large variable
 */
.u-margin-top-large {
  margin-top: 2rem !important; }

.u-margin-top-booking {
  margin-top: 28rem !important; }

/**
 * Margin right none
 * 1) Force margin right of 0
 */
.u-margin-right-none {
  margin-right: 0 !important; }

/**
 * Margin right small
 * 1) Force margin right of $spacing-small variable
 */
.u-margin-right-small {
  margin-right: 1rem !important; }

/**
 * Margin right
 * 1) Force margin right of $spacing variable
 */
.u-margin-right {
  margin-right: 1rem !important; }

/**
 * Margin right large
 * 1) Force margin right of $spacing-large variable
 */
.u-margin-right-large {
  margin-right: 2rem !important; }

/**
 * Margin left none
 * 1) Force margin left of 0
 */
.u-margin-left-none {
  margin-left: 0 !important; }

/**
 * Margin left small
 * 1) Force margin left of $spacing-small variable
 */
.u-margin-left-small {
  margin-left: .5rem !important; }

/**
 * Margin left
 * 1) Force margin left of $spacing variable
 */
.u-margin-left {
  margin-left: 1rem !important; }

/**
 * Margin left large
 * 1) Force margin left of $spacing-large variable
 */
.u-margin-left-large {
  margin-left: 2rem !important; }

/**
 * Center display block contents
 */
.u-margin-center {
  margin: 0 auto !important; }

/**
 * Padding none
 */
.u-padding-none {
  padding: 0 !important; }

/**
 * Padding small
 */
.u-padding-small {
  padding: 1rem !important; }

/**
 * Padding
 */
.u-padding {
  padding: 1rem !important; }

/**
 * Padding large
 */
.u-padding-large {
  padding: 2rem !important; }

/**
 * Padding top none
 */
.u-padding-top-none {
  padding-top: 0 !important; }

/**
 * Padding top small
 */
.u-padding-top-small {
  padding-top: 1rem !important; }

/**
 * Padding top
 */
.u-padding-top {
  padding-top: 1rem !important; }

/**
 * Padding top large
 */
.u-padding-top-large {
  padding-top: 2rem !important; }

/**
 * Padding bottom none
 */
.u-padding-bottom-none {
  padding-bottom: 0 !important; }

/**
 * Padding bottom small
 */
.u-padding-bottom-small {
  padding-bottom: 1rem !important; }

/**
 * Padding bottom
 */
.u-padding-bottom {
  padding-bottom: 1rem !important; }

/**
 * Padding bottom large
 */
.u-padding-bottom-large {
  padding-bottom: 2rem !important; }

/**
 * Padding right none
 */
.u-padding-right-none {
  padding-right: 0 !important; }

/**
 * Padding right small
 */
.u-padding-right-small {
  padding-right: 1rem !important; }

/**
 * Padding right
 */
.u-padding-right {
  padding-right: 1rem !important; }

/**
 * Padding right large
 */
.u-padding-right-large {
  padding-right: 2rem !important; }

/**
 * Padding left none
 */
.u-padding-left-none {
  padding-left: 0 !important; }

/**
 * Padding left small
 */
.u-padding-left-small {
  padding-left: 1rem !important; }

/**
 * Padding left
 */
.u-padding-left {
  padding-left: 1rem !important; }

/**
 * Padding left large
 */
.u-padding-left-large {
  padding-left: 2rem !important; }


.u-list-inline {
    display: flex;
}

.u-list-inline > li {
    margin: 0 .25rem;
}

.u-list-inline > li:first-child {
    margin-left: 0;
}

.u-list-inline > li:last-child {
    margin-right: 0;
}

.l-table-scroll {
    overflow-x: scroll;
}

.l-table-scroll th {
    min-width: 200px;
    max-width: 40vw;
}

@media (min-width: 768px) {
    .l-table-scroll {
        overflow-x: inherit;
    }
}

/*------------------------------------*\
    #COMPONENTS
\*------------------------------------*/
/*------------------------------------*\
    #ICON
\*------------------------------------*/
/**
 * 1) Small image that represents functionality
 */
.c-icon {
  height: 1rem;
  width: 1rem; }

/*------------------------------------*\
    #CARD
\*------------------------------------*/
/**
 * A collection of text and/or images and/or other smaller content 
 */
.c-card {
  display: block;
  border: 1px solid #bbb;
  padding: 1rem;
  max-width: 27rem;
  transition: all 0.15s ease-out; }

/*------------------------------------*\
    #BUTTONS
\*------------------------------------*/
/**
 *
 * 1) Button or link that has functionality to it
 */
.c-btn {
  display: inline-block;
  border: 1px solid #1D72AF;
  background: #1D72AF;
  color: #FFF;
  line-height: 1;
  font-weight: 700;
  padding: 1rem 2rem;
  font-size: .875rem;
  text-transform: uppercase;
  text-decoration: none;
  border: 0;
  text-align: center;
  min-width: 195px;
  cursor: pointer;
  box-shadow: 0 0 0 0 rgba(1,52,128,0.15);
  transition: all 0.15s ease-out; }

  .c-btn:hover, 
  .c-btn:focus {
    background: #155583;
    border-color: #155583;
    box-shadow: 0 5px 15px 0 rgba(1,52,128,0.15);
    color: #FFF;
    text-decoration: none;
   }

    .c-btn:visited {
        color: #FFF;
    }

.c-btn--action {
    border-color: #FFBA00;
    background: #FFBA00;
    color: #000;
}

.c-btn--action:hover, 
  .c-btn--action:focus {
    background: #FFCB40;
    border-color: #FFCB40;
    color: #000;
   }

.c-btn--action:visited {
        color: #000;
    }

.c-btn-video {
    display: flex;
    align-items: center;
    appearance: none;
    font-weight: 700;
    color: #1D72AF;
    border: none;
    background: none;
    padding: 0;
    transition: .3s;
}

.c-btn-video:disabled,
.c-btn-video[disabled] {
    cursor: not-allowed;
    pointer-events: none;
    opacity: .6;
}

.c-btn-video > .c-icon {
    margin-right: .5rem;
    transition: .3s;
}

.c-btn-video:hover,
.c-btn-video:focus {
    color: #155583;
}

.c-btn-video:hover > .c-icon {
    background: #155583;
    border-color: #155583;
}

.c-btn-video:hover > .c-icon--play:before {
    border-color: transparent transparent transparent #FFFFFF;
}

.c-btn-to-top-wrap {
    position: fixed;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 82rem;
    text-align: right;
    z-index: 100;
    pointer-events: none;
}

.c-btn-to-top {
    display: inline-block;
    padding: .5rem 1rem;
    border: 1px solid #1D72AF;
    background: #1D72AF;
    color: #FFFFFF;
    border-radius: 5px;
    font-size: .75rem;
    font-weight: 500;
    box-shadow: 0 10px 30px 0 rgba(1,52,128,0.15);
    transition: .3s;
    pointer-events: auto;
}

.c-btn-to-top:hover,
.c-btn-to-top:focus {
    background: #155583;
    border-color: #155583;
}

/*
 * Inner container wrapper
 * 1) Container is direct decendant of <button>, since there's
 *    a bug with applying flexbox directly to a <button>
 * 2) Only needs to be used for buttons containing both icons and text
 */
.c-btn__inner {
  display: flex;
  align-items: center;
  justify-content: center; }

/*
 * Button icon
 */
.c-btn__icon {
  width: 1rem;
  height: 1rem;
  fill: #fff;
  transition: fill 0.15s ease-out; }

.c-arrow-link {
    display: flex;
    align-items: center;
    color: #1D72AF;
    font-weight: 500;
    text-decoration: none;
}

.c-arrow-link:after {
    content: "";
    display: inline-block;
    background: url('/assets/_img/Massey/icon_arrow-right-blue.svg');
    margin-left: .5rem;
    height: 16px;
    width: 16px;
    flex: 0 0 16px;
    background-size: 16px;
    background-repeat: no-repeat;
    transition: .3s;
}

.c-arrow-link:visited {
    color: #1D72AF;
}

.c-arrow-link:hover,
.c-arrow-link:focus {
    color: #155583;
}

.c-arrow-link:hover:after,
.c-arrow-link:focus:after {
    background: url('/assets/_img/Massey/icon_arrow-right-blue-hover.svg');
    background-size: 16px;
    transform: translateX(.5rem);
}

.c-arrow-link--prev::after {
    display: none!important
}

.c-arrow-link--prev::before {
    content: "";
    display: inline-block;
    background: url(/assets/_img/Massey/icon_arrow-right-blue.svg) no-repeat;
    margin-right: .5rem;
    height: 16px;
    width: 16px;
    background-size: 16px;
    -webkit-transform: scaleX(-1);
    transform: scaleX(-1);
    -webkit-transition: .3s;
    transition: .3s
}

.c-arrow-link--prev:focus::before,.c-arrow-link--prev:hover::before {
    background: url(/assets/_img/Massey/icon_arrow-right-blue.svg);
    background-size: 16px;
    -webkit-transform: translateX(-.5rem) scaleX(-1);
    transform: translateX(-.5rem) scaleX(-1)
}

.c-arrow-link--invert:after {
    background: url('/assets/_img/Massey/icon_arrow-right-white.svg');
    background-size: 16px;
    background-repeat: no-repeat;
}

.c-arrow-link--invert:hover:after,
.c-arrow-link--invert:focus:after {
    background: url('/assets/_img/Massey/icon_arrow-right-white.svg');
    background-size: 16px;
    transform: translateX(.5rem);
}

/*------------------------------------*\
    #FIELDS
\*------------------------------------*/
/**
 * 1) Consists of a label, form control, and an optional note about the field.
 */
.c-field {
  margin-bottom: 2rem; }

/**
 * Field label
 */
.c-field__label {
  margin-bottom: 0.25rem;
  font-size: 1rem;
  font-weight: bold; }

/**
 * Field body
 */
.c-field__body {
  position: relative; }

/**
 * Field note
 */
.c-field__note {
  display: inline-block;
  font-size: 0.75rem;
  color: #808080; }

/*------------------------------------*\
    #LOGO
\*------------------------------------*/
/**
 * Branding image or text of the site
 */
.c-logo {
  max-width: 9rem; }

@media (min-width:991px) {
    .c-logo {
    max-width: 14rem; }
}

/**
 * Logo link
 */
.c-logo__link {
  display: block; }

/**
 * Logo image
 */
.c-logo__img {
  display: block;
  max-width: 168px; 
}

/*------------------------------------*\
    #GRID
\*------------------------------------*/
/**
 * Primary Grid  
 */
.l-grid {
  display: grid;
  grid-template-columns: 1fr;
  margin-bottom: 2rem; }

.l-grid--small {
    grid-gap: 1rem
}

.l-grid--medium {
    grid-gap: 2rem
}

.l-grid-item img {
    width: 100%
}

@media (min-width: 991px) {
    .l-grid--2-columns {
        grid-template-columns: 1fr 1fr;
    }

    .l-grid--3-columns {
        grid-template-columns: 1fr 1fr 1fr;
    }

    .l-grid--4-columns {
       grid-template-columns: 1fr 1fr 1fr 1fr;
    }
}

/*------------------------------------*\
    #LAYOUT CONTAINER
\*------------------------------------*/
/**
 * Layout Container
 * 1) Caps the width of the content to the maximum width
 *    and centers the container
 * 2) The .container class variant is to style components used from VCU main on Massey.
 */
.l-container,
.container {
  max-width: 82rem;
  margin: 0 auto; 
  padding-left: 1rem;
  padding-right: 1rem;
}

.l-container--sm {
    max-width: 55rem;
}

@media (min-width: 84rem) {
    .l-container,
    .container { 
      padding-left: 0;
      padding-right: 0;
    }
}

.l-grad-container .c-comp:first-child {
    margin-top: 0;
}

.l-grad-container .c-comp:last-child {
    margin-bottom: 0;
}

.l-grad-container + .c-comp {
    margin-top: 2.625rem;
}

/*------------------------------------*\
    #FORMBUILDER OVERRIDES
\*------------------------------------*/
#FormBuilderControl .form-row-inline,
#FormBuilderControl .g-recaptcha{
    margin-bottom: 1.25rem;
}

#FormBuilderControl input[type="text"],
#FormBuilderControl input[type="email"],
#FormBuilderControl input[type="phone"],
#FormBuilderControl select,
#FormBuilderControl textarea {
    appearance: none;
    -webkit-appearance:none;
    border: 1px solid #CCC;
    background: #FFF;
    padding: 6px 12px;
    display: inline-block;
    width: 100%;
    overflow: hidden;
    position: relative;
    z-index: 1;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-box-shadow: none;
    box-shadow: none;
    height: 100%;
    min-height: 3.125rem;
    border-radius: 0 !important;
}

#FormBuilderControl select {
    background: url(/assets/_img/clinicaltrial/chevron-down-solid.svg) calc(100% - 15px) 55% no-repeat #FFFFFF;
    background-size: 10px;
}

#FormBuilderControl input[type="button"] {
    border: 1px solid #FFBA00;
    background: #FFBA00;
    color: #000;
    line-height: 1;
    font-weight: 700;
    padding: 1rem 2rem;
    font-size: .875rem;
    text-transform: uppercase;
    border: 0;
    text-align: center;
    min-width: 195px;
    cursor: pointer;
    box-shadow: 0 0 0 0 rgb(1 52 128 / 15%);
    transition: all 0.15s ease-out;
    margin-top:20px;
}

.FormBuilderControl .checkbox-col-group input[type="checkbox"] {
  position: absolute;
}

#FormBuilderControl .checkbox-col-group .form-label {
  margin-bottom: .5rem;
}

#FormBuilderControl .checkbox-col-group label {
  margin: .75rem;
  display: block;
  margin-left: 0;
  color: #726E6B;
  clear: left;
}

/*------------------------------------*\
    #PRIMARY NAVIGATION
\*------------------------------------*/
/**
 * Primary navigation existing in the header and maybe the footer
 */
.c-primary-nav {
  margin-left: auto; }

/**
 * Primary navigation list
 */
.c-primary-nav__list {
  display: flex;
  flex-direction: column;}

@media (min-width:991px) {
    .c-primary-nav__list {
    flex-direction: row; }
}

/**
 * Primary navigation item
 */
.c-primary-nav__item {
  position: relative;
  margin-left: 0;
  font-weight: 500;
  border-bottom: 1px solid #D7D9DA;
}

.c-primary-nav__item--dd:after {
    content: "";
    display: inline-block;
    position: absolute;
    top: 2rem;
    margin-top: -.5rem;
    right: 1rem;
    height: 1rem;
    width: .5rem;
    background-repeat: no-repeat;
    background-size: 1rem;
    background: url(/assets/_img/Massey/select-arrow.svg) right center no-repeat;
}

.c-primary-nav__item--dd.is-open:after {
    transform: rotate(180deg);
    transform-origin: center center;
}

.c-primary-nav__mob-arrow {
    display: inline-block;
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 2rem;
    background-repeat: no-repeat;
    background-size: 1rem;
    background: url(../../images/select-arrow.svg) center center no-repeat;
}

.c-primary-nav__mob-arrow.is-open {
    transform: rotate(180deg);
    transform-origin: center center;
}

@media (min-width:991px) and (max-width:1200px) {
    .c-primary-nav__item {
        max-width: 130px;
        margin-left: 3.25rem;
    }
    
    .c-primary-nav__item:last-child {
        max-width: 90px;
    }
}

@media (min-width:991px) {
    .c-primary-nav__item {
        display: block;
        border-bottom: none;   
        margin-left: 2rem;
    }
    
    .c-primary-nav__list .c-primary-nav__item:nth-child(n+4) .c-primary-nav__dropdown {
        left: auto;
        right: 0;
    }
    
    .c-primary-nav__item:first-of-type {
        margin-left: 0;
    }
    
    .c-primary-nav__item--dd {
        padding-right: 1rem;
    }
    
    .c-primary-nav__item--dd:after { 
        position: absolute;
        right: 0;
        top: 2.25rem;    
    }
    
    .c-primary-nav__mob-arrow {
        display: none;
    }
    
    .c-primary-nav__item:before {
        content: "";
        display: block;
        position: absolute;
        bottom: 0;
        width: 100%;
        opacity: 0;
        height: 0;
        background: #FFBA00;
        transition: .2s;
    }

    .c-primary-nav__item:hover:before {
        height: 4px;
        opacity: 1;
    }
}

/**
 * Primary navigation link
 */
.c-primary-nav__link {
  display: block;
  position: relative;
  text-decoration: none;
  padding: 1rem;
  cursor: pointer; 
  color: #000;
}

.c-primary-nav__link:hover,
.c-primary-nav__link:focus {
    color: currentColor;
}

@media (min-width:991px) {
    .c-primary-nav__link {
       padding: 2rem 0 2rem;
    }
}
/**
 * Primary navigation dropdown
 */
.c-primary-nav__dropdown {
    z-index: 20;
    background: #FFFFFF;
    padding: 0 1rem;
}

@media (min-width: 990px) {
    .c-primary-nav__dropdown {
        position: absolute;
        top: calc(100% + 1px);
        left: 0;
        padding: 2rem 4rem 2rem 2.875rem;
        box-shadow: 0 3px 20px 0 rgba(0,0,0,0.07);
        min-width: 200px;
        visibility: hidden;
        opacity: 0;
        transition: .3s;
        column-count: 2;
        column-gap: 4rem;
        column-rule-width: 200px;
    }
    
    .c-primary-nav__item:hover .c-primary-nav__dropdown {
        opacity: 1;
        visibility: visible;
    }
}

/**
 * Primary navigation dropdown title
 */
.c-primary-nav__dropdown-title {
    display: none;
    column-span: all;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.c-primary-nav__dropdown-title > a {
    color: #1D72AF;
    text-decoration: none;
}

@media (min-width:991px) {
    .c-primary-nav__dropdown-title {
        display: block;
    }
}

/**
 * Primary navigation dropdown item
 */
.c-primary-nav__dropdown-item {
    white-space: nowrap;
    font-weight: 400;
    font-size: .875rem;
    margin-bottom: 1rem;
}

.c-primary-nav__dropdown-item a {
    text-decoration: none;
}

@media (min-width: 990px) {
    .c-primary-nav__dropdown-item {
        min-width: 200px;
    }
}

/*------------------------------------*\
    #PAGE HEADER
\*------------------------------------*/
/**
 * 1) Container that consists of of a page header title and description
 */
/**
 * Page header title
 */
.c-page-header__title {
  margin-bottom: 0; }

/**
 * Page description
 */
.c-page-header__description {
  font-size: 1.2rem;
  margin-bottom: 2rem; }

.c-page-header__search {
  margin-bottom: 2rem;
}

@media (min-width: 991px) {
  /* line 2, src/scss/pages/_404.scss */
  .c-page-header__search {
    display: flex;
  }
}

/* line 9, src/scss/pages/_404.scss */
.c-page-header__search .c-search-form {
  width: 100%;
}

@media (min-width: 991px) {
  /* line 9, src/scss/pages/_404.scss */
  .c-page-header__search .c-search-form {
    margin-right: 15px;
  }
}

/* line 17, src/scss/pages/_404.scss */
.c-page-header__search .c-btn {
  width: 100%;
  margin-top: 1rem;
}

@media (min-width: 991px) {
  /* line 17, src/scss/pages/_404.scss */
  .c-page-header__search .c-btn {
    margin-top: 0;
    width: unset;
  }
}


/*------------------------------------*\
    #PAGE NAVIGATION
\*------------------------------------*/
.sidebar-trigger-wrapper {
  padding: 10px 1.5rem;
  background: #FFFAEB;
}

.sidebar {
  border-left: 3px solid #D7D9DA;
}

.sidebar .dept-name {
  font-weight: 700;
  font-size: 1.125rem;
  margin-left: 1rem;
  margin-bottom: 1rem;
}
.sidebar ul {
      list-style: none;
      padding-left: 0;
      margin-bottom: 2rem;
  }

.sidebar ul ul {
  margin-bottom: 0;
}

  .sidebar li {
      position: relative;
  }

.sidebar .side-nav-arrow {
  cursor: pointer;
  position: absolute;
  left: 0;
  top: 5px;
  display: inline-block;
  height: 2rem;
  width: 2rem;
  background-repeat: no-repeat;
  background-size: 1rem;
  background: url(/assets/_img/Massey/select-arrow.svg) center no-repeat;
  transform: rotate(-90deg);
}

      .sidebar li a {
          display: inline-block;
          color: #000000;
          font-family: Roboto;
          font-size: .875rem;
          text-decoration: none;
          padding: 10px 2rem;
          cursor: pointer;
      }

  .sidebar ul.parent {
      display: none;
  }

  .sidebar li a.active {
      font-weight: bold;
  }

  .sidebar li.parent > ul a {
      padding-left: 50px;
      padding-right: 40px;
  }
  
  .sidebar li.parent > ul .side-nav-arrow {
      left: 20px;
  }

  .sidebar li.parent > ul > li > ul a {
      padding-left: 70px;
  }

  .sidebar li.parent > ul > li > ul .side-nav-arrow {
      left: 40px;
  }

  .sidebar ul.parent ul.parent ul.parent > li > a {
      padding-left: 90px;
  }

  .sidebar ul.parent ul.parent ul.parent .side-nav-arrow {
    left: 60px;
  }

  .sidebar ul.parent ul.parent ul.parent ul.parent > li > a {
    padding-left: 110px;
  }

  .sidebar ul.parent ul.parent ul.parent ul.parent .side-nav-arrow {
    left: 80px;
  }

  .sidebar li.parent > ul {
      display: none;
  }

      .sidebar li.parent.open > ul,
      .sidebar li.parent > ul li.subparent.open > ul {
          display: block;
      }

  .sidebar li.parent a.open {
      background: #FFCE00;
      display: block;
      font-weight: bold;
  }

  .sidebar li.parent.open {
      background: #F6F6F6;
  }

  .sidebar li.parent.open:before {
      content: "";
      display: block;
      height: 100%;
      width: 3px;
      background: #FFBA00;
      position: absolute;
      left: -3px;
  }

  .sidebar li.parent.open > .side-nav-arrow {
      transform: rotate(0deg);
  }

  .sidebar li.subparent.open > a {
      font-weight: bold;
      background-color: #E0E0E0;
  }

  .sidebar li.parent > ul li.subparent > ul {
      display: none;
  }

  .sidebar li.subparent.open > ul a {
      padding-left: 30px;
  }

@media (max-width: 991px) {
  .sidebar-wrapper {
      position: fixed;
      top: 160px;
      left: 0;
      width: 100%;
      height: calc(100% - 160px);
      background: #FFFFFF;
      opacity: 0;
      visibility: hidden;
      padding: 2rem 1.5rem 0;
      overflow-y: auto;
  }
  
  .sidebar-wrapper.is-open {
      opacity: 1;
      visibility: visible;
  }

  .sidebar-trigger {
      display: block;
      width: 100%;
      background: #1D72AF;
      text-align: center;
      position: relative;
      padding: .625rem 2rem;
      border-radius: 5px;
      margin-bottom: 0;
      margin-left: 0;
      font-size: .875rem;
      font-weight: 700;
      text-transform: uppercase;
      color: #FFFFFF;
      appearance: none;
      border: none;
  }
  
  .sidebar-trigger:after {
      content: "";
      display: inline-block;
      width: 1rem;
      height: .5rem;
      background-size: 1rem;
      background: url(/assets/_img/Massey/select-arrow-invert.svg) right center no-repeat;
  }

  .sidebar-trigger.is-active:after {
      transform: rotate(180deg);
      background-position: left center;
  }
}

/*------------------------------------*\
    #FORM MOLECULES
\*------------------------------------*/
.c-form-select {
    appearance: none;
    border: none;
    background-size: 1rem;
    background: url(/assets/_img/Massey/select-arrow.svg) right center no-repeat;
}

/*------------------------------------*\
    FOOTER
\*------------------------------------*/
/**
 * 1) Global block at the bottom of each page that contains a navigation and other information
 * 2) Footer layout.
 */
.c-footer {
  padding: 2rem 0;
  border-top: 2px solid #FFBA00; }

.c-footer__top {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-bottom: 1px solid #D7D9DA;
    margin-bottom: 2rem;
}

.c-footer__top > img {
    margin-bottom: 2rem;
    max-width: 168px;
}

.c-footer__mid {
    display: flex;
    flex-direction: column;
    font-size: .875rem;
}

.c-footer__bottom {
    display: flex;
    flex-direction: column;
    font-size: .75rem;
}

.c-footer__col {
    margin-bottom: 3rem;
}

.c-footer__sublogos {
    display: flex;
    flex-direction: row;
    list-style: none;
    margin: 0 0 1rem;
}

.c-footer__sublogo {
    max-width: 80px;
}

.c-footer__sublogo--lg {
    max-width: 160px;
}

.c-footer__sublogos > li {
    margin-right: 1.5rem; 
}

@media (min-width:768px) {
    .c-footer__top {
        flex-direction: row;
        justify-content: space-between;
    }
    
    .c-footer__top > img {
        margin-bottom: 1rem;
    }
    
    .c-footer__bottom {
        flex-direction: row;
        justify-content: space-between;
    }
    
    .c-footer__sublogos {
        margin: 1rem 0 2rem;
    }
    
    .c-footer__sublogo {
        max-width: 110px;
    }
    
    .c-footer__sublogo--lg {
        max-width: 220px;
    }
    
    .c-footer__sublogos > li {
        margin-right: 2.5rem; 
    }
}

@media (min-width:990px) {
    .c-footer__mid {
        flex-direction: row;
    }
    
    .c-footer__col {
        padding: 0 1rem;
        flex: 1 1 auto;
    }

    .c-footer__col--lg {
        flex: 2 1 auto;
        max-width: 30%;
    }
}

/**
 * 1) Styling of footer UI elements
 */
.c-footer a {
    text-decoration: none;
}

.c-footer a:hover,
.c-footer a:focus{
    text-decoration: underline;
}

.c-footer-title {
    display: block;
    margin-bottom: .5rem;
}

.c-footer-title--accented {
    margin-bottom: 0;
}

.c-footer-title--accented:after {
    content: "";
    display: block;
    width: 20px;
    height: 3px;
    margin: .25rem 0 .75rem;
    background: #FFDA76;
}

.c-footer-address {
    font-style: normal;
    margin-bottom: 1.5rem;
}

.c-footer-nav {
    display: flex; 
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.c-footer-nav--col {
    display: block;
    margin-bottom: 0;
}

@media (min-width:768px) {
    .c-footer-nav {
        margin-bottom: 0;
    }
    
    .c-footer-nav--dual {
        column-count: 2;
    }
}

.c-footer-nav__item {
  margin-right: 2rem; }

.c-footer-nav--col .c-footer-nav__item {
    margin-bottom: .5rem;
    margin-right: 0;
}

.c-footer-nav--col .c-footer-nav__item:last-child {
    margin-bottom: 0;
}

.c-footer__contact > li {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-bottom: 1rem;
}

.c-footer__contact > li > .c-icon {
    margin-right: 1rem;
    width: 40px;
    height: 40px;
    line-height: 40px;
}

.c-footer__contact > li > .c-icon > img {
    max-width: 14px;
}

.c-footer__contact > li span {
    display: block;
    font-weight: 300;
}

.c-footer__contact > li a {
    color: #1D72AF;
    font-weight: 700;
}

/*------------------------------------*\
    #HEADER
\*------------------------------------*/
/**
 * Global block at the top of each page containing the navigation, logo, and other potential contents
 */
.c-header {
  position: relative;
  background: #FFFFFF;
  border-bottom: 1px solid #FFBA00;
  box-shadow: 0 5px 15px 0 rgba(1,52,128,0.15);
  padding: 1rem 1rem 0; }

/**
 * Header navigation conntainer
 * 1) Contains the primary navigation and other possible patterns
 */
.c-header__nav {
    position: fixed;
    opacity: 0;
    visibility: hidden;
    left: -100%;
    top: 100px;
    height: calc(100% - 105px);
    background: #FFFFFF;
}

.c-header__nav.is-open {
    opacity: 1;
    visibility: visible;
    left: 0;
    z-index: 110;
    width: 100%;
    overflow-y: auto;
}

@media (min-width:990px) { 
    .c-header__nav {
        position: inherit;
        opacity: 1;
        visibility: visible;
        left: auto;
        height: auto;
        margin-top: 1.5rem;
    }
}

/**
 * Header inner
 */
.c-header__inner {
  display: flex;
  width: 100%;
  max-width: none;
  justify-content: space-between;
  align-items: center; }

@media (min-width:990px) {
  .c-header__inner {
  align-items: flex-end; }
}

/**
 * Header triggers
 */
.c-header__btn {
    display: inline-block;
    height: 1rem;
}
@media (min-width:990px) {
  .c-header__btn {
  display: none; }
}

.c-header__btn.js-search-trigger {
    height: 1.5rem;
    width: 1.5rem;
    background: url(/assets/_img/Massey/icon-search.svg) center center no-repeat;
    background-size: 1.5rem;
}

.c-header__btn.js-search-trigger.is-active {
    background: url(/assets/_img/Massey/icon-close.svg) center center no-repeat;
    background-size: .95rem;
}

/**
 * Header subnav container
 */
.c-header-subnav {
    position: static;
    top: 0;
    right: 0;
    width: 100%;
    padding: .75rem 1rem;
    font-size: .875rem;
}

.c-header-subnav__list {
    display: block;
    border-bottom: 1px solid #D7D9DA;
}

.c-header-subnav__list:last-of-type {
    border: none;
}

.c-header-subnav__list > li {
    margin: .5rem 0;
}

.c-header-subnav__link {
    color: #000000;
    text-decoration: none;
}

.c-header-subnav__link:hover,
.c-header-subnav__link:focus {
    text-decoration: underline;
}

.c-header-subnav__search {
    display: none;
}

@media (min-width:990px) {
    .c-header-subnav { 
        display: flex;
        width: 85%;
        justify-content: flex-end;
        position: absolute;
        background: linear-gradient(90deg, rgba(240,247,252,0) 0%, #F0F7FC 100%);
    }
    
    .c-header-subnav__list {
        display: flex; 
        align-items: center;
        border: none;
    }
    
    .c-header-subnav__list > li {
        margin: 0 .5rem;
    }
    
    .c-header-subnav__list:after {
        content: "|";
        display: inline-block;
        color: #969491;
        margin: 0 .5rem;
    }
    
    .c-header-subnav__search {
        display: inline-block;
        font-size: .875rem;
        margin-left: .5rem;
    }
    
    .c-header-subnav__search:before {
        content: "";
        position:relative;
        margin-top:-1px;
        display: inline-block;
        vertical-align: middle;
        height: 1rem;
        width: 1rem;
        background: url(/assets/_img/Massey/icon-search.svg) center center no-repeat;
        background-size: 1rem;
        margin-right: .25rem;
    }
    
    .c-header-subnav__search.is-active:before {
        background: url(/assets/_img/Massey/icon-close.svg) center center no-repeat;
        background-size: .7rem;
    }
}

/**
 * Header hamburger icon
 */
.c-header__burger {
    display: block;
    position: relative;
    background: #000;
    width: 18px;
    height:  2px;
}

.c-header__burger:before,
.c-header__burger:after {
    content: "";
    display: block;
    background: #000;
    width: 18px;
    height:  2px;
    position: absolute;
}

.c-header__burger:before {
    top: -6px;
}

.c-header__burger:after {
    bottom: -6px
}

/**
 * Active header nav container
 */
.c-header__nav-container.is-active {
  display: block;
  position: absolute;
  background: #eee;
  top: 100%;
  left: 0;
  width: 100%;
  z-index: 5;
  padding: 1rem;
  /**
	 * Active header nav container within vertical header
	 */ }
  @media all and (min-width: 70em) {
    .c-header__nav-container.is-active {
      display: block;
      position: static;
      padding: 0;
      margin-left: auto;
      width: inherit; } }
  @media all and (min-width: 70em) {
    .c-header--vertical .c-header__nav-container.is-active {
      margin-left: 0;
      width: 100%; } }

/*-----------------------------------------*\
    #PAGE TOOLS: BREADCRUMBS + PRINT/SHARE
\*-----------------------------------------*/

.l-page-tools {
    display: none;
}

@media (min-width:991px) {
    .l-page-tools {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 1rem 1rem .75rem;
    }
}

.l-page-tools img,
.share-print img {
    width: .875rem;
    margin-left: .5rem;
}

.breadcrumb {
    display: flex;
    align-items: center;
    font-size: .75rem;
    background: none;
    margin: 0;
    padding: 0;
}

.breadcrumb li + li:before {
    display: inline-block;
    margin: 0 .5rem;
    color: #FFBA00;
    content: "/";
}

.breadcrumb > a {
    color: #1D72AF;
    text-decoration: none;
    font-weight: 500;
}

.c-breadcrumbs__item > a[aria-current="true"] {
    color: #393D3F;
    font-weight: 400;
}

.interruptStyle .modalPopup {
    padding: 1.5rem 1rem;
    position: relative !important;
    background: #013480 !important;
    text-align: center;
}

.interruptStyle .modalPopup p, 
.interruptStyle .modalPopup li,
.interruptStyle .modalPopup a {
    color: #FFFFFF;
}

.interruptStyle .modalPopup p:last-of-type {
    margin-bottom: 0;
}

.interruptStyle .modalPopup .close-btn {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    display: none;
}

/*------------------------------------*\
    #CARD LIST
\*------------------------------------*/
/**
 * An unordered list of cards 
 */
.c-card-list {
  display: grid;
  grid-gap: 1rem;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); }

/*------------------------------------*\
    #SECTION
\*------------------------------------*/
/**
 * 1) Discrete section
 */
.c-section {
  margin-bottom: 2rem; }

/*------------------------------------*\
	#TABLE
\*------------------------------------*/
/**
 * 1) Data Table
 */
.c-table {
  margin-bottom: 1rem;
  /* 2 */ }

/**
 * Table Header
 */
.c-table__header {
  background: #eee; }

/**
 * Table Header Cell
 */
.c-table__header-cell {
  padding: 0.8rem; 
  border: 1px solid rgba(0,0,0,.1); }

/**
 * Table Row
 */
.c-table__row {
  border-bottom: 1px solid #eee; }

/**
 * Table Cell
 */
.c-table__cell {
  padding: 1.6rem 0.8rem; 
  border: 1px solid rgba(0,0,0,.1); }

/**
 * Table Footer
 */
/**
 * Table Footer Cell
 */
.c-table__footer-cell {
  padding: 0.8rem; }

/*------------------------------------*\
    #TEXT PASSAGE
\*------------------------------------*/
/**
 * 1) A passage of text, including various components (i.e. article, blog post)
 */
.c-text-passage {
  /**
	 * Link within the text passage
	 */
  /**
	 * Blockquote within text passage
	 */
  /**
	  * First-level heading within text passage
	  */
  /**
	 * Second-level heading within text passage
	 */
  /**
	 * Third-level heading within text passage
	 */
  /**
	 * Fourth-level heading within text passage
	 */
  /**
	 * Fifth-level heading within text passage
	 */
  /**
	 * Sixth-level heading within text passage
	 */
  /**
	 * Unordered list within text passage
	 */
  /**
	 * Ordered list within text passage
	 */ }
  .c-text-passage p {
    margin-bottom: 1rem; }
  .c-text-passage p:last-of-type {
    margin-bottom: 0; }
  .c-text-passage a:not(.c-btn):not(.c-arrow-link) {
    text-decoration: underline; }
  .c-text-passage .c-btn:hover {
    text-decoration: none !important; }
  .c-text-passage h1 {
    margin-bottom: 1rem; }
  .c-text-passage h2 {
    margin-top: 2.5rem;
    margin-bottom: 1rem; }
  .c-text-passage h2:first-of-type {
    margin-top: 0; }
  .c-text-passage h3 {
    margin-top: 2rem;
    margin-bottom: 1rem; }
  .c-text-passage h4 {
    margin-top: 2rem;
    margin-bottom: 1rem; }
  .c-text-passage h5 {
    margin-top: 2rem;
    margin-bottom: 1rem; }
  .c-text-passage h6 {
    margin-top: 2rem;
    margin-bottom: 1rem; }
  .c-text-passage ul,
  .c-tabs__content ul,
  .c-accordion-content ul {
    list-style: disc;
    margin-left: 2rem;
    margin-bottom: 1rem; }
    .c-text-passage ul ul,
    .c-tabs__content ul ul,
    .c-accordion-content ul ul {
    list-style: circle;}
    .c-text-passage ul li:last-child {
      margin-bottom: 0; }
  .c-text-passage ol,
  .c-tabs__content ol,
  .c-accordion-content ol {
    list-style: decimal;
    margin-left: 2rem;
    margin-bottom: 1rem; }
    .c-text-passage ol li:last-child {
      margin-bottom: 0; }
  .c-text-passage li,
  .c-tabs__content li,
  .c-accordion-content li {
    margin-bottom: 0.5rem;
    line-height: 1.6; }
  .c-text-passage figure {
    max-width: 85%;
    position: relative;
    margin: 1.5rem auto; }
  .c-text-passage figure > a {
    position: absolute;
    top: 0;
    right: 0;
    background: #1D72AF;
    color: #FFF;
    line-height: 1;
    font-weight: 700;
    padding: 1rem 2rem;
    font-size: .875rem;
    text-transform: uppercase;
    border: 0;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    box-shadow: 0 0 0 0 rgba(1,52,128,0.15);
    transition: all 0.15s ease-out;}
  .c-text-passage figure > a:hover, .c-text-passage figure > a:focus {
    background: #155583;
    border-color: #155583;
    box-shadow: 0 5px 15px 0 rgba(1,52,128,0.15);}
  .c-text-passage figure figcaption {
    display: block;
    background: #F6F6F6;
    border: 1px solid #EBEDEF;
    font-size: .875rem;
    padding: 1rem .875rem;
    color: #393D3F; }
  .c-text-passage div[data-video-url] {
    position: relative;
    padding-bottom: 56.25%; 
    height: 0; 
    overflow: hidden; 
    max-width: 100%;}
  .c-text-passage div[data-video-url] > iframe {
    position: absolute; 
    top: 0; 
    left: 0; 
    width: 100%;
    height: 100%; }


/*------------------------------------*\
    #BASE COMPONENT SPACING
\*------------------------------------*/
.c-comp {
    margin-top: 5.25rem;
    margin-bottom: 5.25rem;
}

.l-layout__content .c-comp {
  margin-top: 3.25rem;
  margin-bottom: 3.25rem;
}
.c-comp + .c-accordion-group {
  margin-top: -1.5rem; /* Offsets the padding of the first accordion when placed next to comp  */
}

/*------------------------------------*\
    #COMPONENT LEADIN
\*------------------------------------*/
.c-leadin {
    text-align: center;
    margin-bottom: 3.5rem;
}

.c-leadin__title {
    font-size: 2.125rem;
    font-weight: 700;
    color: #000;
}

.c-leadin__title:after {
    content: "";
    display: block;
    width: 45px;
    height: 5px;
    margin: 1rem auto;
    background: #FFDA76;
}

.c-leadin__description {
    font-weight: 300;
    font-size: 1.125rem;
    max-width: 750px;
    margin: 0 auto;
}

/*------------------------------------*\
    #ICON CIRCLE
\*------------------------------------*/
.c-icon {
    display: block;
    position: relative;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    background: #F0F7FC;
    border-radius: 100%;
}

.c-icon--action {
    background: #FFBA00;
    color: #000000;
}

.c-icon--ghost {
    background: none;
    border: 1px solid;
}

.c-icon--play:before {
    content: "";
    display: inline-block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    margin-left: 2px;
    border-style: solid;
    border-width: 8px 0 8px 13.9px;
    border-color: transparent transparent transparent currentColor;
}

.c-icon > img,
.c-icon > svg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 25px;
}

.c-icon > img.checkmark, 
.c-icon > svg.checkmark {
    width: 15px;
    height: 11px;
}

/*------------------------------------*\
    #RESPONSIVE VIDEO
\*------------------------------------*/
.video-responsive {
    position: relative;
    padding-bottom: 56.25%; 
    height: 0;
}

.video-responsive > iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/*------------------------------------*\
    #PAGINATION
\*------------------------------------*/
.pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 3.75rem 0;
}

/* line 104, src/scss/pages/_find-a-provider-results.scss */
.pagination > li {
  margin: 0 1rem;
}

/* line 111, src/scss/pages/_find-a-provider-results.scss */
.pagination > li.active {
  position: relative;
}

/* line 114, src/scss/pages/_find-a-provider-results.scss */
.pagination > li.active::after {
  content: '';
  position: absolute;
  bottom: -5px;
  right: -14px;
  background: #FFBA00;
  width: 35px;
  height: 2px;
}

.pagination__btn {
    display: block;
    border-radius: 100%;
    height: 30px;
    width: 30px;
    font-size: 0;
    background: #1D72AF;
    font-family: 'FontAwesome';
    text-align: center;
    line-height: 28px;
    cursor: pointer;
    transition: .3s;
}

.pagination__btn:not(.disabled):hover {
    background: #155583;
}

.pagination__btn.pagination__first,
.pagination__btn.pagination__last {
    margin-left: 0;
    margin-right: 0;
}

.pagination__first:before,
.pagination__prev:before,
.pagination__next:before,
.pagination__last:before {
    font-size: 1rem;
    color: #FFFFFF;
}

.pagination__first:before {
    content: "\f100";
}

.pagination__prev:before {
    content: "\f104";
}

.pagination__next:before {
    content: "\f105";
}

.pagination__last:before {
    content: "\f101";
}

.pagination__btn.disabled {
    background: #D7D9DA;
    cursor: not-allowed;
}

.pagination .btn-prev-next {
    height: 30px;
    width: 30px;
    font-size: 0;
    background: url(/assets/_img/Massey/left-arrow-blue.svg);
    background-size: contain;
}

.pagination .btn-prev-next.disabled {
    background: url(/assets/_img/Massey/left-arrow-disabled.svg);
}

.pagination > li.btn-prev-next:last-child {
    transform: rotate(180deg);
}

.pagination .page-link {
    color: #393D3F;
    padding: 0;
    border: none;
    text-decoration: none;
}

.pagination .page-link:hover {
    color: #1D72AF;
}

.img-caption-block {
    display: inline-block;
    width: 100%;
}

@media(min-width: 992px) {
    .img-caption-block--align-left,
    .c-text-passage .pull-left {
        float: left;
        max-width: 350px;
        margin: 0 2rem 2rem 0;
    }
    
    .img-caption-block--align-right,
    .c-text-passage .pull-right {
        float: right;
        max-width: 350px;
        margin: 0 0 2rem 2rem;
    }

    .img-caption-block--feature.img-caption-block--align-left {
        float: left;
        max-width: 400px;
        margin: 0 2rem 2rem 0;
    }

    .img-caption-block--feature.img-caption-block--align-right {
        float: right;
        max-width: 400px;
        margin: 0 0 2rem 2rem;
    }
}

.img-caption-block > img,
.c-text-passage .pull-left > img,
.c-text-passage .pull-right > img {
    display: block;
    width: 100%;
}

.img-caption,
.module-sm.caption {
    display: block;
    background: #F6F6F6;
    border: 1px solid #EBEDEF;
    font-size: .875rem;
    padding: 1rem .875rem;
    color: #393D3F;
}

.img-caption-block--align-left .img-caption,
.img-caption-block--align-right .img-caption {
    min-width: 100%;
}

/* line 10, src/scss/components/_slider.scss */
.slick-slider .slick-dots {
  z-index: 10;
}

/* line 13, src/scss/components/_slider.scss */
.slick-slider .slick-dots li {
  margin: 0;
}

/* line 18, src/scss/components/_slider.scss */
.slick-slider .slick-dots li.slick-active button::before {
  color: #013480;
}

/* line 25, src/scss/components/_slider.scss */
.slick-slider .slick-dots li button::before {
  font-size: 40px;
}

/* line 32, src/scss/components/_slider.scss */
.slick-slider .slick-prev,
.slick-slider .slick-next {
  height: 40px;
  width: 40px;
  z-index: 20;
}

/* line 38, src/scss/components/_slider.scss */
.slick-slider .slick-prev::before,
.slick-slider .slick-next::before {
  display: none;
}

/* line 43, src/scss/components/_slider.scss */
.slick-slider .slick-next::before,
.slick-slider .slick-prev {
  content: "";
  display: block;
  height: 40px;
  width: 40px;
  opacity: 1;
}

/* line 52, src/scss/components/_slider.scss */
.slick-slider .slick-next {
  right: 0px;
}

/* line 56, src/scss/components/_slider.scss */
.slick-slider .slick-next::before {
  background: url("/assets/_img/Massey/right-arrow-blue.svg") no-repeat;
  background-size: contain;
  background-position: center;
}

/* line 63, src/scss/components/_slider.scss */
.slick-slider .slick-prev {
  background: url("/assets/_img/Massey/left-arrow-blue.svg") no-repeat;
  background-size: contain;
  background-position: center;
  left: 0px;
}

/* line 70, src/scss/components/_slider.scss */
.slick-slider .slick-prev:hover,
.slick-slider .slick-prev:focus,
.slick-slider .slick-next:hover,
.slick-slider .slick-next:focus {
  background: url("/assets/_img/Massey/left-arrow-blue.svg") no-repeat;
  background-size: contain;
  background-position: center;
}

/*------------------------------------*\
    #NEWS ITEM
\*------------------------------------*/
.news-detail-page__back-btn {
  margin-bottom: 2rem;
}

/* line 96, src/scss/pages/_find-a-provider-details-body.scss */
.c-news-item {
  display: block;
  margin-bottom: 3rem;
}

@media (min-width: 61.9375rem) {
    /* line 96, src/scss/pages/_find-a-provider-details-body.scss */
    .c-news-item {
        display: grid;
        grid-template-columns: 1.5fr 1fr;
        grid-column-gap: 1.875rem;
    } 
    
    /* IE11 fallback */
    .ie11 .c-news-item {
        display: flex;
        justify-content: space-between;
    }
    
    .ie11 .c-news-item .c-news-item__content {
        flex: 0 0 60%;
        max-width: 60%;
    }
    
    .ie11 .c-news-item .c-news-item__image {
        flex: 0 0 40%;
        max-width: 40%;
        padding-left: 20px;
    }
}

/* line 108, src/scss/pages/_find-a-provider-details-body.scss */
.c-news-item .u-underline-title {
    font-size: 0.875rem;
    font-weight: 700;
    margin-bottom: 0;
}

/* line 111, src/scss/pages/_find-a-provider-details-body.scss */
.c-news-item .u-underline-title::after {
  width: 1.25rem;
  height: 3px;
  margin: 10px 0;
}

/* line 118, src/scss/pages/_find-a-provider-details-body.scss */
.c-news-item__content h3 > a {
    display: block;
    font-size: 1.5rem;
    color: #1D72AF;
    text-decoration: none;
}

@media (max-width: 61.9375rem) {
    .c-news-item__image {
        margin-bottom: .5rem;
        grid-row: 1;
    }
}

/*------------------------------------*\
    #LOCATION ITEM CARD
\*------------------------------------*/
/* line 37, src/scss/pages/_find-a-provider-details-body.scss */
.location-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  border: 1px solid #D7D9DA;
  background: #fff;
  padding: 1.25rem;
}

.location-card--columns {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
}

@media (max-width: 991px) {
    .location-card--columns {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}

.location-card--columns .location-card__content {
    margin-left: 25px;
}

@media (max-width: 991px) {
    .location-card--columns .location-card__content {
        margin: 0 auto;
        width: 100%;
    }
}

.location-card--columns .location-card__icon-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
}

@media (max-width: 991px) {
    .location-card--columns .location-card__icon-wrapper {
        display: block;
    }
}

.location-card--columns .location-card__icon-wrapper .location-card__icon:first-of-type {
    margin-right: 60px;
}

@media (max-width: 991px) {
    .location-card--columns .location-card__icon-wrapper .location-card__icon:first-of-type {
        margin-right: 0;
    }
}

/* line 44, src/scss/pages/_find-a-provider-details-body.scss */
.location-card__map {
  margin-bottom: 1.25rem;
}

@media (min-width: 991px) {
    .location-card--columns .location-card__map {
        width: 18.75rem;
    }
}

@media (max-width: 61.9375rem) {
  /* line 44, src/scss/pages/_find-a-provider-details-body.scss */
  .location-card__map {
    height: auto;
    width: 100%;
    margin: 0 auto 1.25rem;
  }
}

/* line 54, src/scss/pages/_find-a-provider-details-body.scss */
.location-card__name {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 15px;
    color: #1D72AF;
}

.location-card__name > a {
    color: #1D72AF;
    text-decoration: none;
}

/* line 61, src/scss/pages/_find-a-provider-details-body.scss */
.location-card__icon, .location-card__icon-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

/* line 65, src/scss/pages/_find-a-provider-details-body.scss */
.location-card__icon {
  margin-bottom: 1.25rem;
}

/* line 68, src/scss/pages/_find-a-provider-details-body.scss */
.location-card .c-icon {
    width: 1.875rem;
    height: 1.875rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

/* line 72, src/scss/pages/_find-a-provider-details-body.scss */
.location-card__icon .c-icon img {
  height: 15px;
  width: 10px;
}

/* line 79, src/scss/pages/_find-a-provider-details-body.scss */
.location-card__icon-content {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-left: 15px;
}

/* line 82, src/scss/pages/_find-a-provider-details-body.scss */
.location-card__icon-content p {
  margin-bottom: 5px;
}

/* line 85, src/scss/pages/_find-a-provider-details-body.scss */
.location-card__icon-content a {
  color: #1D72AF;
}

.location-card__phone {
    font-size: 1.3125rem;
    font-weight: 500;
    line-height: 1;
}

/* line 1, src/scss/_layout.scss */
.bg-cta-grid {
  display: flex;
}

/* line 5, src/scss/_layout.scss */
.bg-cta-grid p {
  margin-bottom: 0;
}

@media (max-width: 991px) {
  /* line 1, src/scss/_layout.scss */
  .bg-cta-grid {
    flex-direction: column;
    height: auto;
  }
}

/* line 18, src/scss/_layout.scss */
.bg-cta-grid__left-section, 
.bg-cta-grid__right-section {
  width: 50%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

@media (max-width: 991px) {
  /* line 18, src/scss/_layout.scss */
  .bg-cta-grid__left-section, 
  .bg-cta-grid__right-section {
    width: 100%;
  }
}

/* line 29, src/scss/_layout.scss */
.bg-cta-grid__left-section {
  display: flex;
  flex-direction: column;
  position: relative;
  text-align: center;
}

/* line 55, src/scss/_layout.scss */
.bg-cta-grid__right-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1.25rem 4.0625rem;
}

@media (max-width: 991px) {
  /* line 55, src/scss/_layout.scss */
  .bg-cta-grid__right-section {
    padding: 1.25rem 0;
  }
}

/* line 74, src/scss/_layout.scss */
.bg-cta-grid__cta-content {
  max-width: 29rem;
  margin: 5.625rem auto 0;
}

/* line 78, src/scss/_layout.scss */
.bg-cta-grid__cta-content h2 {
  position: relative;
}

@media (max-width: 991px) {
  /* line 78, src/scss/_layout.scss */
  .bg-cta-grid__cta-content h2 {
    font-size: 1.5rem;
  }
}

@media (max-width: 991px) {
  /* line 86, src/scss/_layout.scss */
  .bg-cta-grid__cta-content p {
    font-size: 0.875rem;
  }
}

@media (max-width: 991px) {
  /* line 74, src/scss/_layout.scss */
  .bg-cta-grid__cta-content {
    margin: 3.125rem auto 0;
    max-width: 20rem;
  }
}

/* line 98, src/scss/_layout.scss */
.bg-cta-grid__header-divider {
  margin: 0.9375rem auto 2.8125rem;
  height: 4.13px;
  width: 51.6px;
  background-color: #FFDA76;
}

@media (max-width: 991px) {
  /* line 98, src/scss/_layout.scss */
  .bg-cta-grid__header-divider {
    margin: 0.9375rem auto 0.8125rem;
  }
}

/* line 109, src/scss/_layout.scss */
.bg-cta-grid__cta-logo {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  max-width: 14.375rem;
  padding: 0.875rem;
  border-bottom: 1px solid black;
  background: #fff;
}

@media (max-width: 991px) {
  /* line 109, src/scss/_layout.scss */
  .bg-cta-grid__cta-logo {
    max-width: 11.875rem;
    padding: .875rem 1.375rem;
  }
}

/* line 122, src/scss/_layout.scss */
.bg-cta-grid__cta-logo img {
  max-width: 10.625rem;
}

@media (max-width: 991px) {
  /* line 122, src/scss/_layout.scss */
  .bg-cta-grid__cta-logo img {
    max-width: 9.375rem;
  }
}

/* line 130, src/scss/_layout.scss */
.bg-cta-grid__content-wrapper {
  display: flex;
}

@media (max-width: 991px) {
  /* line 141, src/scss/_layout.scss */
  .bg-cta-grid__content h4 {
    font-size: 1.125rem;
  }
}

/* line 148, src/scss/_layout.scss */
.bg-cta-grid__content-icon {
  margin-right: 1.5625rem;
}

/* line 152, src/scss/_layout.scss */
.bg-cta-grid__content-divider {
  height: 1px;
  width: 100%;
  border: 1px solid #D7D9DA;
  margin: 2.5rem 0;
}

/*------------------------------------*\
    #MASSEY FAD CONTENT
\*------------------------------------*/
.find-a-provider-results__grid-item .bf-widget a {
    text-decoration: none;
}
.find-a-provider-results__grid-item .bf-widget .bsr-rating-wrapper {
    border-bottom: none;
    padding: 0;
    margin: 0;
}
.find-a-provider-results__grid-item .bf-widget {
    padding: 0;
}
.find-a-provider-results__grid-item .bf-widget .bsr-rating-wrapper .star-rating {
    display: block;
    float: none;
    text-align: center;
    margin: 0 auto;
}
.find-a-provider-results__grid-item .bf-widget .fa-star-rating {
   float: none;
}
.find-a-provider-results__grid-item .star-rating-count, 
.find-a-provider-results__grid-item .star-rating-comment-count {
    float: none !important;
    display: inline-block;
    padding-left: 3px !important;
    padding-right: 2px !important;
    font-size: .875rem !important;
    font-family: 'Roboto', sans-serif !important;
}

.find-a-provider-details-body__wrapper {
  max-width: 52.5rem;
}

/* line 6, src/scss/pages/_find-a-provider-details-body.scss */
.find-a-provider-details-body__content {
  margin-top: 45px;
}

/* line 8, src/scss/pages/_find-a-provider-details-body.scss */
.find-a-provider-details-body__content h2 {
  margin-bottom: 1.25rem;
}

/* line 12, src/scss/pages/_find-a-provider-details-body.scss */
.find-a-provider-details-body__content a {
  color: #1D72AF;
}

/* line 16, src/scss/pages/_find-a-provider-details-body.scss */
.find-a-provider-details-body__content ul {
  padding-left: 5px;
}

/* line 20, src/scss/pages/_find-a-provider-details-body.scss */
.find-a-provider-details-body__content hr {
  background: #C2D1D9;
  width: 95%;
}

/* line 26, src/scss/pages/_find-a-provider-details-body.scss */
.find-a-provider-details-body__locations, .find-a-provider-details-body__videos {
  display: grid;
  grid-gap: 1.25rem;
  grid-template-columns: repeat(auto-fill, minmax(25.625rem, 1fr));
  margin-bottom: 50px;
}

@media (max-width: 61.9375rem) {
  /* line 26, src/scss/pages/_find-a-provider-details-body.scss */
  .find-a-provider-details-body__locations, .find-a-provider-details-body__videos {
    grid-template-columns: repeat(1, 1fr);
  }
}

@media (max-width: 61.9375rem) {
  /* line 90, src/scss/pages/_find-a-provider-details-body.scss */
  .find-a-provider-details-body__videos {
    grid-template-columns: repeat(1, 1fr);
  }
}

/* line 96, src/scss/pages/_find-a-provider-details-body.scss */
.find-a-provider-details-body__news {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  grid-column-gap: 1.875rem;
  margin-bottom: 1.875rem;
}

@media (max-width: 61.9375rem) {
  /* line 96, src/scss/pages/_find-a-provider-details-body.scss */
  .find-a-provider-details-body__news {
    grid-template-columns: 1fr;
  }
}

/* line 108, src/scss/pages/_find-a-provider-details-body.scss */
.find-a-provider-details-body__news-content .u-underline-title {
  font-size: 0.875rem;
}

/* line 111, src/scss/pages/_find-a-provider-details-body.scss */
.find-a-provider-details-body__news-content .u-underline-title::after {
  width: 1.25rem;
  height: 3px;
  margin: 10px 0;
}

/* line 118, src/scss/pages/_find-a-provider-details-body.scss */
.find-a-provider-details-body__news-content h3 {
  font-size: 1.5rem;
  color: #1D72AF;
}

	/* IE11 fallbacks for Grid */
@media (min-width: 61.9375rem) {
  /* line 26, src/scss/pages/_find-a-provider-details-body.scss */
  .ie11 .find-a-provider-details-body__locations, 
  .ie11 .find-a-provider-details-body__videos {
    display: flex;
    margin: 0 -.75rem;
  }
    
  .ie11 .find-a-provider-details-body__locations > *, 
  .ie11 .find-a-provider-details-body__videos > * {
    flex: 0 0 50%;
    max-width: calc(50% - .75rem);
    margin: 0 .75rem;
  }
}

.star-rating-count,
.star-rating-comment-count {
    font-family: 'Roboto', sans-serif !important;
    font-size: 1rem !important;
    color: #393D3F !important;
}
.provider-ratings-reviews .star-rating-count,
.provider-ratings-reviews .star-rating-comment-count,
.provider-ratings-reviews .bsr-comments-wrapper {
    padding: 0 !important;
}
.provider-ratings-reviews .bsr-comment-text,
.provider-ratings-reviews .comment_date,
.provider-ratings-reviews .star-rating-count,
.provider-ratings-reviews .star-rating-comment-count {
    font-family: 'Roboto', sans-serif !important;
    font-size: 1rem !important;
    color: #393D3F !important;
}
.c-hero .star-rating,
.provider-ratings-reviews .star-rating {
    display: block !important;
    float: none !important;
    clear: both;
    margin-bottom: 0 !important;
}
.provider-ratings-reviews .bf-widget .fa-star-rating {
    float: none;
}
.c-hero .star-rating-count,
.c-hero .star-rating-comment-count,
.provider-ratings-reviews .star-rating-count,
.provider-ratings-reviews .star-rating-comment-count {
    display:inline-block;
    clear: both !important;
    float: none !important;
}
.provider-ratings-reviews .bsr-comment-wrapper {
    border-color: #C2D1D9 !important;
}
.provider-ratings-reviews .fa-star-rating {
    padding-left: 0 !important;
}
.provider-ratings-reviews .bf-widget .comment_right {
    margin-top: 25px !important;
}
.provider-ratings-reviews .hvr-icon {
    max-width: .5rem !important;
    margin-left: .5rem;
}
.c-hero .bf-widget {
    margin-left: 0;
    padding-left: 0;
}

.c-hero .bf-widget .fa-star-rating {
    float: none !important;
}

.c-hero .fa-star-rating,
.c-hero .star-rating-count {
    padding-left: 0 !important;
}
.c-hero .star-rating-count {
    padding-right: 0 !important;
}

/*------------------------------------*\
    #MASSEY FAD LIST
\*------------------------------------*/
.find-a-provider-search {
    background: #FFFFFF;
}
.find-a-provider-search input::-webkit-input-placeholder {
    font-size: .875rem
}

.find-a-provider-search input::-moz-placeholder {
    font-size: .875rem
}

.find-a-provider-search input:-ms-input-placeholder {
    font-size: .875rem
}

.find-a-provider-search input::-ms-input-placeholder {
    font-size: .875rem
}

.find-a-provider-search input::placeholder {
    font-size: .875rem
}

.find-a-provider-search .selectize-control,.find-a-provider-search input {
    margin-right: 1rem;
    height: 3.125rem
}

.find-a-provider-search .selectize-control.single .selectize-input.input-active {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.find-a-provider-search .selectize-input {
    border-radius: unset;
    height: 3.125rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.find-a-provider-search .selectize-input .item {
    position: relative
}

.find-a-provider-search .selectize-dropdown [data-selectable].option,.find-a-provider-search .selectize-input .item,.find-a-provider-search .selectize-input>input {
    font-size: .875rem
}

.find-a-provider-search input:first-of-type,
.find-a-provider-search .selectize-control:first-of-type {
    width: 20rem;
    flex: 2 1 auto;
}

.find-a-provider-search #txtResultsZip,
.find-a-provider-search #sessionZip,
.find-a-provider-search .selectize-control:last-of-type {
    width: 11.875rem
}

@media (max-width: 61.9375rem) {
    .find-a-provider-search #txtResultsZip, 
    .find-a-provider-search #sessionZip, 
    .find-a-provider-search .selectize-control:last-of-type {
        width: 100%;
    }
    
    .find-a-provider-search .selectize-control,.find-a-provider-search input {
        margin-right:0;
        margin-top: 1rem
    }

    .find-a-provider-search #provider-name-input,.find-a-provider-search .selectize-control:first-of-type {
        width: 100%
    }
}

@media (max-width: 61.9375rem) {
    .find-a-provider__cta-box {
        -webkit-box-ordinal-group:1;
        -ms-flex-order: 0;
        order: 0;
        margin-bottom: 1.875rem;
        max-width: 100%
    }

    .find-a-provider-search__wrapper .c-btn {
        margin-top: 1rem
    }
}

.find-a-provider-search__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 1.875rem;
    -webkit-box-shadow: 0 10px 30px 0 rgba(1,52,128,.1);
    box-shadow: 0 10px 30px 0 rgba(1,52,128,.1)
}

.find-a-provider-search__wrapper .c-btn {
    min-height: 3.125rem;
    max-width: 200px;
    height: 100%
}

@media (max-width: 61.9375rem) {
    .find-a-provider-search__wrapper {
        -webkit-box-orient:vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column
    }
}

.find-a-provider-results__result {
  font-size: 1rem;
}

/* line 6, src/scss/pages/_find-a-provider-results.scss */
.find-a-provider-results__result span {
  font-weight: bold;
}

@media (max-width: 61.9375rem) {
  /* line 3, src/scss/pages/_find-a-provider-results.scss */
  .find-a-provider-results__result {
    text-align: center;
  }
}

/* line 15, src/scss/pages/_find-a-provider-results.scss */
.find-a-provider-results__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-column-gap: 1.875rem;
}

@media (max-width: 61.9375rem) {
  /* line 15, src/scss/pages/_find-a-provider-results.scss */
  .find-a-provider-results__grid {
    grid-template-columns: repeat(1, 1fr);
    grid-column-gap: 0;
  }
}

@media (min-width: 991px) {
    .ie11 .find-a-provider-results__grid {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        margin: 3.5rem -15px 0;
    }
    
    .ie11 .find-a-provider-results__grid > * {
        max-width: calc(33.333% - 30px);
        width: 100%;
        margin: 15px;
    }
}

/* line 26, src/scss/pages/_find-a-provider-results.scss */
.find-a-provider-results__grid-item {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: 1px solid #D7D9DA;
  text-align: center;
  margin-top: 3.75rem;
  padding: 0 2rem;
}

/* line 37, src/scss/pages/_find-a-provider-results.scss */
.find-a-provider-results__grid-item-name {
  font-size: 1.4375rem;
  font-weight: 700;
  line-height: 1.2;
}

.find-a-provider-results__grid-item-name > a {
    color: #0072B4;
    text-decoration: none;
}

.find-a-provider-results__grid-item img {
    height: 11.5625rem;
    width: 8.125rem;
    margin-top: -1.875rem;
    margin-bottom: 1.5rem;
    border-radius: 5px;
    box-shadow: 0 1px 5px 0 rgba(1,52,128,0.15);
}

.find-a-provider-results__grid-item-number {
    font-size: 1.3125rem;
    font-weight: 700;
    line-height: 1.2;
    color: #0072B4;
    text-decoration: none;
    margin-bottom: 1.5rem;
}

/* line 44, src/scss/pages/_find-a-provider-results.scss */
.find-a-provider-results__grid-item .c-btn {
    margin-top: auto;
    margin-bottom: 2rem;
}

@media (max-width: 61.9375rem) {
  /* line 26, src/scss/pages/_find-a-provider-results.scss */
  .find-a-provider-results__grid-item {
    display: none;
  }
}

@media (max-width: 61.9375rem) {
  /* line 54, src/scss/pages/_find-a-provider-results.scss */
  .find-a-provider-results__grid-item--active {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

/* line 61, src/scss/pages/_find-a-provider-results.scss */
.find-a-provider-results__grid-content-wrapper {
  margin-top: 1.875rem;
}

.find-a-provider p {
    margin-bottom: 0
}

.find-a-provider__icon {
    display: grid;
    grid-template-columns: 3.125rem 1fr;
    margin: 1.875rem 0;
    position: relative
}

.find-a-provider__icon figure,.find-a-provider__icon p {
    -ms-flex-item-align: center;
    align-self: center
}

.find-a-provider__icon p {
    margin-left: 1.25rem
}

.find-a-provider__icon--cta-box {
    margin-top: 1.875rem;
    grid-template-columns: 4.375rem 1fr
}

.find-a-provider__icon--cta-box .c-icon {
    width: 4.0625rem;
    height: 4.0625rem;
    background: #fff
}

.find-a-provider__icon--cta-box:last-of-type {
    margin-bottom: 0;
}

.find-a-provider__icon--cta-box p {
    font-size: .875rem
}

.find-a-provider__icon--cta-box p span {
    font-size: 1.125rem;
    font-weight: 700
}

.find-a-provider__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between
}

.find-a-provider__content {
    max-width: 41.875rem;
    padding-right: 1.25rem
}

@media (max-width: 61.9375rem) {
    .find-a-provider__wrapper {
        -webkit-box-orient:vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column
    }

    .find-a-provider__content {
        max-width: 100%;
        padding-right: 0
    }
}

.find-a-provider__cta-box {
    background-color: #013480;
    max-width: 28.125rem;
    padding: 2.5rem 3.125rem;
    color: #fff;
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1
}

.find-a-provider__wrapper .find-a-provider__cta-box h2 {
    margin-bottom: 1.25rem
}

@media (min-width: 75rem) {
    .find-a-provider__wrapper .find-a-provider__cta-box {
        min-height:24.375rem
    }
}

@media (max-width: 61.9375rem) {
    .find-a-provider__wrapper .find-a-provider__cta-box {
        -webkit-box-ordinal-group:1;
        -ms-flex-order: 0;
        order: 0;
        margin-bottom: 1.875rem;
        max-width: 100%
    }
}


/*------------------------------------*\
    #NEWSCENTER
\*------------------------------------*/
.c-hero + .news-search {
    margin-top: -3.5rem;
    position: relative;
}

@media(min-width: 768px) {
    .c-hero + .news-search {
        margin-top: -3.5rem;
    }
}

@media(min-width: 991px) {
    .c-hero + .news-search {
        margin-top: -5.5rem;
    }
}

.news-search-nav {
    -webkit-box-shadow: 0 10px 30px 0 rgba(1,52,128,.1);
    box-shadow: 0 10px 30px 0 rgba(1,52,128,.1)
}

.news-search-nav input,.news-search-nav select {
    border: 1px solid #d7d9da;
    height: 50px;
    font-size: 14px;
    color: #393d3f
}

.news-search-nav input::-webkit-input-placeholder {
    color: #393d3f;
}

.news-search-nav input::-moz-placeholder {
    color: #393d3f;
}

.news-search-nav input:-ms-input-placeholder {
    color: #393d3f;
}

.news-search-nav input::-ms-input-placeholder {
    color: #393d3f;
}

.news-search-nav input::placeholder {
    color: #393d3f;
}

.news-search-nav__nav-container {
    display: none;
}

.news-search-nav__nav-container ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    border-bottom: 1px solid #d7d9da
}

@media (min-width: 991px) {
    .news-search-nav__nav-container {
        display:block;
        background: #FFFFFF;
    }
}

.news-search-nav__nav-item {
    position: relative;
    padding: 20px
}

.news-search-nav__nav-item a {
    color: #1d72af;
    text-decoration: none;
}

.news-search-nav__nav-item--active {
    border-right: 1px solid #d7d9da;
    border-top: 4px solid #ffba00
}

.news-search-nav__nav-item--active::after {
    content: '';
    position: absolute;
    background: #fff;
    height: 1px;
    width: 100%;
    right: 20px;
    bottom: -1px;
    left: 0
}

.news-search-nav__nav-item--active a {
    color: #000;
    font-weight: 700
}

.news-search-nav__nav-item--active:not(:first-of-type) {
    border-left: 1px solid #d7d9da
}

.news-search-nav__nav-item--active:last-of-type {
    border-right: none
}

.news-search-nav__nav-item--dropdown {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.news-search-nav__nav-item--dropdown::before {
    content: ' ';
    display: block;
    position: relative;
    top: 50%;
    margin-left: 5px;
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    margin-top: -3px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 5px 5px 0;
    border-color: #1d72af transparent transparent
}

.news-search-nav__nav-item--dropdown ul li ul:hover,.news-search-nav__nav-item--dropdown:hover>ul {
    visibility: visible;
    opacity: 1;
    display: block
}

.news-search-nav__dropdown {
    visibility: hidden;
    opacity: 0;
    min-width: 12rem;
    padding: 20px;
    position: absolute;
    -webkit-transition: .5s;
    transition: .5s;
    right: 0;
    margin-top: 50px;
    background: #fff;
    -webkit-box-shadow: 0 10px 30px 0 rgba(1,52,128,.1);
    box-shadow: 0 10px 30px 0 rgba(1,52,128,.1);
    border-bottom: none!important;
    display: none
}

.news-search-nav__dropdown li a {
    color: #000
}

.news-search-nav .c-btn {
    width: 100%
}

.news-search-nav__search-container {
    border-radius: 5px;
    background-color: #fff;
    padding: 20px
}

@media (min-width: 991px) {
    .news-search-nav .c-btn {
        width:160px;
        height: 50px
    }

    .news-search-nav__search-container {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center
    }
}

.news-search-nav__search-categories {
    display: block;
    margin-top: 0!important
}

@media (min-width: 991px) {
    .news-search-nav__search-categories {
        display:none
    }
}

.news-search-nav__news-search {
    margin: 10px 0
}

.news-search-nav__news-search {
  margin: 10px 0;
  /*flex: 2 1 auto;
  max-width: 480px;*/
  flex: 2 1 410px;
}

@media (min-width:991px) {
.news-search-nav__news-search {
  /*max-width: 480px;*/
  flex: 2 1 410px;
  margin: 10px 1rem 10px 0;
}
}

.news-search-nav .advanced-styled-select {
  display: flex;
  align-items: center;
  flex: 1 1 auto;
  border: 1px solid #d7d9da;
  height: 50px;
  font-size: 14px;
  color: #393d3f;
  margin-bottom: 10px;
}

@media (min-width:991px) { 
.news-search-nav .advanced-styled-select {
    margin-bottom: 0;
}
}

.news-search-nav .advanced-styled-select input {
  height: auto;
  min-height: auto;
  border: none;
}

@media (min-width:991px) {
.news-search-nav .advanced-styled-select:last-of-type {
  margin-right: 1rem;
}
}

.news-search-nav .advanced-styled-select [type="image"] {
max-width: 42px;
height: auto;
min-height: auto;
}


.ui-datepicker {
  -webkit-box-shadow: 0 10px 30px 0 rgba(1,52,128,.1);
    box-shadow: 0 10px 30px 0 rgba(1,52,128,.1);
}

.ui-datepicker table {
  background: #FFFFFF;
}

.ui-datepicker table th, .ui-datepicker table td {
padding: .75rem 1rem;
}

.ui-datepicker .ui-datepicker-header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  background: #FFFFFF;
  padding: 1rem;
  border: 1px solid #EBEDEF;
  border-bottom: 0;
}

.ui-datepicker .ui-datepicker-title {
  font-weight: 600;
  font-size: 1.25rem;
  flex: 0 0 100%;
}

.news-search + .l-container {
  margin-top: 5.25rem;
}

.news-module__featured-article {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center
}

.news-search + .l-container {
    margin-top: 5.25rem;
}

.news-module__featured-article {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.news-module__featured-article>div {
    width: 50%
}

.news-module__featured-article-img {
    margin-right: 50px
}

@media (max-width: 991px) {
    .news-module__featured-article {
        -webkit-box-orient:vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start
    }

    .news-module__featured-article>div {
        width: 100%
    }

    .news-module__featured-article-img {
        margin-right: 0;
        margin-bottom: 50px
    }
}

.news-module__featured-article-img img {
    width: 100%
}

.news-module__featured-article-header {
    color: #1d72af;
    font-size: 37px;
    margin-bottom: 10px;
    line-height: 42px
}

.news-module__featured-article-header > a {
    text-decoration: none;
}

@media (max-width: 991px) {
    .news-module__featured-article-header {
        margin-top:-10px;
        font-size: 28px;
        line-height: 32px
    }
}


/*------------------------------------*\
    #INTRO CTA
\*------------------------------------*/
/**
 *
 * This is styling for the component that comes from VCU proper but used on Massey.
 * Under NO circumstances should overrides or updates for this go in massey-components.css
 *
 */
.cta-block {
    padding-top: 7.5vw;
    padding-bottom: 7.5vw;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top;
}

.cta-block.short {
    padding-top: 5vw;
    padding-bottom: 5vw;
}

.cta-block-text {
    max-width: 45rem;
    margin: 0 auto;
    text-align: center;
    color: #FFFFFF;
}

.cta-block-text > h2,
.cta-block-text > h1 {
    margin-bottom: 1rem;
}

.cta-block-text > h2:after,
.cta-block-text > h1:after {
    content: "";
    display: block;
    width: 45px;
    height: 5px;
    margin: 1rem auto 2rem;
    background: #FFDA76;
}

.cta-block .outline-btn {
    display: inline-block;
    border: 1px solid #FFBA00;
    background: #FFBA00;
    color: #000;
    line-height: 1;
    font-weight: 700;
    padding: 1rem 2rem;
    font-size: .875rem;
    text-transform: uppercase;
    border: 0;
    text-align: center;
    min-width: 195px;
    cursor: pointer;
    box-shadow: 0 0 0 0 rgb(1 52 128 / 15%);
    transition: all 0.15s ease-out;
}


/*------------------------------------*\
    #LOCATIONS
\*------------------------------------*/

.c-hero + .location-detail__info-bar{
    position: relative;
    margin-top: -4rem;
    z-index: 10;
}

@media (min-width:991px) {
    .c-hero + .location-detail__info-bar{
        margin-top: -6rem;
    }
}

.location-detail__info-bar + .l-layout {
    margin-top: 3.5rem;
    margin-bottom: 3.5rem;
}

.location-detail__img {
    overflow: hidden;
    margin-bottom: 1.5rem;
    border-radius: 5px;
}

.c-loc-tools {
    display: none;
}
@media (min-width:991px) {
    .c-loc-tools {
        display: flex;
    }
}
.c-loc-tool__trigger {
    text-transform: uppercase;
    color: #1D72AF;
    border: 2px solid #1D72AF;
    font-weight: 700;
    font-size: .875rem;
}
.c-loc-tool__trigger.is-active,
.c-loc-tool__trigger:hover {
    background: #1D72AF;
    color: #FFFFFF;
}
.c-loc-tool__trigger + .c-loc-tool__trigger {
    margin-left: -6px;
}
#avid-loc-container.is-list-view #avid-loc-col-right {
    max-width: 82rem;
    width: 100%;
    margin: 0 auto; 
    padding-left: 1rem;
    padding-right: 1rem;
}
@media (min-width: 84rem) {
    #avid-loc-container.is-list-view #avid-loc-col-right { 
      padding-left: 0;
      padding-right: 0;
    }
}
#avid-loc-container.is-map-view #avid-loc-col-right {
    background: #EBEDEF;
}

#avid-loc-container.is-map-view #avid-loc-map {
    height: 600px;
}

@media (min-width: 84rem) {
    #avid-loc-container.is-map-view #avid-loc-col-right {
        height: auto !important;
        max-height: 600px !important;
    }
}

.location-detail__info-bar-wrapper {
    display: grid;
    grid-template-columns: repeat( auto-fit, minmax(250px, 1fr) );
    grid-gap: 30px;
    padding: 30px;
    background: #FFFFFF;
    -webkit-box-shadow: 0 10px 30px 0 rgba(1,52,128,.15);
    box-shadow: 0 10px 30px 0 rgba(1,52,128,.15)
}

.location-detail__info-bar-wrapper p {
    margin-bottom: 0
}

.location-detail__info-bar-wrapper h3 {
    font-size: 20px
}

.location-detail__info-bar-item {
    border-right: 2px solid #d7d9da
}

.location-detail__info-bar-item .c-btn {
    width: 100%
}

@media (max-width: 990px) {
    .location-detail__info-bar-wrapper {
        grid-gap:0;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column
    }

    .location-detail__info-bar-item {
        border-right: none;
        border-bottom: 2px solid #d7d9da;
        padding: 20px 0
    }
}

.location-detail__info-bar-item:last-of-type {
    border-right: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

@media (max-width: 990px) {
    .location-detail__info-bar-item:last-of-type {
        display:block;
        padding-bottom: 0;
        border-bottom: none
    }
}

/*------------------------------------*\
    #SITEMAP
\*------------------------------------*/
.sitemap__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 30px;
    max-width: 1200px
}

@media (max-width: 991px) {
    .sitemap__wrapper {
        -webkit-box-orient:vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        padding: 15px
    }
}

.sitemap__heading {
    font-size: 23px;
    margin-bottom: 15px
}

.sitemap__column:last-of-type {
    margin-left: auto
}

.sitemap__content-wrapper {
    margin-bottom: 50px
}

.sitemap ul {
    padding-left: 20px
}

.sitemap ul li {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.sitemap ul li:after {
    content: '';
    position: absolute;
    border-radius: 50%;
    left: -15px
}

.sitemap__list>ul {
    margin: 15px 0
}

.sitemap__list li:after {
    background: #000;
    width: 8px;
    height: 8px
}

.sitemap__sub-list {
    list-style: circle
}

.sitemap__sub-list>ul {
    margin: 10px 0
}

.sitemap__sub-list li:after {
    width: 6px;
    height: 6px;
    background: #fff;
    border: 1px solid #000
}

/*------------------------------------*\
    #SERVICES A-Z
\*------------------------------------*/
.c-hero + .a-z-page__nav-wrapper {
    position: relative;
    margin-top: -3rem;
}

.a-z-page__nav-wrapper {
  display: flex;
  background-color: #FFFFFF;
  box-shadow: 0 10px 30px 0 rgba(1, 52, 128, 0.1);
  height: 65px;
  padding: 0 30px;
}

@media (max-width: 991px) {
  /* line 3, src/scss/pages/a-z-page.scss */
  .a-z-page__nav-wrapper {
    display: block;
    height: auto;
    padding: 20px;
  }
}

/* line 17, src/scss/pages/a-z-page.scss */
.a-z-page__nav {
  padding: 0;
  list-style: none;
  display: flex;
  flex: 1 0 0%;
  justify-content: space-between;
  align-items: center;
}

@media (max-width: 991px) {
  /* line 17, src/scss/pages/a-z-page.scss */
  .a-z-page__nav {
    display: none;
  }
}

/* line 30, src/scss/pages/a-z-page.scss */
.a-z-page__nav-link {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
}

/* line 37, src/scss/pages/a-z-page.scss */
.a-z-page__nav-link.active::after {
  content: '';
  position: absolute;
  border-top: 4px solid #FFBA00;
  width: 100%;
  top: -15px;
}

/* line 45, src/scss/pages/a-z-page.scss */
.a-z-page__nav-link.active a {
  color: #000;
}

/* line 51, src/scss/pages/a-z-page.scss */
.a-z-page__nav-link.disabled a {
  text-decoration: none;
  cursor: not-allowed;
  color: #969491;
}

/* line 58, src/scss/pages/a-z-page.scss */
.a-z-page__nav-link a {
  display: block;
  padding: 5px 10px;
  color: #1D72AF;
  font-weight: bold;
  text-decoration: none;
}

/* line 66, src/scss/pages/a-z-page.scss */
.a-z-page__nav-title {
  display: grid;
  place-content: center;
  font-size: 16px;
  color: #000;
  font-weight: bold;
  padding-right: 30px;
  position: relative;
  white-space: nowrap;
}

/* line 76, src/scss/pages/a-z-page.scss */
.a-z-page__nav-title::after {
  content: '';
  position: absolute;
  border-right: 1px solid #D7D9DA;
  height: 100%;
  top: 0;
  right: 0;
}

@media (max-width: 991px) {
  /* line 76, src/scss/pages/a-z-page.scss */
  .a-z-page__nav-title::after {
    display: none;
  }
}

@media (max-width: 991px) {
  /* line 66, src/scss/pages/a-z-page.scss */
  .a-z-page__nav-title {
    display: block;
  }
}

/* line 94, src/scss/pages/a-z-page.scss */
.a-z-page__mobile-nav {
  display: none;
  margin-top: 15px;
  border: 1px solid #D7D9DA;
  font-size: 14px;
  height: 50px;
}

@media (max-width: 991px) {
  /* line 94, src/scss/pages/a-z-page.scss */
  .a-z-page__mobile-nav {
    display: block;
  }
}

/* line 106, src/scss/pages/a-z-page.scss */
.a-z-page .u-side-news-header {
  margin: 40px 0;
}

@media (max-width: 991px) {
  /* line 106, src/scss/pages/a-z-page.scss */
  .a-z-page .u-side-news-header {
    margin: 30px 0;
  }
}

/* line 113, src/scss/pages/a-z-page.scss */
.a-z-page .u-side-news-header:first-of-type {
  margin-top: 0;
}

/* line 118, src/scss/pages/a-z-page.scss */
.a-z-page__title {
  color: #1D72AF;
  font-size: 23px;
}

@media (max-width: 991px) {
  /* line 118, src/scss/pages/a-z-page.scss */
  .a-z-page__title {
    font-size: 18px;
  }
}

/* line 127, src/scss/pages/a-z-page.scss */
.a-z-page p {
  margin-bottom: 40px;
}

@media (max-width: 991px) {
  /* line 127, src/scss/pages/a-z-page.scss */
  .a-z-page p {
    margin-bottom: 30px;
  }
}

/*------------------------------------*\
    #SITE SEARCH
\*------------------------------------*/
.l-layout__column hr {
    background: #D7D9DA;
}

.u-link-header {
  font-size: 24px;
  color: #1D72AF;
  font-weight: bold;
  line-height: 22px;
}

/* line 8, src/scss/pages/_search-page.scss */
.u-side-card {
  display: flex;
  padding: 10px 15px;
  border: 1px solid #D7D9DA;
  align-items: center;
}

/* line 14, src/scss/pages/_search-page.scss */
.u-side-card .u-link-header {
  font-size: 18px;
}

/* line 18, src/scss/pages/_search-page.scss */
.u-side-card--location {
  flex-direction: column;
  align-items: flex-start;
}

/* line 22, src/scss/pages/_search-page.scss */
.u-side-card--location .c-icon {
  width: 30px;
  height: 30px;
}

/* line 25, src/scss/pages/_search-page.scss */
.u-side-card--location .c-icon img {
  width: 12px;
}

/* line 31, src/scss/pages/_search-page.scss */
.u-side-card__wrapper {
  display: flex;
  align-items: flex-start;
}

/* line 37, src/scss/pages/_search-page.scss */
.u-side-card__content {
  margin-left: 10px;
}

/* line 40, src/scss/pages/_search-page.scss */
.u-side-card__content h4 {
  font-size: 18px;
  color: #0072B4;
}

/* line 45, src/scss/pages/_search-page.scss */
.u-side-card__content p {
  font-size: 14px;
  margin-bottom: 0;
}

/* line 51, src/scss/pages/_search-page.scss */
.u-side-card__location-link {
  font-size: 14px;
  color: #1D72AF;
  text-decoration: underline;
}

/*------------------------------------*\
    #MASSEY COMPONENT UTILITIES
\*------------------------------------*/
/**
 *
 * Used widely throught the site in order to add backgrounds.
 * Spacing does compensate based on the default spacing for a component.
 *
 */
.u-bg-yellow {
    margin-top: 0;
    margin-bottom: 0;
    padding-top: 5.25rem;
    padding-bottom: 5.25rem;
    background: #FFFAEB;
}

.u-bg-light-blue {
    margin-top: 0;
    margin-bottom: 0;
    padding-top: 5.25rem;
    padding-bottom: 5.25rem;
    background: #F0F7FC;
}

.u-bg-gradient {
    margin-top: 0;
    margin-bottom: 0;
    padding-top: 5.25rem;
    padding-bottom: 5.25rem;
    background: linear-gradient(0deg, rgba(240,247,252,0) 0%, #F0F7FC 100%);
}

.u-bg-image {
    margin-top: 0;
    margin-bottom: 0;
    padding-top: 5.25rem;
    padding-bottom: 5.25rem;
    background-size: cover;
}

.u-bg-pattern {
    margin-top: 0;
    margin-bottom: 0;
    padding-top: 5.25rem;
    padding-bottom: 5.25rem;
    background-repeat: repeat;
    background-position: top left;
}

.u-text-invert h1:not(.c-card__title),
.u-text-invert h2:not(.c-card__title),
.u-text-invert h3:not(.c-card__title),
.u-text-invert h4:not(.c-card__title),
.u-text-invert p:not(.c-card__excerpt) {
    color:  #FFFFFF;
}

.u-reset-btn {
    appearance: none;
    border: none;
    background: none;
    padding: 0;
}

/*------------------------------------*\
    #MASSEY HEADING UTILS
\*------------------------------------*/
.u-underline-title:after {
    content: "";
    display: block;
    width: 45px;
    height: 5px;
    margin: 1rem 0 2rem;
    background: #FFDA76;
}

/* line 17, src/scss/pages/_news-detail-page.scss */
.u-side-news-header,
.u-rule-title {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 25px;
  white-space: nowrap;
}

/* line 29, src/scss/pages/_news-detail-page.scss */
.u-side-news-header::after,
.u-rule-title::after {
  content: '';
  width: 100%;
  height: 1px;
  background: #D7D9DA;
  margin-left: 20px;
}

@media (max-width: 991px) {
  /* line 29, src/scss/pages/_news-detail-page.scss */
  .u-side-news-header::after,
  .u-rule-title::after {
    position: relative;
    width: 100%;
    margin-left: .5rem;
  }
}

/**
 *
 * Should NOT change from the base heading sizes
 * Heading 1 base styles
 *
 *
 **
 * Heading 1 base styles
 */
 .display-h1 {
  font-size: 2.4375rem;
  font-weight: 700;
  line-height: 1.2; }

@media (min-width:768px) {
    .display-h1 {
      font-size: 3rem; }
}

/**
 * Heading 2 base styles
 */
.display-h2 {
  font-size: 2.125rem;
  font-weight: 700;
  line-height: 1.2; }

@media (min-width:768px) {
    .display-h2 {
        font-size: 2.4375rem; }
}

/**
 * Heading 3 base styles
 */
.display-h3 {
  font-size: 1.8125rem;
  font-weight: 700;
  line-height: 1.2; }

/**
 * Heading 4 base styles
 */
.display-h4 {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.2; }

/**
 * Heading 5 base styles
 */
.display-h5 {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.2; }

/**
 * Heading 6 base styles
 */
.display-h6 {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.2; }

/**
 * Large Text util
 */
.u-text-lg {
    font-size: 1.125rem;
}

/*------------------------------------*\
    #MASSEY ANIMATIONS
\*------------------------------------*/
@-webkit-keyframes fadeIn {
    from {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

@keyframes fadeIn {
    from {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

@-webkit-keyframes fadeOut {
    from {
        opacity: 1
    }

    to {
        opacity: 0
    }
}

@keyframes fadeOut {
    from {
        opacity: 1
    }

    to {
        opacity: 0
    }
}

@-webkit-keyframes fadeInLeft {
    from {
        opacity: 0;
        -webkit-transform: translateX(-60px);
        transform: translateX(-60px)
    }

    to {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        -webkit-transform: translateX(-60px);
        transform: translateX(-60px)
    }

    to {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }
}

@-webkit-keyframes fadeInRight {
    from {
        opacity: 0;
        -webkit-transform: translateX(60px);
        transform: translateX(60px)
    }

    to {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        -webkit-transform: translateX(60px);
        transform: translateX(60px)
    }

    to {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
}

/*NAV MENU*/
@media (min-width:991px) {
    .c-primary-nav__link {
       padding: 1.5rem 0;
    }
}

/* Search dropdown button*/
.c-header__search {
    display: flex;
    position: absolute;
    left: 0;
    top: calc(100% - 30px);
    width: 100%;
    padding: 1.25rem 1rem;
    background: #FFFFFF;
    z-index: -1;
    opacity: 0;
    visibility: hidden;
    box-shadow: 0 3px 20px 0 rgba(0,0,0,0.07);
    transition: top .3s;
}

.c-header__search.is-open {
    top: calc(100% + 1px);
    opacity: 1;
    visibility: visible;
    z-index: 100;
}

.c-header__search-field {
    appearance: none;
    -webkit-appearance: none;
    border: none;
    background: none;
    flex: 1 1 auto;
}

.c-header__search-field:focus {
    outline: none;
    border-bottom: 2px solid #FFBA00;
}

.c-header__search-button {
    max-width: 50px;
    min-width:inherit;
    background-image: url(/assets/_img/Massey/icon-search.svg);
    background-size: 25px;
    background-position: center;
    background-repeat: no-repeat;
}

.c-header__search-button:hover,
.c-header__search-button:focus{
    background-image: url(/assets/_img/Massey/icon-search.svg);
    background-size: 25px;
    background-position: center;
    background-repeat: no-repeat;
}

/* NEW CSS - FIND A RESEARCHER */
.find-a-researcher{
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.find-a-researcher .selectize-control, 
.find-a-researcher #memberName,
.find-a-researcher #inputKeyword{
    -webkit-box-flex: 1 !important;
    -ms-flex: 1 !important;
    flex: 1 !important;
    width: initial !important;
}

.c-card--spacer{
    background: transparent !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    width: 20% !important;
    border:none !important;
}

/*modal styles*/
.modal{
    display: block;
    position: fixed;
    z-index: 99;
    min-height: 480px;
}

.modal .modal-content{
    position: absolute;
    z-index: 100;
    max-width: 640px;
    width: 100%;
    border-radius: 0;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 60px;
    text-align: center;
}

.modal .modal-content p:last-of-type{
    margin: 0;
}

.modal::before{
    content:'';
    background: rgba(0,0,0,.5);
    position: fixed;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99;
}

.modal-close{
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 14px;
}

.modal-close i {
    font-size: 16px;
}

/* search page */
.divProviders .u-side-card{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
}

.divProviders .u-side-card img{
    -webkit-box-flex:0;
        -ms-flex:0 0 60px;
            flex:0 0 60px;
    width: 60px;
    height: 85px;
    -o-object-fit: cover;
       object-fit: cover;
    border:none;
    outline: none;
}

.divProviders .u-side-card .u-side-card__content{
    -webkit-box-flex:1;
        -ms-flex:1;
            flex:1;
}

.divProviders .u-side-card .u-side-card__content p{
    line-height: 1.2em;
}

.divLocations .u-side-card .u-side-card__wrapper{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
}

.divLocations .u-side-card .u-side-card__wrapper .c-icon{
    -webkit-box-flex: 0;
        -ms-flex: 0 0 30px;
            flex: 0 0 30px;
    width: 30px;
}

.divLocations .u-side-card .u-side-card__wrapper .c-icon img{
    margin: auto;
}

.divLocations .u-side-card .u-side-card__content {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
}


.u-link-header ~ p {
    font-size: .975rem;
}

.ct-details__info > li {
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #D7D9DA;
}
.ct-details__info > li span {
    display:block;
}

.ct-search-wrap {
    position: relative;
    margin-top:-4rem;
    z-index: 5;
}

.ct-search {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.ct-search__field {
    width: 100%;
    margin-bottom: 10px;
}

.ct-search__field > input,
.ct-search__field > select {
    appearance: none;
    -webkit-appearance: none;
    display: block;
    width: 100%;
    padding: .7rem 1rem;
    color: #787473;
    border: 1px solid #CCCCCC;
    box-sizing: border-box;
}

.ct-search__field > select {
    background: url(/assets/_img/clinicaltrial/chevron-down-solid.svg) calc(100% - 15px) 55% no-repeat #FFFFFF;
    background-size: 10px;
    min-height: 3.125rem;
}

.ct-search__field > select::-ms-expand {
    display: none;
}

.ct-search > input[type="submit"] {
    margin: 0;
}

@media screen and (min-width:990px) {
    .ct-search { 
        flex-direction: row;
    }
    
    .ct-search__field {
        flex: 1 1 auto;
        margin-right: 1rem;
        margin-bottom: 0;
    }
    
    .ct-search > input[type="submit"] {
        max-width: 125px;
        flex: 0 0 125px;
        padding: 13px 15px !important;
    }
}

.ct-share .c-icon {
    width:26px;
    height:26px;
    line-height:26px;
    background: #1D72AF;
    color: #FFF;
    font-size: 13px;
}

.trial-result__info {
    display: flex;
    flex-wrap: wrap;
}

.trial-result__info > li {
    flex: 0 0 50%;
    max-width: 50%;
    font-size: .8333rem;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.trial-result__info > li > strong {
    display: block;
    font-weight: 700;
    font-size: 1rem;
    text-transform: none;
    margin-top: 5px;
}

.trial-result__status {
    display: inline-block;
    line-height: 1;
    padding: 5px 10px;
    font-size: 1rem;
    margin: 20px 0;
    color: #26773A;
    background: #D6EFDC;
}

.trial-result__status:before {
    content: "\f00c";
    font: normal normal normal 14px/1 FontAwesome;
    margin-right: 5px;
}

.sidebar-form {
    margin-bottom: 1.5rem;
}
.sidebar-form__field {
    margin-bottom: 1.25rem;
}

.sidebar-form__field > select {
    appearance: none;
    -webkit-appearance: none;
    display: block;
    width: 100%;
    padding: .7rem 1rem;
    color: #787473;
    border: 1px solid #CCCCCC;
    box-sizing: border-box;
    background: url(/assets/_img/clinicaltrial/chevron-down-solid.svg) calc(100% - 15px) 55% no-repeat #FFFFFF;
    background-size: 10px;
}

@media (min-width:990px) {
    .reults-tools {
        margin-top: 0;
    }
    
    .trial-result {
        padding-bottom: 30px;
    }
    
    .trial-result__heading {
        flex-direction: row;
        align-items: flex-start;
        justify-content: space-between;
        margin-bottom: 20px;
    }
    
    .trial-result__status {
        margin: 0;
        flex-shrink: 0;
    }
    
    .trial-result__heading > a {
        margin-right: 30px;
    }
    
    .trial-result__info > li {
        flex: 0 0 25%;
        max-width: 25%;
        margin-bottom: 0;
    }
}
.pager__items {
    display: flex;
    justify-content: center;
    flex-wrap:wrap;
    font-size: 1rem;
}

.pager__items > li {
    margin: 0 8px;
}

.pager__items > li > a {
    color: #000;
    font-weight: 400;
}

.pager__items > li.is-active > a {
    border-bottom: 1px solid #FFC425;
}

.pager__item--previous:before,
.pager__item--next:before {
    font-family: "FontAwesome";
}

.pager__item--previous:before {
    content: "\f060";
}

.pager__item--next:before {
    content: "\f061";
}

/*-----------------------------------------*\
    #SPLIT TITLE: TITLE w/ OTHER CONTENT
\*-----------------------------------------*/
.l-split-title {
    display: block;
}

@media screen and (min-width:768px) {
    .l-split-title {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
}

.no-scroll {
    overflow: hidden;
}

/*
*   FAD LOADING ENHANCEMENTS
*/
.loader {
    display: block;
    width: 100%;
}
.loader__text {
    display: block;
    font-size: 22px;
    font-weight: 600;
    margin-top: 1rem;
    letter-spacing: .025em;
}
.loading-spinner {
  display: inline-block;
  animation-name: anim-spinner;
  animation-duration: 0.7s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}
.loading-spinner .circle {
  width: 3em;
  height: 1.5em;
  overflow: hidden;
}
.loading-spinner .circle-inner {
  transform: rotate(45deg);
  border-radius: 50%;
  border: 0.4em solid #ffcf00;
  border-right: 0.4em solid transparent;
  border-bottom: 0.4em solid transparent;
  width: 100%;
  height: 200%;
  animation-name: anim-circle-1;
  animation-duration: 0.7s;
  animation-iteration-count: infinite;
  animation-direction: alternate;
  animation-timing-function: cubic-bezier(0.25, 0.1, 0.5, 1);
}
.loading-spinner .circle-2 {
  transform: rotate(180deg);
}
.loading-spinner .circle-2 .circle-inner {
  animation-name: anim-circle-2;
}
@keyframes anim-circle-1 {
  from {
    transform: rotate(60deg);
  }
  to {
    transform: rotate(205deg);
  }
}
@keyframes anim-circle-2 {
  from {
    transform: rotate(30deg);
  }
  to {
    transform: rotate(-115deg);
  }
}
@keyframes anim-spinner {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}


.js-image-gallery * {
  box-sizing: content-box; /* This is stupid and weird but fixes a weird Firefox bug miscalculating slide width */
}
.js-image-gallery .slick-slide {
    padding: 0 .5rem;
}
@media screen and (min-width:600px) {
    .js-image-gallery .slick-slide {
        padding: 0 1rem;
    }
}
.js-image-gallery img {
    max-width: none; 
    width: 100%;
}
.js-image-gallery .slick-dots {
    position: inherit;
}
.js-image-gallery .slick-next,
.js-image-gallery .slick-prev {
    top: 50%;
    margin-top: -15px; /* offset from the dots */
}

.js-image-gallery .slick-prev {
left: 2rem;
}
.js-image-gallery .slick-next {
right: 1.25rem;
}


.m-slider-img {
    position: relative;
    width: 100%;
}

    .m-slider-img > img {
        display: block;
        width: 100%;
    }

.m-slider-img__cap {
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    color: #FFFFFF;
    padding: 1rem 1.5rem;
}

    .m-slider-img__cap > span {
        display: block;
        position: relative;
        z-index: 10;
    }

    .m-slider-img__cap:after {
        content: "";
        position: absolute;
        display: block;
        background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(12,20,32,0.4) 100%);
        height: 300px;
        width: 100%;
        left: 0;
        bottom: 0;
        z-index: 1;
    }
    .c-phys-directory {
      margin: 2rem 0 1rem;
  }
  
  .c-phys-directory .c-card {
      margin: 1rem 0;
      padding: 1.5rem;
  }
  
  .c-phys-directory .c-card li {
      margin: 0 0 0.5rem;
  }
  
  .c-phys-directory .u-underline-title {
      font-size: 1.125rem;
  }
  
  .c-phys-directory .c-card img {
      display: block;
      max-width: 230px;
      margin-bottom: 1rem;
  }
  
  @media (min-width: 600px) {
      .c-phys-directory .c-card {
          flex-direction: row;
          justify-content: space-between;
      }
  
      .c-phys-directory .c-card img {
          order: 2;
          padding-left: 3rem;
          margin-bottom: 0;
          max-width: 220px;
      }
  }
  
  @media (min-width: 990px) {
      .c-phys-directory .c-card {
          padding: 2rem 2.625rem 2.625rem;
      }
  
      .c-phys-directory__main {
          flex: 1 1 60%;
      }
  
      .c-phys-directory__main + ul {
          flex: 0 0 40%;
          max-width: 40%;
          padding-left: 3.5rem;
      }
  
      .c-phys-directory .c-card img {
          margin-bottom: 1rem;
      }
  
      .c-phys-directory .c-card img {
          display: block;
          margin-left: auto;
          padding-left: 8rem;
          max-width: 300px;
          margin-bottom: 0;
      }
  }
  
  @media (min-width: 1300px) {
      .c-phys-directory--2up .c-phys-directory__holder {
          display: flex;
          margin: 0 -1rem;
          flex-wrap: wrap;
      }
  
      .c-phys-directory--2up .c-phys-directory__holder .c-card {
          align-items: flex-start;
          justify-content: flex-start;
          flex: 0 0 calc(50% - 2rem);
          max-width: calc(50% - 2rem);
          margin: 1rem;
      }
  
      .c-phys-directory--2up .c-card img {
          padding-left: 4rem;
          max-width: 220px;
      }
  }
