@charset "UTF-8";
/*!
Theme Name: Russell Medical
Author: Cayenne Creative
Description: A theme built on _s, bourbon, neat, bitters specifically built for Cayenne Creative Websites
Version: 1.0
License: GNU General Public License
License URI: license.txt

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
1.0 - Bourbon, Bitters, Neat
2.0 - Normalize
3.0 - Elements
4.0 - Forms
5.0 - Components/ Add-ons
6.0 - Layout and Structure
	6.1 - Header
	6.2 - Navigation
	6.3 - Content
	6.4 - Page Templates
	6.5 - Sidebar
	6.6 - Footer
	6.7 - Accessbility

--------------------------------------------------------------*/
/*--------------------------------------------------------------
1.0 Modern CSS Reset and Base Styles
--------------------------------------------------------------*/
/* Modern CSS Reset and Base Styles */
/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}
/* Remove default margin and padding */
* {
  margin: 0;
  padding: 0;
}
/* Remove list styles on ul, ol elements */
ul,
ol {
  list-style: none;
}
/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}
html {
  font-size: 16px;
  line-height: 1.5;
}
/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
/* A elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}
/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}
/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}
/* Remove all animations, transitions and smooth scroll for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
/* Clearfix utility */
.clearfix::after {
  content: "";
  display: table;
  clear: both;
}
/* Modern grid system */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}
.row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -0.5rem;
}
.col {
  flex: 1;
  padding: 0 0.5rem;
}
/* Responsive breakpoints */
@media (min-width: 768px) {
  .col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-md-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .col-md-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
}
@media (min-width: 1024px) {
  .col-lg-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-lg-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .col-lg-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
}
/*--------------------------------------------------------------
2.0 Normalize/Reset
--------------------------------------------------------------*/
/*! normalize.css v2.1.3 | MIT License | git.io/normalize */
/* ==========================================================================
   HTML5 display definitions
   ========================================================================== */
/**
 * Correct `block` display not defined in IE 8/9.
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary {
  display: block;
}
/**
 * Correct `inline-block` display not defined in IE 8/9.
 */
audio,
canvas,
video {
  display: inline-block;
}
/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */
audio:not([controls]) {
  display: none;
  height: 0;
}
/**
 * Address `[hidden]` styling not present in IE 8/9.
 * Hide the `template` element in IE, Safari, and Firefox < 22.
 */
[hidden],
template {
  display: none;
}
/* ==========================================================================
   Base
   ========================================================================== */
/**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS text size adjust after orientation change, without disabling
 *    user zoom.
 */
html {
  font-family: sans-serif; /* 1 */
  -ms-text-size-adjust: 100%; /* 2 */
  -webkit-text-size-adjust: 100%; /* 2 */
}
/**
 * Remove default margin.
 */
body {
  margin: 0;
}
/* ==========================================================================
   Links
   ========================================================================== */
/**
 * Remove the gray background color from active links in IE 10.
 */
a {
  background: transparent;
}
/**
 * Address `outline` inconsistency between Chrome and other browsers.
 */
a:focus {
  outline: thin dotted;
}
/**
 * Improve readability when focused and also mouse hovered in all browsers.
 */
a:active, a.nice-select.open,
a:hover {
  outline: 0;
}
/* ==========================================================================
   Typography
   ========================================================================== */
/**
 * Address variable `h1` font-size and margin within `section` and `article`
 * contexts in Firefox 4+, Safari 5, and Chrome.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}
/**
 * Address styling not present in IE 8/9, Safari 5, and Chrome.
 */
abbr[title] {
  border-bottom: 1px dotted;
}
/**
 * Address style set to `bolder` in Firefox 4+, Safari 5, and Chrome.
 */
b,
strong {
  font-weight: bold;
}
/**
 * Address styling not present in Safari 5 and Chrome.
 */
dfn {
  font-style: italic;
}
/**
 * Address differences between Firefox and other browsers.
 */
hr {
  box-sizing: content-box;
  height: 0;
}
/**
 * Address styling not present in IE 8/9.
 */
mark {
  background: #ff0;
  color: #000;
}
/**
 * Correct font family set oddly in Safari 5 and Chrome.
 */
code,
kbd,
pre,
samp {
  font-family: monospace, serif;
  font-size: 1em;
}
/**
 * Improve readability of pre-formatted text in all browsers.
 */
pre {
  white-space: pre-wrap;
}
/**
 * Set consistent quote types.
 */
q {
  quotes: "“" "”" "‘" "’";
}
/**
 * Address inconsistent and variable font size in all browsers.
 */
small {
  font-size: 80%;
}
/**
 * Prevent `sub` and `sup` affecting `line-height` in all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sup {
  top: -0.5em;
}
sub {
  bottom: -0.25em;
}
/* ==========================================================================
   Embedded content
   ========================================================================== */
/**
 * Remove border when inside `a` element in IE 8/9.
 */
img {
  border: 0;
  height: auto;
  max-width: 100%;
}
/**
 * Correct overflow displayed oddly in IE 9.
 */
svg:not(:root) {
  overflow: hidden;
}
/* ==========================================================================
   Figures
   ========================================================================== */
/**
 * Address margin not present in IE 8/9 and Safari 5.
 */
figure {
  margin: 0;
}
/* ==========================================================================
   Forms
   ========================================================================== */
/**
 * Define consistent border, margin, and padding.
 */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}
/**
 * 1. Correct `color` not being inherited in IE 8/9.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 */
legend {
  border: 0; /* 1 */
  padding: 0; /* 2 */
}
/**
 * 1. Correct font family not being inherited in all browsers.
 * 2. Correct font size not being inherited in all browsers.
 * 3. Address margins set differently in Firefox 4+, Safari 5, and Chrome.
 */
button,
input,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 2 */
  margin: 0; /* 3 */
}
/**
 * Address Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */
button,
input {
  line-height: normal;
}
/**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Chrome, Safari 5+, and IE 8+.
 * Correct `select` style inheritance in Firefox 4+ and Opera.
 */
button,
select {
  text-transform: none;
}
/**
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *    and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *    `input` and others.
 */
button,
html input[type=button],
input[type=reset],
input[type=submit] {
  -webkit-appearance: button; /* 2 */
  cursor: pointer; /* 3 */
}
/**
 * Re-set default cursor for disabled elements.
 */
button[disabled],
html input[disabled] {
  cursor: default;
}
/**
 * 1. Address box sizing set to `content-box` in IE 8/9/10.
 * 2. Remove excess padding in IE 8/9/10.
 */
input[type=checkbox],
input[type=radio] {
  box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}
/**
 * 1. Address `appearance` set to `searchfield` in Safari 5 and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari 5 and Chrome
 *    (include `-moz` to future-proof).
 */
input[type=search] {
  -webkit-appearance: textfield; /* 1 */ /* 2 */
  box-sizing: content-box;
}
/**
 * Remove inner padding and search cancel button in Safari 5 and Chrome
 * on OS X.
 */
input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}
/**
 * Remove inner padding and border in Firefox 4+.
 */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}
/**
 * 1. Remove default vertical scrollbar in IE 8/9.
 * 2. Improve readability and alignment in all browsers.
 */
textarea {
  overflow: auto; /* 1 */
  vertical-align: top; /* 2 */
}
/* ==========================================================================
   Tables
   ========================================================================== */
/**
 * Remove most spacing between table cells.
 */
table {
  border-collapse: collapse;
  border-spacing: 0;
}
/*--------------------------------------------------------------
3.0 Variables and Mixins
--------------------------------------------------------------*/
/* Modern Mixins to replace Bourbon functionality */
/*--------------------------------------------------------------
4.0 Typography
--------------------------------------------------------------*/
/*--------------------------------------------------------------
5.0 Components/Add-ons
--------------------------------------------------------------*/
/*--------------------------------------------------------------
6.0 Layout and Structure
--------------------------------------------------------------*/
/*--------------------------------------------------------------
6.1 Layout and Structure
--------------------------------------------------------------*/
header {
  background: #f2fafc;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.16);
}
.top-menu-wrapper {
  display: flex;
  justify-content: flex-end;
  flex: auto;
}
.top-menu {
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  display: none;
  margin-right: 10px;
}
.top-menu > li {
  display: inline-block;
  margin: auto 10px;
}
.top-menu > li > a {
  color: #535353;
  font-weight: 400;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 1px;
}
.top-menu > li > a:hover {
  color: #00acc8;
}
@media (min-width: 1360px) {
  .top-menu > li > a {
    font-size: 15px;
  }
}
@media (min-width: 1260px) {
  .top-menu {
    display: block;
    opacity: 1;
  }
}
@media (min-width: 1360px) {
  .top-menu > li {
    margin: auto 15px;
  }
}
/*--------------------------------------------------------------
6.2 Navigation
--------------------------------------------------------------*/
nav {
  height: 76px;
  width: 100%;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  transition: background 0.5s ease;
  z-index: 300;
}
nav #navicon {
  height: 58px;
  width: 60px;
  flex: 0 60px;
  position: relative;
  z-index: 3;
  transform: rotate(0deg);
  transition: 0.3s ease-in-out;
  cursor: pointer;
  border-right: 1px solid #D9D9D6;
}
nav .navicon-inner {
  position: relative;
  margin-top: 6px;
  height: 52px;
}
nav #navicon span {
  display: block;
  position: absolute;
  height: 3px;
  width: 28px;
  background: #00acc8;
  opacity: 1;
  left: 16px;
  right: 0;
  border-radius: 2px;
  transform: rotate(0deg);
  transition: 0.3s ease-in-out;
}
nav #navicon.opened span {
  background: #00acc8;
}
nav #navicon.opened {
  transition: 0.1s ease-in-out;
}
nav #navicon.opened:focus {
  outline: none;
}
nav #navicon.opened span:nth-child(2),
nav #navicon.opened span:nth-child(3) {
  transition: 0.25s ease-in-out;
}
nav #navicon span:nth-child(1) {
  top: 16px;
}
nav #navicon span:nth-child(2),
nav #navicon span:nth-child(3) {
  top: 24px;
}
nav #navicon span:nth-child(4) {
  top: 32px;
}
nav #navicon.opened span:nth-child(1) {
  top: 22px;
  width: 0%;
  opacity: 0;
  transition: top 0.01s ease-in;
}
nav #navicon.opened span:nth-child(2) {
  transform: rotate(45deg);
}
nav #navicon.opened span:nth-child(3) {
  transform: rotate(-45deg);
}
nav #navicon.opened span:nth-child(4) {
  top: 22px;
  width: 0%;
  opacity: 0;
  transition: top 0.01s ease-in;
}
nav .logo {
  height: 76px;
  background: transparent;
  width: 56px;
  padding: 0 0 0 14px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  transition: all 0.3s ease-in-out;
  overflow: hidden;
  outline: none;
  flex: auto;
}
nav .logo a {
  line-height: 1;
  padding: 0;
  margin: 0;
}
nav .logo img#russell-medical-logo-mobile {
  display: block;
}
nav .logo svg#russell-medical-logo-desktop {
  display: none;
  width: 300px;
  outline: none;
}
@media (min-width: 400px) {
  nav .logo {
    width: 76px;
  }
}
@media (min-width: 767px) {
  nav .logo {
    width: 314px;
  }
  nav .logo img#russell-medical-logo-mobile {
    display: none;
  }
  nav .logo svg#russell-medical-logo-desktop {
    display: block;
  }
}
nav .search-icon {
  height: 76px;
  background: transparent;
  margin-left: auto;
  transition: width 0.5s ease-in-out;
  border-left: 1px solid #D9D9D6;
  padding-left: 15px;
}
nav .search-icon form.search {
  padding: 0;
  margin: 0;
  position: relative;
  background: transparent;
  max-width: 160px;
}
@media (min-width: 400px) {
  nav .search-icon form.search {
    max-width: 200px;
  }
}
nav .search-icon form.search input[type=text] {
  height: 76px;
  min-width: 200px;
  padding: 10px 20px 10px 30px;
  border: none;
  transition: width 0.5s ease-in-out;
  font-size: 15px;
  letter-spacing: 1px;
  color: #9B9B9B;
  background: transparent;
}
nav .search-icon form.search input[type=text]::-moz-placeholder {
  text-transform: uppercase;
  font-weight: 300;
}
nav .search-icon form.search input[type=text]::placeholder {
  text-transform: uppercase;
  font-weight: 300;
}
nav .search-icon form.search input[type=text]:focus {
  outline: none;
}
nav .search-icon form.search button {
  background: transparent;
  border: none;
  position: absolute;
  left: -5px;
  top: 0;
  z-index: 1;
  height: 76px;
}
nav .search-icon form.search button img {
  width: 11px;
  height: 11px;
}
.nav-drawer {
  margin: 0;
  padding: 5%;
  background-color: #F7F7F7;
  overflow: auto;
  -ms-overflow-style: -ms-autohiding-scrollbar;
  display: block;
  flex-flow: row wrap;
  justify-content: flex-start;
  text-align: left;
}
.nav-drawer ul.menu-main {
  margin: 0;
  padding: 0;
  text-align: left;
}
.nav-drawer ul.menu-main:first-of-type {
  margin-top: 40px;
}
.nav-drawer ul.menu-main > li.menu-item {
  flex: 0 100%;
  font-family: "proxima-nova", Arial, sans-serif;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.5;
  margin: 5px 0;
  text-transform: uppercase;
  order: 1;
  border-bottom: 1px solid #D9D9D6;
  padding: 10px 0;
}
.nav-drawer ul.menu-main > li.menu-item > a {
  color: #00acc8;
  transition: color 0.3s ease-in-out;
}
.nav-drawer ul.menu-main > li.menu-item > a:hover {
  color: rgb(0, 128.14, 149);
}
.nav-drawer ul.menu-main > li.menu-item > ul.sub-menu {
  display: none;
}
.nav-drawer ul.menu-main > li.menu-item > ul.sub-menu > li {
  font-weight: 400;
  font-size: 14px;
  line-height: 2;
  color: #535353;
  text-transform: none;
}
.nav-drawer ul.menu-main > li.menu-item > ul.sub-menu > li > a {
  color: #535353;
}
.nav-drawer ul.menu-main > li.menu-item > ul.sub-menu > li > a:hover {
  color: #202020;
}
@media (min-width: 992px) {
  .nav-drawer ul.menu-main {
    flex: 1;
  }
  .nav-drawer ul.menu-main:first-of-type {
    margin-top: 0;
  }
  .nav-drawer ul.menu-main > li.menu-item {
    flex: 0 20%;
    margin: 20px 10px;
    font-weight: 700;
    border-bottom: none;
    padding: 0;
  }
  .nav-drawer ul.menu-main > li.menu-item:nth-child(-n+4) {
    align-self: flex-start;
  }
  .nav-drawer ul.menu-main > li.menu-item:nth-child(5n) {
    align-self: center;
  }
  .nav-drawer ul.menu-main > li.menu-item:nth-child(n+6) {
    align-self: flex-end;
  }
  .nav-drawer ul.menu-main > li.menu-item > a {
    margin: 5px auto;
    display: block;
  }
  .nav-drawer ul.menu-main > li.menu-item > ul.sub-menu {
    display: flex;
    flex-flow: column wrap;
  }
  .nav-drawer ul.menu-main > li#menu-item-7,
  .nav-drawer ul.menu-main li#menu-item-208 {
    position: absolute;
    top: 0;
    display: none;
  }
  .nav-drawer ul.menu-main > li#menu-item-7 {
    left: 25%;
  }
  .nav-drawer ul.menu-main > li#menu-item-208 {
    left: 60%;
  }
}
@media (min-width: 767px) {
  .nav-drawer {
    padding: 2%;
  }
}
@media (min-width: 992px) {
  .nav-drawer {
    display: flex;
  }
}
.content {
  z-index: 1;
  display: block;
  position: relative;
  width: 100%;
  margin: 0;
  background: #F7F7F7;
}
.content.open,
footer.open {
  transform: translateX(75%);
  animation: open 0.4s ease-out;
}
@keyframes open {
  0% {
    transform: translateX(0);
  }
  70% {
    transform: translateX(77%);
  }
  100% {
    transform: translateX(75%);
  }
}
@keyframes open-desktop {
  0% {
    transform: translateX(0);
  }
  70% {
    transform: translateX(61%);
  }
  100% {
    transform: translateX(59%);
  }
}
@media (min-width: 992px) {
  .content.open,
  footer.open {
    transform: translateX(59%);
    animation: open-desktop 0.4s ease-out;
  }
}
.content.close,
footer.close {
  animation: close 0.4s ease-out;
}
@keyframes close {
  0% {
    transform: translateX(75%);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes close-desktop {
  0% {
    transform: translateX(59%);
  }
  100% {
    transform: translateX(0);
  }
}
@media (min-width: 992px) {
  .content.close,
  footer.close {
    animation: close-desktop 0.4s ease-out;
  }
}
header.open {
  transform: translateX(calc(75% - 51px));
  animation: opened-mobile 0.4s ease-out;
}
@keyframes opened-mobile {
  0% {
    transform: translateX(0);
  }
  70% {
    transform: translateX(calc(77% - 51px));
  }
  100% {
    transform: translateX(calc(75% - 51px));
  }
}
@keyframes opened-desktop {
  0% {
    transform: translateX(0);
  }
  70% {
    transform: translateX(calc(61% - 51px));
  }
  100% {
    transform: translateX(calc(59% - 51px));
  }
}
@media (min-width: 992px) {
  header.open {
    transform: translateX(calc(59% - 51px));
    animation: opened-desktop 0.4s ease-out;
  }
}
header.close {
  animation: closed 0.4s ease-out;
}
@keyframes closed {
  0% {
    transform: translateX(calc(75% - 51px));
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes closed-desktop {
  0% {
    transform: translateX(calc(59% - 50px));
  }
  100% {
    transform: translateX(0);
  }
}
@media (min-width: 992px) {
  header.close {
    animation: closed-desktop 0.4s ease-out;
  }
}
/* NAVIGATION ANNIMATION */
.nav-drawer {
  width: 75%;
  max-width: 75%;
  height: 100%;
  position: fixed;
  left: 0;
  top: 0;
  /* starting point */
  opacity: 0;
  z-index: -1;
  transform: translate3d(0, 0, 0) scale(1);
}
@media (min-width: 992px) {
  .nav-drawer {
    width: 60%;
    max-width: 60%;
  }
}
.nav-drawer.open {
  opacity: 1;
  z-index: 0;
  transform: translate3d(0, 0, 0) scale(1);
  animation: slideIn 0.4s ease-in-out;
}
@keyframes slideIn {
  from {
    opacity: 0;
    transform: translate3d(0, 0, 0) scale(1);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}
.nav-drawer.close {
  opacity: 0;
  transform: translate3d(0, 0, 0) scale(1);
  animation: slideOut 0.4s ease-in-out;
}
@keyframes slideOut {
  from {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
  to {
    opacity: 0;
    transform: translate3d(0, 0, 0) scale(1);
  }
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  header.open {
    left: calc(75% - 51px);
    animation: opened 0.4s ease-in-out;
  }
  @keyframes opened {
    0% {
      left: 0;
    }
    70% {
      left: calc(77% - 51px);
    }
    100% {
      left: calc(75% - 51px);
    }
  }
}
@media (-ms-high-contrast: none) and (min-width: 992px), (-ms-high-contrast: active) and (min-width: 992px) {
  header.open {
    left: calc(59% - 51px);
  }
  @keyframes opened {
    0% {
      left: 0;
    }
    70% {
      left: calc(61% - 51px);
    }
    100% {
      left: calc(59% - 51px);
    }
  }
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  header.close {
    left: 0;
    animation: closed 0.4s ease-in-out;
  }
  @keyframes closed {
    from {
      left: calc(75% - 51px);
    }
    to {
      left: 0;
    }
  }
}
@media (-ms-high-contrast: none) and (min-width: 992px), (-ms-high-contrast: active) and (min-width: 992px) {
  @keyframes closed {
    from {
      left: calc(59% - 51px);
    }
    to {
      left: 0;
    }
  }
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  #breadcrumbs.open {
    left: 75%;
    animation: opened 0.4s ease-in-out;
  }
  @keyframes opened {
    0% {
      left: 0;
    }
    70% {
      left: 77%;
    }
    100% {
      left: 75%;
    }
  }
}
@media (-ms-high-contrast: none) and (min-width: 992px), (-ms-high-contrast: active) and (min-width: 992px) {
  #breadcrumbs.open {
    left: 59%;
  }
  @keyframes opened {
    0% {
      left: 0;
    }
    70% {
      left: 61%;
    }
    100% {
      left: 59%;
    }
  }
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  #breadcrumbs.close {
    left: 0;
  }
  @keyframes closed {
    from {
      left: 75%;
    }
    to {
      left: 0;
    }
  }
}
@media (-ms-high-contrast: none) and (min-width: 992px), (-ms-high-contrast: active) and (min-width: 992px) {
  @keyframes closed {
    from {
      left: 59%;
    }
    to {
      left: 0;
    }
  }
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .content.open {
    left: 75%;
    transform: none !important;
    animation: none;
  }
  @keyframes open {
    0% {
      left: 0;
    }
    100% {
      left: 75%;
    }
  }
}
@media (-ms-high-contrast: none) and (min-width: 992px), (-ms-high-contrast: active) and (min-width: 992px) {
  .content.open {
    left: 59%;
    animation: none;
  }
  @keyframes open {
    0% {
      left: 0;
    }
    100% {
      left: 59%;
    }
  }
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .content.close {
    left: 0;
    transform: none !important;
    animation: none;
  }
}
@media (-ms-high-contrast: none) and (min-width: 992px), (-ms-high-contrast: active) and (min-width: 992px) {
  .content.close {
    left: 0;
    animation: none;
  }
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  footer.open {
    left: 75%;
    transform: none !important;
    animation: none;
  }
  @keyframes open {
    0% {
      left: 0;
    }
    70% {
      left: 77%;
    }
    100% {
      left: 75%;
    }
  }
}
@media (-ms-high-contrast: none) and (min-width: 992px), (-ms-high-contrast: active) and (min-width: 992px) {
  footer.open {
    left: 59%;
    animation: none;
  }
  @keyframes open {
    0% {
      left: 0;
    }
    70% {
      left: 61%;
    }
    100% {
      left: 59%;
    }
  }
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  footer.close {
    left: 0;
    transform: none !important;
    animation: none;
  }
  @keyframes closed {
    from {
      left: 75%;
    }
    to {
      left: 0;
    }
  }
}
@media (-ms-high-contrast: none) and (min-width: 992px), (-ms-high-contrast: active) and (min-width: 992px) {
  footer.close {
    animation: none;
  }
  @keyframes closed {
    from {
      left: 59%;
    }
    to {
      left: 0;
    }
  }
}
.sidebar-container {
  flex: 0 100%;
  margin-top: 24px;
}
@media (min-width: 992px) {
  .sidebar-container {
    margin-left: 12px;
    margin-top: 0;
    flex: 0 28%;
    max-width: 28%;
  }
}
.sidebar {
  color: #4A4A4A;
  border-radius: 20px 0 20px;
  background-color: #fff;
  box-shadow: 0px 3px 8px #D9D9D6;
  padding: 2px 28px 24px;
}
.sidebar h2 {
  letter-spacing: 1px;
  font-size: 22px;
  font-family: "Sentinel A", "Sentinel B", serif;
  font-weight: 600;
  margin: 26px 0 0;
}
.sidebar h2 a {
  outline: none;
  color: #00acc8;
}
.sidebar h2 a:hover {
  color: rgb(0, 106.21, 123.5);
}
.sidebar p {
  line-height: 1.5;
  font-size: 14px;
}
.sidebar .read-more {
  position: relative;
  color: #9B9B9B;
  display: block;
  margin: 12px 0 36px;
  outline: 0;
  width: 120px;
}
.sidebar .read-more:visited {
  color: #9B9B9B;
}
.sidebar .read-more:hover {
  color: rgb(116.75, 116.75, 116.75);
}
.sidebar .read-more:hover > svg g {
  fill: rgb(116.75, 116.75, 116.75);
}
.sidebar .read-more svg {
  width: 20px;
  height: 23px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 120px;
}
.sidebar .read-more svg g {
  transition: all 0.3s ease-in-out;
  fill: #9B9B9B;
}
.sidebar .sidebar-item {
  border-bottom: 1px solid #D9D9D6;
  margin: 16px 0;
}
.sidebar .sidebar-contact {
  position: relative;
}
.sidebar .sidebar-contact svg {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 22px;
}
.sidebar .sidebar-contact svg g {
  fill: #00acc8;
  transition: all 0.3s ease;
}
.sidebar .sidebar-contact a {
  display: block;
  width: 90%;
}
.sidebar .sidebar-contact a:hover > svg g {
  fill: rgb(0, 106.21, 123.5);
}
/*--------------------------------------------------------------
6.3 Content
--------------------------------------------------------------*/
#__bs_notify__ {
  display: none !important;
}
html {
  -webkit-font-smoothing: antialiased;
}
body {
  background: #F7F7F7;
  position: relative;
  font-family: "proxima-nova", Arial, sans-serif;
}
::-moz-selection {
  color: white;
  background: rgba(0, 172, 200, 0.7);
}
::selection {
  color: white;
  background: rgba(0, 172, 200, 0.7);
}
a {
  text-decoration: none;
  transition: color 0.3s ease-in-out;
  outline: none;
}
ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
h1 {
  font-size: 62px;
}
h2 {
  font-size: 27px;
}
h3 {
  font-size: 22px;
}
p > a {
  color: #00acc8;
}
.noscroll {
  overflow-y: hidden;
  height: 100%;
}
.message {
  margin: auto;
  text-align: center;
  padding: 30px;
}
.body-wrap {
  overflow: hidden;
  position: relative;
  height: auto;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  display: block;
}
#breadcrumbs {
  background: #00acc8;
  top: 60px;
  left: 0;
  position: fixed;
  display: block;
  width: 100%;
  z-index: 100;
  padding: 24px 20px 8px 16px;
  color: white;
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 400;
  letter-spacing: 1px;
  margin: 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
#breadcrumbs a:first-of-type {
  font-weight: 700 !important;
  color: white;
}
.default-container {
  padding: 40px 24px;
}
.default-container iframe {
  max-width: 100%;
}
.default-container img {
  max-width: 100%;
}
.default-container blockquote {
  font-style: italic;
}
.default-container a {
  color: #00acc8;
  text-decoration: none;
  transition: color 0.3s ease-in-out;
  outline: none;
}
.default-container a:visited {
  color: #00acc8;
}
.default-container a:hover {
  color: rgb(0, 106.21, 123.5);
}
.default-container ul {
  margin-left: 24px;
  list-style-type: disc;
  padding: 0;
  color: #4A4A4A;
}
.default-container ul li {
  margin: 6px 0;
}
.default-container ol {
  color: #4A4A4A;
  padding: 0;
  margin-left: 20px;
}
.default-container ol li {
  margin: 6px 0;
}
.default-container h1 {
  margin-top: 12px;
  font-family: "Sentinel A", "Sentinel B", serif;
  font-size: 27px;
  font-weight: 600;
  color: #00acc8;
  letter-spacing: 1px;
}
.default-container h2, .default-container h3, .default-container h4, .default-container h5, .default-container h6 {
  font-family: "Sentinel A", "Sentinel B", serif;
  font-weight: 500;
  letter-spacing: 1px;
  color: #535353;
  margin-top: 34px;
  margin-bottom: 6px;
}
.default-container h2 {
  font-size: 22px;
}
.default-container h3 {
  font-size: 16px;
}
.default-container h4 {
  font-size: 16px;
}
.default-container h5 {
  font-size: 16px;
}
.default-container h6 {
  font-size: 16px;
}
.default-container p {
  color: #4A4A4A;
  margin: 0 0 14px;
  line-height: 1.5;
}
.default-container hr {
  border: 0;
  height: 1px;
  background: #D9D9D6;
  margin: 24px 0;
  width: 100%;
}
.content-blocks-wrapper {
  padding: 0;
  margin: 0 auto;
  width: 90vw;
}
.content-blocks-wrapper.container {
  max-width: 1600px;
}
.content-blocks {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-evenly;
  align-items: flex-start;
  margin-top: 60px;
}
.content-blocks.no-margin-top {
  margin-top: 0;
}
.content-blocks.click-box {
  cursor: pointer;
}
.content-blocks:after {
  content: "";
  flex: auto;
}
.content-blocks .content-block {
  margin: 0 20px 60px;
  width: 100%;
}
@media (min-width: 600px) {
  .content-blocks .content-block {
    width: calc(50% - 40px);
    margin-bottom: 100px;
    justify-content: flex-start;
  }
}
@media (min-width: 992px) {
  .content-blocks .content-block {
    width: calc(50% - 40px);
  }
}
.content-blocks .content-block .block-image {
  width: 100%;
  padding-bottom: 61.11%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  margin-bottom: 30px;
}
.content-blocks .content-block h3.block-headline {
  font-size: 14px;
  line-height: 22px;
  font-weight: bold;
  margin: 0 0 1em;
}
.content-blocks .content-block .block-blurb {
  font-size: 14px;
  line-height: 22px;
  margin: 0 0 1em;
}
.content-blocks .content-block .block-link {
  margin: 1em 0 0;
}
.content-blocks .content-block .block-link a {
  display: inline-block;
  color: #00acc8;
  font-size: 14px;
  font-weight: 600;
  padding-right: 28px;
  background: url("/core/themes/russellmedical/dist/img/arrow-blue.svg") right center no-repeat;
  background-size: 16px;
}
.content-blocks .content-block .block-link a:hover {
  color: rgb(0, 128.14, 149);
}
.rater8-wrapper {
  margin: 0 auto 80px;
  display: flex;
  justify-content: center;
}
.rater8-wrapper .rater8-inner {
  max-width: 800px;
}
.rater8-wrapper .rater8-inner h3.rater8-header {
  font-family: "Sentinel A", "Sentinel B", serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.2em;
  color: #00acc8;
  margin: 0 0 0.4em;
  padding: 0 20px;
  text-align: center;
}
span.required {
  color: #D0011B;
  font-size: 12px;
  letter-spacing: 1px;
}
.radio {
  position: relative;
  height: 20px;
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-start;
  align-items: center;
  color: #535353;
  font-size: 14px;
  text-transform: uppercase;
  line-height: 1;
  margin-top: 0;
}
.radio input[type=radio] {
  position: absolute;
  z-index: -1;
  opacity: 0;
}
.radio input:checked ~ .indicator:after {
  background: #00acc8;
  margin: 0 auto;
  height: 10px;
  width: 10px;
  border-radius: 50%;
  content: "";
  opacity: 1;
}
.radio:hover .indicator {
  background: rgb(242.25, 242.25, 242.25);
}
.radio > .indicator {
  position: relative;
  height: 20px !important;
  width: 20px !important;
  background: white;
  border: 1px solid #D9D9D6;
  border-radius: 50%;
  transition: background 0.3s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
  order: 0 !important;
  margin-right: 10px;
}
.radio > .indicator:after {
  background: #00acc8;
  opacity: 0;
  margin: 0 auto;
  height: 10px;
  width: 10px;
  border-radius: 50%;
  content: "";
  transition: opacity 0.3s ease-in-out;
}
.finder {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
}
.finder form.search {
  flex: 0 100%;
  position: relative;
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
}
.finder form.search .nice-select {
  margin: 20px 0 0 !important;
}
.finder form.search label {
  flex: 0 100%;
}
.finder form.search .choice {
  flex: 0 100%;
  margin-top: 20px;
  padding-left: 0;
  height: 50px;
  width: 100%;
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-around;
  align-items: center;
  outline: none;
}
@media (min-width: 767px) {
  .finder form.search .choice {
    justify-content: space-between;
    flex: 0 50%;
    padding-left: 20px;
  }
}
.finder form.search .choice .radio input[type=radio] {
  position: absolute;
  z-index: -1;
  opacity: 0;
  cursor: pointer;
}
.finder form.search .choice .radio input:checked ~ .indicator:after {
  background: #00acc8;
  margin: 0 auto;
  height: 10px;
  width: 10px;
  border-radius: 50%;
  content: "";
  opacity: 1;
}
.finder form.search .choice .radio:hover .indicator {
  background: rgb(242.25, 242.25, 242.25);
}
.finder form.search .choice .radio .indicator {
  position: relative;
  height: 20px;
  width: 20px;
  background: white;
  border: 1px solid #D9D9D6;
  border-radius: 50%;
  transition: background 0.3s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
  order: 0 !important;
  margin-right: 10px;
  cursor: pointer;
  padding: 0 !important;
}
.finder form.search .choice .radio .indicator:after {
  background: #00acc8;
  opacity: 0;
  margin: 0 auto;
  height: 10px;
  width: 10px;
  border-radius: 50%;
  content: "";
  transition: opacity 0.3s ease-in-out;
  position: absolute;
  top: 4px;
  left: 0;
  right: 0;
}
@media (min-width: 767px) {
  .finder form.search .choice {
    max-width: 50% !important;
  }
}
.finder form.search input[type=text], .finder form.search input[type=search] {
  height: 50px;
  width: 100%;
  padding: 10px 20px;
  border: solid 1px #D9D9D6;
  transition: border 0.3s ease-in-out;
  font-size: 12px;
  color: #535353;
  box-sizing: border-box;
  -webkit-appearance: none !important;
  border-radius: 0 !important;
}
.finder form.search input[type=text]:focus, .finder form.search input[type=search]:focus {
  outline: none;
  border: solid 1px #00acc8;
}
.finder form.search button {
  background: #00acc8;
  border: none;
  z-index: 1;
  height: 50px;
  width: 100%;
  color: white;
  text-transform: uppercase;
  font-size: 12px;
  padding: 10px 40px;
  margin-top: 20px;
  line-height: 1;
  outline: none;
  transition: box-shadow 0.3s ease-in-out, background 0.3s ease-in-out;
}
.finder form.search button:hover {
  background: rgb(0, 150.07, 174.5);
}
.finder form.search button:focus {
  box-shadow: 0 0 2px 2px rgba(0, 172, 200, 0.25);
}
.finder form.search button img {
  width: 11px;
  height: 11px;
}
.finder hr {
  border: 0;
  height: 1px;
  background: #D9D9D6;
  margin: 0 0 24px;
  width: 100%;
}
.finder .call-box {
  flex: 0 100%;
  text-align: left;
  line-height: 1.75;
  padding: 30px;
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: center;
}
.finder .call-box > .icon-circle {
  border: 3px solid #00acc8;
  color: #00acc8;
  border-radius: 100%;
  padding: 0;
  font-size: 17px;
  font-weight: 900;
  line-height: 1;
  width: 35px;
  height: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 15px;
}
.finder .call-box > .icon-circle > i.fa-phone {
  transform: rotate(-90deg);
}
.finder .call-box a {
  color: #00acc8;
  font-family: "Sentinel A", "Sentinel B", serif;
  font-size: 16px;
  text-transform: uppercase;
  display: inline-block;
  letter-spacing: 1px;
  font-weight: 600;
  line-height: 1;
}
.finder .call-box a:hover {
  color: rgb(0, 150.07, 174.5);
}
.finder .call-box .or {
  color: #535353;
  font-family: "Sentinel A", "Sentinel B", serif;
  font-size: 16px;
  font-weight: 600;
  margin: 0 5px;
}
.finder .call-box p {
  font-size: 12px;
  color: #535353;
  margin-bottom: 0;
  line-height: 1;
}
@media (min-width: 767px) {
  .finder .call-box {
    flex-flow: row nowrap;
  }
}
.gform_wrapper {
  margin-top: 0 !important;
}
.gform_wrapper .field_sublabel_below label {
  font-size: 14px !important;
}
.gform_body {
  width: 100% !important;
}
.gform_body .gfield_label {
  font-family: "proxima-nova", Arial, sans-serif !important;
  font-weight: 400 !important;
  font-size: 12px !important;
  color: #535353 !important;
  display: flex !important;
  justify-content: flex-start;
  flex-flow: row nowrap;
  letter-spacing: 1px;
}
.gform_body .gfield_label .gfield_required {
  order: 0 !important;
  color: #D0011B;
}
.gform_body ul.gform_fields {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
}
.gform_body ul.gform_fields > li.gfield {
  flex: 0 100%;
  padding-right: 0 !important;
}
.gform_body ul.gform_fields > li.gfield #field_1_1, .gform_body ul.gform_fields > li.gfield #field_1_2 {
  flex: 0 100%;
}
.gform_body ul.gform_fields > li.gfield:nth-child(2) {
  margin-right: 0 !important;
}
.gform_body ul.gform_fields > li.gfield:last-child {
  display: flex;
  flex-flow: row wrap;
}
.gform_body ul.gform_fields > li.gfield:last-child .gfield_label {
  flex: 0 100%;
  order: 0;
  max-width: 50%;
}
.gform_body ul.gform_fields > li.gfield:last-child .gfield_description {
  flex: 0 100%;
  order: 1;
  align-self: flex-start;
  padding: 0 !important;
  font-family: "proxima-nova", Arial, sans-serif;
  font-weight: 400;
  font-size: 12px;
  text-align: left;
  max-width: 50%;
}
.gform_body ul.gform_fields > li.gfield:last-child .ginput_container {
  flex: 0 100%;
  order: 2;
}
@media (min-width: 992px) {
  .gform_body ul.gform_fields > li.gfield:last-child .gfield_label {
    flex: 0 50%;
    display: inline-block;
  }
  .gform_body ul.gform_fields > li.gfield:last-child .gfield_description {
    flex: 0 50%;
    text-align: right;
    display: inline-block;
  }
}
.gform_body ul.gform_fields #field_1_1 {
  padding-right: 0;
}
@media (min-width: 992px) {
  .gform_body ul.gform_fields #field_1_1 {
    padding-right: 15px !important;
  }
}
.gform_body ul.gform_fields #field_1_2 {
  padding-left: 0;
}
@media (min-width: 992px) {
  .gform_body ul.gform_fields #field_1_2 {
    padding-left: 15px !important;
  }
}
@media (min-width: 992px) {
  .gform_body ul.gform_fields #field_1_1, .gform_body ul.gform_fields #field_1_2 {
    flex: 0 50%;
    width: 50%;
    margin-right: 0 !important;
    display: inline-block !important;
  }
}
.gform_body input[type=text], .gform_body input[type=email], .gform_body input[type=tel] {
  height: 50px;
  width: 100% !important;
  padding: 10px 20px !important;
  border: solid 1px #D9D9D6;
  transition: border 0.3s ease-in-out;
  font-size: 12px !important;
  color: #535353;
  background: white;
  letter-spacing: 1px !important;
  box-sizing: border-box;
}
.gform_body input[type=text]:focus, .gform_body input[type=email]:focus, .gform_body input[type=tel]:focus {
  outline: none;
  border: solid 1px #00acc8;
}
.gform_body input[type=text]::-moz-placeholder, .gform_body input[type=email]::-moz-placeholder, .gform_body input[type=tel]::-moz-placeholder {
  color: #9B9B9B !important;
}
.gform_body input[type=text]::placeholder, .gform_body input[type=email]::placeholder, .gform_body input[type=tel]::placeholder {
  color: #9B9B9B !important;
}
.gform_body textarea {
  width: 100% !important;
  padding: 20px !important;
  border: solid 1px #D9D9D6;
  transition: border 0.3s ease-in-out;
  font-size: 12px !important;
  color: #535353;
  background: white;
  letter-spacing: 1px !important;
  flex: 0 100%;
}
.gform_body textarea:focus {
  outline: none;
  border: solid 1px #00acc8;
}
.gform_body select {
  content: "";
  height: 50px;
  width: 100% !important;
  padding: 10px 20px !important;
  border: solid 1px #D9D9D6;
  transition: border 0.3s ease-in-out;
  background: white;
  color: #535353;
  font-family: "proxima-nova", Arial, sans-serif;
  font-size: 12px !important;
  border-radius: 1px !important;
  background-image: linear-gradient(45deg, transparent 50%, #00acc8 50%), linear-gradient(135deg, #00acc8 50%, transparent 50%);
  background-position: calc(100% - 25px) calc(1em + 10px), calc(100% - 20px) calc(1em + 10px), calc(100% - 2.5em) 0.5em;
  background-size: 5px 5px, 6px 6px, 2px 1.5em;
  background-repeat: no-repeat;
  -webkit-appearance: none;
  -moz-appearance: none;
  letter-spacing: 1px !important;
}
.gform_body select:focus {
  outline: none;
  border: solid 1px #00acc8;
}
.gform_body select::-ms-expand {
  display: none;
}
.gform_body button, .gform_body input[type=submit], .gform_body .gform_button {
  background: #00acc8 !important;
  border: none !important;
  z-index: 1;
  height: 50px;
  color: white;
  text-transform: uppercase;
  font-size: 12px;
  padding: 10px 40px;
  line-height: 1;
  outline: none;
  transition: box-shadow 0.3s ease-in-out, background 0.3s ease-in-out;
}
.gform_body button:hover, .gform_body input[type=submit]:hover, .gform_body .gform_button:hover {
  background: rgb(0, 150.07, 174.5);
}
.gform_body button:focus, .gform_body input[type=submit]:focus, .gform_body .gform_button:focus {
  box-shadow: 0 0 2px 2px rgba(0, 172, 200, 0.25);
}
.gfield_select span {
  margin-bottom: 0 !important;
}
.gform_footer button, .gform_footer input[type=submit], .gform_footer .gform_button {
  background: #00acc8 !important;
  border: none !important;
  z-index: 1;
  height: 50px !important;
  color: white;
  text-transform: uppercase;
  font-size: 12px;
  padding: 10px 40px !important;
  line-height: 1;
  outline: none;
  transition: box-shadow 0.3s ease-in-out, background 0.3s ease-in-out;
}
.gform_footer button:hover, .gform_footer input[type=submit]:hover, .gform_footer .gform_button:hover {
  background: rgb(0, 150.07, 174.5) !important;
}
.gform_footer button:focus, .gform_footer input[type=submit]:focus, .gform_footer .gform_button:focus {
  box-shadow: 0 0 2px 2px rgba(0, 172, 200, 0.25);
}
ul#input_3_5 {
  width: 100% !important;
  justify-content: space-between !important;
  flex-flow: row wrap !important;
}
ul#input_3_5 > li {
  margin: 10px auto;
  padding: 10px 20px;
  flex: 0 100%;
  max-width: 100% !important;
}
ul#input_3_5 > li > input[type=radio]:checked ~ label {
  background: rgb(0, 128.14, 149);
}
ul#input_3_5 > li > label {
  padding: 10px 30px !important;
  background: #00acc8;
  color: white !important;
  text-align: center;
  line-height: 1;
  font-size: 16px !important;
  min-height: 20px !important;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 100% !important;
  width: 100% !important;
  font-weight: 400 !important;
  transition: background 0.3s ease-in-out;
  margin: 0 !important;
}
ul#input_3_5 > li > label:hover {
  background: rgb(0, 128.14, 149);
}
ul#input_3_5 > li.gchoice_3_5_5 {
  margin-right: 0 !important;
}
ul#input_3_5 > li.gchoice_3_5_5 > input {
  margin: 0 !important;
  text-align: center;
}
@media (min-width: 992px) {
  ul#input_3_5 > li {
    flex: 1;
    padding: 0;
    margin: 10px;
    width: auto;
  }
}
.ginput_cardextras {
  display: flex !important;
  flex-flow: row wrap;
  justify-content: flex-start;
  overflow: visible !important;
}
.ginput_cardextras .ginput_cardinfo_left {
  padding: 0;
  flex: 0 100%;
}
.ginput_cardextras .ginput_cardinfo_left .ginput_card_expiration_container {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
}
.ginput_cardextras .ginput_cardinfo_left .ginput_card_expiration_container > .nice-select {
  flex: 0 50%;
  margin: 10px 0 !important;
}
.ginput_cardextras .ginput_cardinfo_left .ginput_card_expiration_container > .nice-select > span {
  margin: 0 !important;
}
.ginput_cardextras .ginput_cardinfo_right {
  padding: 0;
  flex: 0 100%;
}
.ginput_cardextras .ginput_cardinfo_right > input {
  margin: 9px 0 !important;
}
@media (min-width: 992px) {
  .ginput_cardextras .ginput_cardinfo_left {
    padding: 5px 5px 5px 0;
    flex: 0 50%;
    max-width: 50%;
  }
  .ginput_cardextras .ginput_cardinfo_left .ginput_card_expiration_container {
    flex-flow: row nowrap;
  }
  .ginput_cardextras .ginput_cardinfo_left .ginput_card_expiration_container > .nice-select {
    width: 100% !important;
    max-width: 100% !important;
  }
  .ginput_cardextras .ginput_cardinfo_right {
    flex: 0 50%;
    max-width: 50%;
    padding: 5px 0 5px 5px;
  }
}
.gform_confirmation_message {
  font-size: 16px !important;
  font-weight: 400 !important;
  color: #535353 !important;
}
#gform_confirmation_wrapper_9 {
  padding: 20px;
  background-color: #00acc8;
}
#gform_confirmation_wrapper_9 .gform_confirmation_message_9.gform_confirmation_message {
  color: white !important;
}
.nice-select {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  background-color: #fff;
  border-radius: none;
  border: solid 1px #D9D9D6;
  box-sizing: border-box;
  cursor: pointer;
  font-family: inherit;
  font-size: 12px;
  font-weight: normal;
  color: #535353;
  line-height: 1;
  outline: none;
  padding: 15px 20px !important;
  margin: 0 !important;
  position: relative;
  text-align: left !important;
  transition: all 0.2s ease-in-out;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  white-space: nowrap;
  width: 100%;
  height: 50px;
  flex: 0 100%;
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
}
.nice-select:hover {
  border-color: rgb(219.25, 219.25, 219.25);
}
.nice-select:active, .nice-select.open, .nice-select:focus {
  border-color: #00acc8;
}
.nice-select:after {
  border-bottom: 2px solid #00acc8;
  border-right: 2px solid #00acc8;
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  margin-top: -4px;
  pointer-events: none;
  position: absolute;
  right: 20px;
  top: 50%;
  transform-origin: 66% 66%;
  transform: rotate(45deg);
  transition: all 0.15s ease-in-out;
}
.nice-select.open:after {
  transform: rotate(-135deg);
}
.nice-select.open .list {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1) translateY(0);
}
.nice-select.disabled {
  border-color: rgb(237.1, 237.1, 237.1);
  color: #999;
  pointer-events: none;
}
.nice-select.disabled:after {
  border-color: #cccccc;
}
.nice-select.wide {
  width: 100%;
}
.nice-select.wide .list {
  left: 0 !important;
  right: 0 !important;
}
.nice-select.right {
  float: right;
}
.nice-select.right .list {
  left: auto;
  right: 0;
}
.nice-select.small {
  font-size: 12px;
  height: 36px;
  line-height: 34px;
}
.nice-select.small:after {
  height: 4px;
  width: 4px;
}
.nice-select.small .option {
  line-height: 34px;
  min-height: 34px;
}
.nice-select .list {
  background-color: #fff;
  box-shadow: 0 0 0 1px rgba(68, 68, 68, 0.11);
  box-sizing: border-box;
  margin-top: 4px;
  margin-right: 0 !important;
  margin-left: 0 !important;
  width: 100%;
  max-height: 320px;
  opacity: 0;
  overflow: auto;
  padding: 0;
  pointer-events: none;
  position: absolute;
  top: 100%;
  left: 0;
  transform-origin: 50% 0;
  transform: scale(0.75) translateY(-21px);
  transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
  z-index: 9;
}
.nice-select .list:hover .option:not(:hover) {
  background-color: transparent !important;
}
.nice-select .option {
  cursor: pointer;
  font-weight: 400;
  line-height: 40px;
  list-style: none;
  min-height: 40px;
  outline: none;
  padding-left: 18px;
  padding-right: 29px;
  text-align: left;
  transition: all 0.2s;
}
.nice-select .option:hover, .nice-select .option.focus, .nice-select .option.selected.focus {
  background-color: #f6f6f6;
}
.nice-select .option.selected {
  color: #00acc8;
}
.nice-select .option.disabled {
  background-color: transparent;
  color: #999;
  cursor: default;
}
@media (min-width: 767px) {
  .nice-select {
    width: 50%;
    flex: 0 50%;
    max-width: 50%;
  }
}
.results {
  width: 100%;
  margin-top: 20px;
}
.results .top-labels {
  border-bottom: 1px solid #D9D9D6;
  padding: 5px 0;
  display: none;
  flex-flow: row wrap;
  width: 100%;
  justify-content: space-between;
  font-size: 14px;
}
.results .search-result {
  display: flex;
  flex-flow: row wrap;
  padding: 10px 0;
  border-bottom: 1px solid #D9D9D6;
  line-height: 1;
  justify-content: space-between;
  text-align: center;
}
.results .search-result a {
  color: #00acc8;
  line-height: 1.5;
  font-size: 14px;
  flex: 0 100%;
  padding-right: 10px;
}
.results .search-result a:hover {
  color: rgb(0, 150.07, 174.5);
}
.results .search-result p {
  margin: 0 !important;
  font-size: 14px;
  flex: 0 100%;
  line-height: 1.5;
  display: flex;
  align-items: center;
}
.results .search-result p a {
  color: #00acc8;
  line-height: 1.5;
  font-size: 14px;
  flex: 0 100%;
}
.results .search-result p a:hover {
  color: rgb(0, 150.07, 174.5);
}
.results .search-result:last-of-type {
  border-bottom: none;
}
@media (min-width: 767px) {
  .results .top-labels {
    display: flex;
    flex-flow: row nowrap;
  }
  .results .top-labels a {
    outline: none;
    flex: 0 40%;
    color: black;
    position: relative;
  }
  .results .top-labels a.active span:after {
    content: " \f0d7";
    font-family: FontAwesome;
    position: absolute;
    right: -15px;
    top: 1px;
  }
  .results .top-labels span {
    position: relative;
    flex: 0 40%;
  }
  .results .top-labels span:last-of-type {
    flex: 0 20%;
  }
  .results .search-result {
    flex-flow: row nowrap;
    text-align: left;
  }
  .results .search-result a {
    flex: 0 40%;
  }
  .results .search-result p {
    flex: 0 20%;
  }
  .results .search-result p:first-of-type {
    flex: 0 40%;
  }
}
h1.search-title {
  color: #535353;
}
.search-info {
  padding: 20px 0;
}
.search-result {
  padding: 10px;
  border-bottom: 1px solid #D9D9D6;
}
.search-result h3 {
  margin: 10px 0;
  line-height: 1;
}
.search-result h3 > a {
  color: #00acc8;
  font-size: 22px;
  transition: color 0.3s ease-in-out;
}
.search-result h3 > a:hover {
  color: rgb(0, 150.07, 174.5);
}
.search-result > p.sub {
  color: rgb(129.5, 129.5, 129.5);
  font-size: 12px;
  text-transform: uppercase;
  font-family: "proxima-nova", Arial, sans-serif;
  font-weight: 400;
  margin: 5px 0 10px;
  line-height: 1;
}
.search-result > p {
  color: #535353;
  font-size: 14px;
  font-weight: 400;
  font-family: "proxima-nova", Arial, sans-serif;
}
.search-result:last-of-type {
  border-bottom: none;
}
.finder {
  padding: 30px 0;
}
/*--------------------------------------------------------------
6.4 Page Templates
--------------------------------------------------------------*/
body.home, body.page-front-page-home-2 {
  background: white;
}
body.home .content, body.page-front-page-home-2 .content {
  background: white;
}
.home-hero-wrapper {
  background: #00acc8;
  padding: 0 30px;
  height: 500px;
}
.home-hero-inner {
  position: relative;
  top: 110px;
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
}
.home-hero-inner .hero-content {
  width: 450px;
}
@media (min-width: 992px) {
  .home-hero-inner .hero-content {
    width: 600px;
  }
}
.home-hero-inner .hero-content .hero-content-inner {
  padding: 0 30px 30px 40px;
}
@media (min-width: 992px) {
  .home-hero-inner .hero-content .hero-content-inner {
    padding-top: 60px;
  }
}
.home-hero-inner .hero-content h1.hero-title {
  font-family: "Sentinel A", "Sentinel B", serif;
  font-size: 28px;
  font-weight: 600;
  line-height: 1.1em;
  letter-spacing: 1px;
  color: white;
  margin: 0 0 0.6em;
}
@media (min-width: 992px) {
  .home-hero-inner .hero-content h1.hero-title {
    font-size: 32px;
  }
}
@media (min-width: 1200px) {
  .home-hero-inner .hero-content h1.hero-title {
    font-size: 42px;
  }
}
.home-hero-inner .hero-content p.hero-text {
  color: white;
  margin: 0;
  line-height: 1.6em;
}
.home-hero-inner .hero-image {
  display: none;
}
@media (min-width: 992px) {
  .home-hero-inner .hero-image {
    display: block;
  }
}
.home-hero-inner .hero-image img {
  border-radius: 32px 0 0;
  margin: 0 0px 0 30px;
}
.shadow-box-rounded {
  background: white;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.16);
  border-radius: 16px 0;
  padding: 30px 40px 20px;
}
.shadow-box-rounded h3.finder-head {
  font-family: "Sentinel A", "Sentinel B", serif;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 1px;
  color: #00acc8;
  margin: 0;
}
.shadow-box-rounded .finder-intro {
  font-size: 15px;
  line-height: 1.6em;
  color: #4A4A4A;
}
.shadow-box-rounded .finder-intro .nowrap {
  white-space: nowrap;
}
.shadow-box-rounded .finder-intro .nowrap a {
  color: inherit;
  text-decoration: none;
}
.shadow-box-rounded .finder-search input.finder-search-input {
  padding: 10px 10px 10px 40px;
  width: 100%;
  background: url("/core/themes/russellmedical/dist/img/search-icon-teal.svg") no-repeat 10px center;
  background-size: 4%;
  border: 1px solid #D9D9D6;
}
.shadow-box-rounded .finder-search input.finder-search-input::-moz-placeholder {
  color: #9B9B9B;
}
.shadow-box-rounded .finder-search input.finder-search-input::placeholder {
  color: #9B9B9B;
}
.shadow-box-rounded .finder-call {
  margin: 20px -15px 0;
  padding: 20px 15px 0;
  border-top: 1px solid #D9D9D6;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
}
.shadow-box-rounded .finder-call-icon a {
  color: #00acc8;
  font-family: "Sentinel A", "Sentinel B", serif;
  font-size: 16px;
  text-transform: uppercase;
  display: block;
  letter-spacing: 1px;
}
.shadow-box-rounded .finder-call-icon a i.fa-phone {
  transform: rotate(-90deg);
  font-size: 30px;
  line-height: 24px;
  border: 4px solid #00acc8;
  border-radius: 30px;
  padding: 7px;
}
.shadow-box-rounded .finder-call-icon a:hover, .shadow-box-rounded .finder-call-icon a:hover i.fa-phone {
  color: rgb(0, 84.28, 98);
  border-color: rgb(0, 84.28, 98);
}
.shadow-box-rounded .finder-call-number {
  padding-left: 20px;
}
.shadow-box-rounded .finder-call-number a {
  font-family: "Sentinel A", "Sentinel B", serif;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 1px;
  color: #00acc8;
}
.shadow-box-rounded .finder-call-number p {
  margin: 0.2em 0 0;
  font-size: 14px;
  color: #4A4A4A;
}
.home-main-wrapper {
  padding: 220px 40px 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (min-width: 992px) {
  .home-main-wrapper {
    justify-content: flex-start;
  }
}
.home-main-wrapper .home-main-image {
  display: none;
}
.home-main-wrapper .home-main-image img {
  border-radius: 0 32px 0 0;
  width: 100%;
}
@media (min-width: 992px) {
  .home-main-wrapper .home-main-image {
    width: 50%;
    display: block;
  }
}
.home-main-wrapper .home-main-content {
  width: 100%;
  margin: 0;
  max-width: none;
}
@media (min-width: 992px) {
  .home-main-wrapper .home-main-content {
    width: 60%;
    margin: 0 0 0 80px;
    max-width: 400px;
  }
}
.home-main-wrapper .home-main-content h1 {
  font-family: "Sentinel A", "Sentinel B", serif;
  font-size: 30px;
  font-weight: 600;
  line-height: 1.2em;
  color: #00acc8;
  margin: 0 0 1em;
}
.home-main-wrapper .home-main-content p {
  font-size: 14px;
  font-weight: normal;
  line-height: 1.6em;
}
.home-main-wrapper .home-links {
  display: flex;
  justify-content: space-evenly;
  flex-wrap: wrap;
  margin: 2em 0;
}
.home-main-wrapper .home-links li {
  width: 100%;
  margin: 0 0 1em;
}
@media (min-width: 400px) {
  .home-main-wrapper .home-links li {
    width: 50%;
  }
}
.home-main-wrapper .home-links li a {
  display: inline-block;
  color: #00acc8;
  font-size: 14px;
  font-weight: 600;
  padding-left: 28px;
  background: url("/core/themes/russellmedical/dist/img/arrow-blue.svg") left center no-repeat;
  background-size: 16px;
}
.home-main-wrapper .home-links li a:hover {
  color: rgb(0, 128.14, 149);
}
.home-main-wrapper .home-links::after {
  content: "";
  flex: auto;
}
ul.paths {
  width: 100%;
  background: white;
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  align-items: center;
  border-top: 1px solid #D9D9D6;
  border-bottom: 1px solid #D9D9D6;
}
ul.paths li {
  flex: 0 100%;
  border-bottom: 1px solid #D9D9D6;
}
ul.paths li:last-child {
  border-bottom: none;
}
ul.paths li a {
  background: white;
  font-family: "Sentinel A", "Sentinel B", serif;
  font-size: 22px;
  color: #00acc8;
  line-height: 1;
  letter-spacing: 1px;
  padding: 22px 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background 0.3s ease-in-out;
}
ul.paths li a span {
  margin-right: 20px;
}
ul.paths li a:hover {
  background: #F7F7F7;
}
@media (min-width: 992px) {
  ul.paths li {
    flex: 1;
    border-right: 1px solid #D9D9D6;
    border-bottom: none;
  }
  ul.paths li:last-child {
    border-right: none;
  }
}
.full-wrap {
  background: white;
  padding: 40px;
}
.flex-container {
  display: flex;
  justify-content: flex-start;
  flex-flow: row wrap;
  padding: 15px 0;
}
.flex-container .one, .flex-container .two, .flex-container .three {
  flex: 0 100%;
}
@media (min-width: 992px) {
  .flex-container {
    flex-flow: row nowrap;
  }
  .flex-container .one {
    flex: 1;
  }
  .flex-container .two {
    flex: 2;
  }
  .flex-container .three {
    flex: 3;
  }
}
a.banner {
  position: relative;
  line-height: 0;
}
a.banner > img {
  width: 100%;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.16);
}
.image-with-excerpt {
  padding: 30px 0 15px;
}
.image-with-excerpt > img {
  display: none;
  height: auto !important;
  width: 100%;
}
.image-with-excerpt h3 {
  font-family: "Sentinel A", "Sentinel B", serif;
  color: #00acc8;
  letter-spacing: 1px;
  margin-top: 10px;
  margin-bottom: 10px;
  flex: 0 100%;
}
.image-with-excerpt a {
  color: #00acc8;
  flex: 0 100%;
}
.image-with-excerpt a > img {
  margin-left: 10px;
}
.image-with-excerpt p {
  color: #4A4A4A;
  line-height: 1.5;
  flex: 0 100%;
  font-size: 14px;
}
.image-with-excerpt p a {
  color: #9B9B9B;
}
@media (min-width: 992px) {
  .image-with-excerpt {
    padding: 0 30px;
  }
  .image-with-excerpt > img {
    flex: 0 100%;
    display: inline-block;
  }
  .image-with-excerpt h3, .image-with-excerpt a, .image-with-excerpt p {
    flex: 0 100%;
  }
}
.blue-box {
  padding: 55px 45px;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.16);
  border-radius: 16px 0 16px 0;
  background: #00acc8;
  color: white;
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.blue-box h3 {
  flex: 0 100%;
  margin: auto 0 10px;
}
.blue-box h3 > a {
  font-family: "Sentinel A", "Sentinel B", serif;
  color: white;
  font-weight: 400;
  letter-spacing: 1px;
}
.blue-box p {
  font-size: 14px;
  line-height: 1.5;
  margin: 0 0 10px;
  flex: 0 100%;
}
.blue-box > a {
  flex: 0 100%;
  color: white;
  margin-right: 5px;
  margin-bottom: auto;
  font-size: 14px;
  font-weight: 700;
}
.blue-box > a > img {
  margin-left: 10px;
}
.button-box {
  flex: 0 100%;
  position: relative;
  margin-top: 20px;
  padding: 0;
}
.button-box > a {
  position: absolute;
  right: 30px;
  bottom: 30px;
  z-index: 2;
  color: #00acc8;
  display: flex;
  justify-content: flex-end;
  flex-flow: row nowrap;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.16);
}
.button-box > a span.left {
  padding: 10px 20px;
  background: white;
  margin: 0;
  transition: background 0.3s ease-in-out;
}
.button-box > a span.right {
  padding: 10px 15px;
  background: #00acc8;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background 0.3s ease-in-out;
}
.button-box > a:hover span.left {
  background: #F7F7F7;
}
.button-box > a:hover span.right {
  background: rgb(0, 150.07, 174.5);
}
@media (min-width: 992px) {
  .button-box {
    margin-top: 0;
    padding: 0 30px;
  }
}
.wysiwyg-box {
  padding: 30px 0;
}
.wysiwyg-box h3 {
  font-size: 22px;
  font-family: "Sentinel A", "Sentinel B", serif;
}
.wysiwyg-box h3 > a {
  font-size: 22px;
}
.wysiwyg-box p {
  font-size: 14px;
  color: #535353;
  width: 90%;
  margin: 20px auto;
}
.wysiwyg-box a {
  color: #00acc8;
  font-weight: 700;
  font-size: 14px;
}
.wysiwyg-box a img {
  margin-left: 5px;
}
.wysiwyg-box ul {
  display: flex;
  flex-flow: row wrap;
  margin: 20px auto;
  justify-content: center;
  display: none;
}
.wysiwyg-box ul li {
  flex: 0 100%;
  margin-top: 15px;
}
.wysiwyg-box ul li:first-child {
  margin-left: 0;
}
@media (min-width: 992px) {
  .wysiwyg-box {
    padding: 0 30px;
  }
  .wysiwyg-box ul {
    margin: 20px auto;
    width: 90%;
    justify-content: flex-start;
    display: flex;
  }
  .wysiwyg-box ul li {
    margin-left: 10px;
    margin-top: 0;
    flex: 1;
  }
}
.shadow-box {
  flex: 0 100%;
  background: white;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.16);
  border-radius: 16px 0 16px 0;
  padding: 30px 60px;
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  text-align: center;
}
.shadow-box h3 {
  font-family: "Sentinel A", "Sentinel B", serif;
  color: #535353;
  letter-spacing: 1px;
}
.shadow-box p {
  font-size: 14px;
  color: #535353;
  width: 90%;
  margin: 0 auto 30px;
}
.shadow-box a {
  color: #00acc8;
  font-size: 14px;
  font-weight: 700;
}
.shadow-box a > img {
  margin-left: 10px;
}
.needs-btn {
  width: 100%;
  text-align: center;
  padding: 20px 30px 40px;
}
.needs-btn > p {
  color: #535353;
}
.needs-btn > a {
  background: rgb(167.9367088608, 167.9367088608, 161.0632911392);
  color: white;
  border: none;
  z-index: 1;
  height: 50px;
  width: 100%;
  text-transform: uppercase;
  font-size: 12px;
  padding: 10px 40px;
  margin: 20px auto 0;
  line-height: 1;
  outline: none;
  transition: box-shadow 0.3s ease-in-out, background 0.3s ease-in-out;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.needs-btn > a:hover {
  background: rgb(143.4050632911, 143.4050632911, 134.5949367089);
  color: white;
}
.needs-btn > a:focus {
  background: rgb(0, 150.07, 174.5);
  color: white;
}
@media (min-width: 767px) {
  .needs-btn > a {
    width: 30%;
  }
}
.top-lvl-hero {
  margin-top: -14px;
}
.toplevel-container {
  display: flex;
  flex-flow: row wrap;
  padding: 36px 22px;
  margin: 0 auto;
  justify-content: center;
  align-items: flex-start;
}
@media (min-width: 400px) {
  .toplevel-container {
    padding: 42px 36px;
  }
}
.top-level-header, .top-no-hero {
  margin-top: 42px;
  margin-bottom: 0px;
  font-family: "Sentinel A", "Sentinel B", serif;
  font-size: 27px;
  font-weight: 600;
  color: #00acc8;
  letter-spacing: 1px;
}
.top-no-hero {
  margin-top: 16px;
  margin-bottom: 0px;
}
.top-lvl-info-contain {
  color: #4A4A4A;
  line-height: 1.5;
  max-width: 80%;
  margin: 0 auto;
}
.content-container {
  display: flex;
  flex-flow: row wrap;
  flex: 0 100%;
}
.content-container iframe {
  max-width: 100%;
}
@media (min-width: 992px) {
  .content-container {
    max-width: 60%;
    flex: 1 60%;
  }
}
@media (min-width: 992px) {
  .content-container.single-column-container {
    max-width: 100%;
    flex: 1;
  }
}
.content-container .nav-card {
  color: #4A4A4A;
  display: flex;
  flex-flow: column nowrap;
  justify-content: space-between;
  box-shadow: 0px 3px 8px #D9D9D6;
  flex: 0 100%;
  max-width: 100%;
  background-color: #fff;
  margin: 0 1% 24px;
  padding: 10px;
  border: 3px solid transparent;
  border-radius: 20px 0 20px;
}
.content-container .nav-card h2 {
  padding: 0 5px;
  width: 100%;
  font-family: "Sentinel A", "Sentinel B", serif;
  font-weight: 600;
  letter-spacing: 1px;
  margin: 8px 0 16px;
  color: #00acc8;
  font-size: 22px;
}
.content-container .nav-card h2 a {
  color: #00acc8;
  outline: 0;
}
.content-container .nav-card h2 a:visited {
  color: #00acc8;
}
.content-container .nav-card h2 a:hover {
  color: rgb(0, 128.14, 149);
}
.content-container .nav-card p {
  margin: 0;
  padding: 0 5px;
  font-size: 14px;
  line-height: 1.5;
  word-wrap: break-word;
  display: block;
  width: 100%;
  max-width: 100%;
}
.content-container .nav-card ul {
  padding: 0 5px;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  margin: 10px 0;
  width: 100%;
}
.content-container .nav-card ul li {
  font-size: 12px;
  flex: 0 48%;
  margin: 4px 0;
}
.content-container .nav-card ul li a {
  color: #00acc8;
  outline: none;
}
.content-container .nav-card ul li a:hover {
  color: rgb(0, 106.21, 123.5);
}
@media (min-width: 992px) {
  .content-container .nav-card {
    flex: 1 48%;
    max-width: 48%;
  }
}
.content-container .nav-card .learn-more {
  max-width: 100%;
  font-family: "proxima-nova", Arial, sans-serif, sans-serif;
  letter-spacing: 2px;
  margin: 16px 0 2px;
  padding: 14px 24px;
  position: relative;
  display: block;
  color: #fff;
  background-color: #00acc8;
  outline: 0;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  border-radius: 20px 0 20px;
  align-self: flex-end;
  width: 100%;
}
.content-container .nav-card .learn-more:hover {
  background-color: rgb(0, 128.14, 149);
}
.content-container .nav-card .right-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 26px;
  font-size: 18px;
  height: 10px;
  width: auto;
}
.sublevel-hero {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% center !important;
  height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  position: relative;
  padding: 0 24px;
}
.sublevel-hero h1.hero-message {
  font-size: 42px;
  font-family: "Sentinel A", "Sentinel B", serif;
  font-weight: 400;
  color: white;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.35);
  line-height: 1;
  margin-left: 20px;
  width: 50%;
}
@media (min-width: 600px) {
  .sublevel-hero {
    height: 420px;
    background-position: top center !important;
  }
}
@media (min-width: 767px) {
  .sublevel-hero {
    height: 540px;
  }
}
@media (min-width: 1200px) {
  .sublevel-hero {
    height: 45vh;
    min-height: 540px;
  }
}
body.page-template-page-cancer-center h1.hero-title {
  display: none;
}
.sublevel-content {
  padding-top: 60px;
}
.sublevel-content h1.hero-title {
  font-family: "Sentinel A", "Sentinel B", serif;
  font-weight: 400;
  letter-spacing: 1px;
  color: white;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.4);
  margin: 0;
  text-align: left;
  padding-left: 88px;
}
.sublevel-content .sublevel-header-small {
  background: #00acc8;
  height: 200px;
  margin-bottom: 0px;
  margin-top: -15px;
}
.sublevel-content .sublevel-header-small .container {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  padding: 0 20px;
}
.sublevel-content .sublevel-header-small .hero-small-title {
  padding-right: 30px;
  height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.sublevel-content .sublevel-header-small .hero-small-title h1.hero-title {
  font-size: 42px;
  font-weight: 600;
  text-shadow: none;
  padding-left: 0;
}
.sublevel-content .sublevel-header-small .hero-small {
  display: none;
  margin-top: 36px;
}
.sublevel-content .sublevel-header-small .hero-small img {
  border-radius: 30px 0 !important;
  width: 415px;
  height: 345px;
  max-width: none;
}
@media (min-width: 992px) {
  .sublevel-content .sublevel-header-small {
    height: 300px;
    margin-bottom: 120px;
  }
  .sublevel-content .sublevel-header-small .container {
    padding: 0 80px 0 88px;
  }
  .sublevel-content .sublevel-header-small .hero-small-title {
    height: 300px;
  }
  .sublevel-content .sublevel-header-small .hero-small {
    display: block;
  }
  .sublevel-content .sublevel-header-small #breadcrumbs {
    top: -30px;
  }
}
.sublevel-container {
  padding: 40px 24px;
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
}
@media (min-width: 767px) {
  .sublevel-container.hero-small {
    padding-top: 20px !important;
  }
}
.sublevel-container .content-container {
  display: block;
  padding: 0;
}
.sublevel-container .content-container #breadcrumbs {
  position: relative;
  padding: 0;
  background: none;
  color: #00acc8;
  font-size: 14px;
  top: auto;
}
.sublevel-container .content-container #breadcrumbs a {
  color: #00acc8;
}
.sublevel-container .content-container .hero-content {
  margin: 2em 0 -0.8em;
}
.sublevel-container .content-container .hero-content img {
  max-width: 80%;
}
.sublevel-container .content-container iframe {
  max-width: 100%;
}
.sublevel-container .content-container img {
  max-width: 100%;
}
.sublevel-container .content-container blockquote {
  font-style: italic;
}
.sublevel-container .content-container a {
  color: #00acc8;
  text-decoration: none;
  transition: color 0.3s ease-in-out;
  outline: none;
}
.sublevel-container .content-container a:hover {
  color: rgb(0, 106.21, 123.5);
}
.sublevel-container .content-container a.arrow-link {
  padding-right: 60px;
  background: url("/core/themes/russellmedical/dist/img/arrow-blue.svg") right center no-repeat;
  background-size: 16px;
}
.sublevel-container .content-container ul {
  margin-left: 24px;
  list-style-type: disc;
  padding: 0;
  color: #4A4A4A;
}
.sublevel-container .content-container ul li {
  margin: 6px 0;
}
.sublevel-container .content-container ol {
  color: #4A4A4A;
  padding: 0;
  margin-left: 20px;
}
.sublevel-container .content-container ol li {
  margin: 6px 0;
}
.sublevel-container .content-container h1 {
  margin-top: 12px;
  font-family: "Sentinel A", "Sentinel B", serif;
  font-size: 27px;
  font-weight: 600;
  color: #00acc8;
  letter-spacing: 1px;
}
.sublevel-container .content-container h2, .sublevel-container .content-container h3, .sublevel-container .content-container h4, .sublevel-container .content-container h5, .sublevel-container .content-container h6 {
  font-family: "Sentinel A", "Sentinel B", serif;
  font-weight: 400;
  letter-spacing: 1px;
  margin-top: 34px;
  margin-bottom: 6px;
  color: #535353;
  font-weight: 600 !important;
}
.sublevel-container .content-container h2 {
  font-size: 22px;
}
.sublevel-container .content-container h2.subtitle {
  color: #00acc8;
  margin: 0 0 1em;
}
.sublevel-container .content-container h3 {
  font-size: 16px;
}
.sublevel-container .content-container h4 {
  font-size: 16px;
}
.sublevel-container .content-container h5 {
  font-size: 16px;
}
.sublevel-container .content-container h6 {
  font-size: 16px;
}
.sublevel-container .content-container p {
  color: #4A4A4A;
  margin: 0 0 14px;
  line-height: 1.5;
}
.sublevel-container .content-container hr {
  border: 0;
  height: 1px;
  background: #D9D9D6;
  margin: 24px 0;
  width: 100%;
}
@media (min-width: 992px) {
  .sublevel-container .content-container {
    padding: 0 48px 0 0;
  }
  .sublevel-container .content-container #breadcrumbs {
    top: -80px;
  }
}
.sublevel-container .content-container .form-intro {
  padding: 50px 0 20px;
  margin: 50px 0 0;
  border-top: 1px solid #D9D9D6;
}
.sublevel-container .content-container .form-intro p {
  font-size: 14px;
}
.sublevel-container .bottom-page-nav {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  list-style-type: none;
  margin: 0 !important;
  width: 90%;
}
.sublevel-container .bottom-page-nav li {
  list-style: none;
  flex: 0 100%;
  margin: 6px 0 0 !important;
}
@media (min-width: 992px) {
  .sublevel-container .bottom-page-nav li {
    margin: 10px 0 !important;
    padding: 0;
    flex: 0 100%;
    max-width: 100%;
  }
}
@media (min-width: 1120px) {
  .sublevel-container .bottom-page-nav li {
    flex: 1 40%;
    max-width: 40%;
  }
}
.sublevel-container .bottom-page-nav a {
  display: inline-block;
  outline: 0;
  color: #00acc8;
  position: relative;
}
.sublevel-container .bottom-page-nav a p {
  color: #00acc8;
  transition: color 0.3s ease-in-out;
  margin: 0;
}
@media (min-width: 992px) {
  .sublevel-container .bottom-page-nav a p {
    display: block;
    max-width: 75%;
  }
}
@media (min-width: 1120px) {
  .sublevel-container .bottom-page-nav a p {
    max-width: 100%;
  }
}
.sublevel-container .bottom-page-nav a svg {
  display: none;
  width: 20px;
  height: 23px;
}
.sublevel-container .bottom-page-nav a svg g {
  fill: #00acc8;
  transition: all 0.3s ease;
}
@media (min-width: 992px) {
  .sublevel-container .bottom-page-nav a svg {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 75%;
    display: inline-block;
  }
}
@media (min-width: 1120px) {
  .sublevel-container .bottom-page-nav a svg {
    left: 103%;
  }
}
.sublevel-container .bottom-page-nav a:visited {
  color: #00acc8;
}
.sublevel-container .bottom-page-nav a:hover {
  color: rgb(0, 106.21, 123.5);
}
.sublevel-container .bottom-page-nav a:hover > svg g {
  fill: rgb(0, 106.21, 123.5);
}
.sublevel-container .bottom-page-nav a:hover > p {
  color: rgb(0, 106.21, 123.5);
}
@media (min-width: 992px) {
  .sublevel-container .bottom-page-nav a {
    display: block;
    width: 80%;
  }
}
@media (min-width: 767px) {
  .sublevel-container {
    padding: 60px 24px 80px;
  }
}
.content-wrap {
  padding: 120px 24px 80px;
  margin: 0 auto;
}
.content-wrap h1 {
  margin-top: 12px;
  font-family: "Sentinel A", "Sentinel B", serif;
  font-size: 27px;
  font-weight: 600;
  color: #00acc8;
  letter-spacing: 1px;
}
.content-wrap h2 {
  margin-top: 34px;
  margin-bottom: 6px;
  font-family: "Sentinel A", "Sentinel B", serif;
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 2px;
}
.content-wrap p {
  color: #4A4A4A;
  margin: 0 0 14px;
}
@media (min-width: 992px) {
  .content-wrap {
    padding: 120px 48px 80px;
  }
}
.pagination {
  text-align: center;
  padding: 10px;
  display: flex;
  justify-content: center;
}
.pagination .nav-links {
  color: #4A4A4A;
  font-family: "proxima-nova", Arial, sans-serif;
  font-size: 14px;
  font-weight: 400;
}
.pagination .nav-links span {
  margin: 0 5px;
}
.pagination .nav-links a {
  margin: 0 5px;
  color: #00acc8;
  outline: none;
  transition: color 0.3s ease-in-out;
}
.pagination .nav-links a:hover {
  color: rgb(0, 150.07, 174.5);
}
.physician-bio > h2 {
  margin-top: 15px !important;
}
.physician-bio > p {
  margin: 0 0 5px !important;
}
.physician-bio img.physician-photo {
  max-width: 300px;
  text-align: left;
  margin: 15px 0;
}
.not-found-container {
  padding: 150px 20px;
  margin: 0 auto;
  max-width: 750px;
  text-align: center;
  height: 100%;
  width: 100%;
  color: #4A4A4A;
}
.not-found-container h1 {
  font-family: "Sentinel A", "Sentinel B", serif;
  color: #00acc8;
  font-size: 27px;
}
@media (min-width: 767px) {
  .not-found-container h1 {
    font-size: 62px;
  }
}
.not-found-container p {
  font-weight: 500;
}
.not-found-container a {
  color: #00acc8;
  transition: color 0.3s ease-in-out;
  font-weight: 500;
}
.not-found-container a:visited {
  color: #00acc8;
}
.not-found-container a:hover {
  color: rgb(0, 106.21, 123.5);
}
.about-middle {
  width: 100%;
  background-color: #fff;
  padding: 36px 24px;
  color: #535353;
}
.about-middle h1, .about-middle h2, .about-middle h3, .about-middle h4, .about-middle h5, .about-middle h6 {
  margin: 16px 0;
  font-family: "Sentinel A", "Sentinel B", serif;
}
@media (min-width: 992px) {
  .about-middle h1, .about-middle h2, .about-middle h3, .about-middle h4, .about-middle h5, .about-middle h6 {
    padding: 0 80px;
  }
}
.about-middle p {
  margin: 8px 0;
  line-height: 1.5;
}
@media (min-width: 992px) {
  .about-middle p {
    margin: 24px 0;
    padding: 0 80px;
  }
}
.about-middle .middle-wrap {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
}
@media (min-width: 992px) {
  .about-middle .middle-wrap {
    display: block;
    width: 100%;
  }
}
.about-middle .middle-wrap:after {
  content: "";
  display: block;
  clear: both;
}
.about-middle .mission-statement {
  order: 500;
  position: relative;
  margin-top: 16px;
}
@media (min-width: 600px) {
  .about-middle .mission-statement {
    max-width: 75%;
    margin: 0 auto;
  }
}
@media (min-width: 992px) {
  .about-middle .mission-statement {
    width: 50%;
    margin-top: -200px;
    margin-bottom: 16px;
    padding-left: 80px;
    float: right;
  }
}
.about-middle .mission-statement .mission-content {
  color: #fff;
  box-shadow: 0 2px 4px 0 #D9D9D6;
  background-color: #00acc8;
  border: 3px solid transparent;
  border-radius: 20px 0 20px;
  padding: 36px;
  text-align: center;
  height: 100%;
}
.about-middle .mission-statement .mission-content img {
  max-width: 100%;
  width: 100%;
}
.about-middle .mission-statement .mission-content h2 {
  padding: 0;
  margin-top: 0;
  font-family: "Sentinel A", "Sentinel B", serif;
  font-weight: 400;
}
.about-middle .mission-statement .mission-content p {
  padding: 0 16px;
  margin: 36px 0 60px;
  font-weight: 400;
}
@media (min-width: 992px) {
  .about-middle .mission-statement .mission-content {
    padding: 48px 36px 36px;
  }
}
@media (min-width: 992px) {
  .about-middle {
    padding: 60px;
  }
}
.about-photo {
  clear: both;
  width: 100%;
  height: 20em;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 35% 50% !important;
}
@media (min-width: 767px) {
  .about-photo {
    height: 28em;
    background-position: center center !important;
  }
}
.about-bottom {
  background-color: #fff;
  width: 100%;
  position: relative;
  padding: 16px;
}
.about-bottom .about-flex {
  display: flex;
  flex-flow: row wrap;
  margin-top: 16px;
}
.about-bottom .hospital-card {
  color: #535353;
  background-color: #fff;
  margin: 0 16px 22px 16px;
  padding: 60px 46px;
  z-index: 5;
  box-shadow: 0px 3px 8px #D9D9D6;
  border: 3px solid transparent;
  border-radius: 20px 0 20px;
  max-width: 100%;
  flex: 0 100%;
}
.about-bottom .hospital-card h3 {
  font-family: "Sentinel A", "Sentinel B", serif;
  margin-top: 0;
}
.about-bottom .hospital-card ul {
  margin-left: 24px;
  list-style-type: disc;
  padding: 0;
  color: #4A4A4A;
}
.about-bottom .hospital-card ul li {
  margin: 6px 0;
}
.about-bottom .hospital-card p {
  line-height: 1.5;
  font-family: "proxima-nova", Arial, sans-serif;
}
.about-bottom .hospital-card a {
  color: #00acc8;
  font-weight: 600;
  transition: color 0.3s ease-in-out;
  width: 226px;
  outline: 0;
}
.about-bottom .hospital-card a svg {
  vertical-align: middle;
  width: 20px;
  height: 23px;
  margin-left: 20px;
  margin-bottom: 1px;
}
.about-bottom .hospital-card a svg g {
  fill: #00acc8;
  transition: all 0.3s ease-in-out;
}
.about-bottom .hospital-card a:visited {
  color: #00acc8;
}
.about-bottom .hospital-card a:hover {
  color: rgb(0, 106.21, 123.5);
}
.about-bottom .hospital-card a:hover > svg g {
  fill: rgb(0, 106.21, 123.5);
}
@media (min-width: 992px) {
  .about-bottom .hospital-card {
    margin-top: -145px;
    padding: 60px 80px;
    flex: 1 46%;
    max-width: 46%;
  }
}
@media (min-width: 992px) {
  .about-bottom {
    padding: 30px 16px;
  }
}
.gf_progressbar_wrapper > h3.gf_progressbar_title {
  margin: 0 0 8px 0 !important;
}
.gf_progressbar {
  width: 100% !important;
  padding: 0 !important;
  box-shadow: none !important;
}
.gf_progressbar > .gf_progressbar_percentage {
  background: #00acc8 !important;
  height: 6px !important;
}
.gf_progressbar > .gf_progressbar_percentage > span {
  display: none !important;
}
.gf_progressbar::after {
  display: none !important;
}
.gform_title {
  display: none !important;
}
.gform_page_footer {
  width: 100% !important;
}
.gform_page_footer input[type=button] {
  background: #00acc8;
  border: none;
  z-index: 1;
  height: 50px;
  width: 100%;
  color: white;
  text-transform: uppercase;
  font-size: 12px;
  padding: 10px 40px;
  margin-top: 20px;
  line-height: 1;
  outline: none;
  transition: box-shadow 0.3s ease-in-out, background 0.3s ease-in-out;
}
.gform_page_footer input[type=button]:hover {
  background: rgb(0, 150.07, 174.5);
}
.gform_page_footer input[type=button]:focus {
  box-shadow: 0 0 2px 2px rgba(0, 172, 200, 0.25);
}
.application-form-container {
  max-width: 1000px !important;
  margin-left: auto;
  margin-right: auto;
}
.application-form-container .content-container {
  max-width: 100%;
  padding-right: 15px !important;
  padding-left: 15px !important;
}
#gform_wrapper_8.gform_wrapper .gsection {
  margin: 3em 0 1em !important;
  padding: 0;
  border-bottom: none;
}
#gform_wrapper_8.gform_wrapper h1 {
  margin-top: 12px;
  font-family: "Sentinel A", "Sentinel B", serif;
  font-size: 27px;
  font-weight: 600;
  color: #00acc8;
  letter-spacing: 1px;
}
#gform_wrapper_8.gform_wrapper h2,
#gform_wrapper_8.gform_wrapper h3,
#gform_wrapper_8.gform_wrapper h4,
#gform_wrapper_8.gform_wrapper h5,
#gform_wrapper_8.gform_wrapper h6 {
  font-family: "Sentinel A", "Sentinel B", serif;
  font-weight: 400;
  letter-spacing: 1px;
  margin-top: 34px;
  margin-bottom: 6px;
  color: #535353;
  font-weight: 600 !important;
}
#gform_wrapper_8.gform_wrapper h2 {
  font-size: 22px;
}
#gform_wrapper_8.gform_wrapper h2.gsection_title {
  border-bottom: none !important;
}
#gform_wrapper_8.gform_wrapper h3 {
  font-size: 16px;
}
#gform_wrapper_8.gform_wrapper h4 {
  font-size: 16px;
}
#gform_wrapper_8.gform_wrapper h5 {
  font-size: 16px;
}
#gform_wrapper_8.gform_wrapper h6 {
  font-size: 16px;
}
#gform_wrapper_8.gform_wrapper p {
  color: #4A4A4A;
  margin: 0 0 14px;
  line-height: 1.5;
}
#gform_wrapper_8.gform_wrapper hr {
  border: 0;
  height: 1px;
  background: #D9D9D6;
  margin: 24px 0;
  width: 100%;
}
#gform_wrapper_8.gform_wrapper .gfield.gsection.section_subheader h2 {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 1px !important;
}
#gform_wrapper_8.gform_wrapper .gfield .gsection_description, #gform_wrapper_8.gform_wrapper .gfield .gfield_description {
  font-size: 14px !important;
  line-height: 1.5em !important;
}
#gform_wrapper_8.gform_wrapper li#field_8_4 {
  margin-bottom: 0 !important;
}
#gform_wrapper_8.gform_wrapper #gfield_description_8_4 {
  margin: 2em 0 0;
  color: #d0011b;
}
#gform_wrapper_8.gform_wrapper #gfield_description_8_66 {
  padding: 10px 0;
  font-size: 12px;
}
#gform_wrapper_8.gform_wrapper #gfield_description_8_80 {
  font-size: 16px !important;
}
#gform_wrapper_8.gform_wrapper #gfield_description_8_171 {
  margin: 10px 0 0;
}
#gform_wrapper_8.gform_wrapper #gfield_description_8_178 {
  margin: 60px 0 0;
}
#gform_wrapper_8.gform_wrapper #gfield_description_8_178 p {
  font-size: 14px;
  margin: 0 0 3em;
}
#gform_wrapper_8.gform_wrapper #field_8_128 {
  margin-bottom: 3em;
}
#gform_wrapper_8.gform_wrapper #gfield_description_8_41 {
  margin: 1em 0 2em;
}
#gform_wrapper_8.gform_wrapper .field_description_below .gfield_description {
  padding-top: 0;
}
#gform_wrapper_8.gform_wrapper label.gfield_label.gfield_label_before_complex {
  font-size: 14px !important;
  font-weight: 600 !important;
}
#gform_wrapper_8.gform_wrapper ul.gform_fields > li.gfield {
  flex: 0 100%;
  /*padding-right:0 !important*/
}
#gform_wrapper_8.gform_wrapper ul.gform_fields > li.gfield:last-child {
  padding-right: 0 !important;
}
#gform_wrapper_8.gform_wrapper .ginput_container_address span.address_zip {
  padding-right: 0px !important;
}
#gform_wrapper_8.gform_wrapper .ginput_complex.ginput_container_address span.ginput_right + span.ginput_left {
  padding-right: 0px !important;
}
#gform_wrapper_8.gform_wrapper .gfield.gf_left_half,
#gform_wrapper_8.gform_wrapper .gfield.gf_right_half,
#gform_wrapper_8.gform_wrapper .gfield.gf_left_third,
#gform_wrapper_8.gform_wrapper .gfield.gf_middle_third,
#gform_wrapper_8.gform_wrapper .gfield.gf_right_third {
  width: 100%;
  margin-right: 0;
}
@media (min-width: 767px) {
  #gform_wrapper_8.gform_wrapper .address_city {
    width: 32.5% !important;
  }
  #gform_wrapper_8.gform_wrapper .address_state {
    width: 32.5% !important;
    padding-right: 8px !important;
    margin-right: 8px !important;
  }
  #gform_wrapper_8.gform_wrapper .address_zip {
    width: 32.5% !important;
    padding-right: 0px !important;
    margin-right: 0px !important;
  }
  #gform_wrapper_8.gform_wrapper .gfield.gf_right_half {
    max-width: 50% !important;
  }
  #gform_wrapper_8.gform_wrapper .gfield.gf_left_half {
    width: calc(50% - 20px) !important;
    margin-right: 20px !important;
  }
  #gform_wrapper_8.gform_wrapper .gfield.gf_left_third,
  #gform_wrapper_8.gform_wrapper .gfield.gf_middle_third,
  #gform_wrapper_8.gform_wrapper .gfield.gf_right_third {
    width: calc((100% - 40px) / 3) !important;
  }
  #gform_wrapper_8.gform_wrapper .gfield.gf_left_third,
  #gform_wrapper_8.gform_wrapper .gfield.gf_middle_third {
    margin-right: 20px !important;
  }
}
.gform_wrapper.gf_browser_chrome span.address_country,
.ginput_container {
  margin-top: 0 !important;
}
.gform_wrapper.gf_browser_chrome span.address_country > .nice-select,
.ginput_container > .nice-select {
  margin: 0 !important;
  width: 100% !important;
}
.gfield_radio {
  display: flex !important;
  flex-flow: row nowrap !important;
}
.gfield_radio > li {
  position: relative !important;
  min-height: 20px !important;
  display: flex !important;
  flex-flow: row nowrap !important;
  justify-content: flex-start !important;
  align-items: center !important;
  color: #535353 !important;
  font-size: 14px !important;
  text-transform: uppercase !important;
  line-height: 1 !important;
  margin-top: 0 !important;
  max-width: 50% !important;
}
.gfield_radio > li label {
  color: #535353 !important;
  font-size: 14px !important;
  font-weight: 400;
}
.gfield_radio > li input[type=radio] {
  position: absolute;
  z-index: 5;
  opacity: 0;
  width: 20px !important;
  min-height: 20px;
  right: 13px;
  margin-top: 0 !important;
  cursor: pointer;
}
.gfield_radio > li input:checked ~ .indicator:after {
  background: #00acc8;
  margin: 0 auto;
  height: 10px;
  width: 10px;
  border-radius: 50%;
  content: "";
  opacity: 1;
}
.gfield_radio > li:hover .indicator {
  background: rgb(242.25, 242.25, 242.25);
}
.gfield_radio > li .indicator {
  position: relative;
  height: 18px;
  width: 18px;
  background: white;
  border: 1px solid #D9D9D6;
  border-radius: 50%;
  transition: background 0.3s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
  order: 0 !important;
  margin-right: 10px;
  margin-left: 10px !important;
  flex: none !important;
}
.gfield_radio > li .indicator:after {
  background: #00acc8;
  opacity: 0;
  margin: 0 auto;
  height: 10px;
  width: 10px;
  border-radius: 50%;
  content: "";
  transition: opacity 0.3s ease-in-out;
}
@media (min-width: 767px) {
  .gfield_radio > li {
    flex: none;
  }
}
.gfield_checkbox {
  display: flex !important;
  flex-flow: row wrap !important;
  justify-content: flex-start !important;
  max-width: 45px;
}
.gfield_checkbox > li {
  position: relative !important;
  height: 20px !important;
  display: flex !important;
  flex-flow: row nowrap !important;
  justify-content: flex-start !important;
  align-items: center !important;
  color: #535353 !important;
  font-size: 14px !important;
  text-transform: uppercase !important;
  line-height: 1 !important;
  margin-top: 0 !important;
  flex: 0 100%;
}
.gfield_checkbox > li label {
  color: #535353 !important;
  font-size: 14px !important;
  font-weight: 400;
}
.gfield_checkbox > li input[type=checkbox] {
  position: absolute;
  z-index: 5;
  opacity: 0;
  width: 20px !important;
  height: 20px;
  right: 5px;
  margin-top: 0 !important;
  cursor: pointer;
}
.gfield_checkbox > li input:checked ~ .indicator:after {
  background: #00acc8;
  margin: 0 auto;
  content: "";
  opacity: 1;
}
.gfield_checkbox > li:hover input ~ .indicator {
  background: rgb(242.25, 242.25, 242.25);
}
.gfield_checkbox > li input:checked ~ .indicator {
  background: #00acc8;
}
.gfield_checkbox > li input:checked ~ label {
  font-weight: 400 !important;
}
.gfield_checkbox > li .indicator {
  position: relative;
  height: 20px;
  width: 20px !important;
  background: white;
  border: 1px solid #D9D9D6;
  transition: background 0.3s ease-in-out;
  display: flex;
  flex: none;
  align-items: center;
  justify-content: center;
  order: 0 !important;
  margin-left: auto !important;
}
.gfield_checkbox > li .indicator:after {
  position: absolute;
  left: 7px;
  top: 4px;
  width: 4px;
  height: 8px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
@media (min-width: 767px) {
  .gfield_checkbox {
    flex-flow: row nowrap !important;
  }
  .gfield_checkbox li {
    flex: none;
    margin-right: 40px !important;
  }
  .gfield_checkbox li > label {
    margin-right: 10px !important;
  }
}
.validation_error {
  color: #D0011B !important;
  font-size: 14px !important;
  font-weight: 400 !important;
  border-top: 0 !important;
  border-bottom: 0 !important;
  padding: 5px 0 !important;
}
.gfield_error {
  border-top: 0 !important;
  border-bottom: 0 !important;
  background-color: transparent !important;
  width: 100% !important;
  min-width: 100% !important;
}
.gfield_error .validation_message {
  padding-top: 5px !important;
  color: #D0011B !important;
  font-weight: 400 !important;
  font-size: 12px !important;
}
.gfield_error > .ginput_container > input {
  border: 1px solid #D0011B !important;
}
.gfield_creditcard_warning {
  background: none !important;
  border-top: none !important;
  border-bottom: none !important;
  padding: 0 !important;
  width: 100% !important;
}
.gfield_creditcard_warning_message {
  color: #D0011B !important;
  font-size: 14px !important;
  font-weight: 400 !important;
  border-top: 0 !important;
  border-bottom: 0 !important;
  padding: 5px 0 !important;
}
.gfield_creditcard_warning_message > span {
  border-bottom: 0 !important;
  padding-bottom: 0 !important;
}
.job-listing .job-links {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
}
.job-listing .job-links a {
  background: #00acc8;
  border: none;
  z-index: 1;
  height: 50px;
  width: 100%;
  color: white;
  text-transform: uppercase;
  font-size: 12px;
  padding: 10px 40px;
  margin-top: 20px;
  margin-right: 20px;
  line-height: 1;
  outline: none;
  transition: box-shadow 0.3s ease-in-out, background 0.3s ease-in-out;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.job-listing .job-links a:hover {
  background: rgb(0, 150.07, 174.5);
  color: white;
}
.job-listing .job-links a:focus {
  background: rgb(0, 150.07, 174.5);
  color: white;
}
.job-listing .job-links a.view-details {
  background: rgb(167.9367088608, 167.9367088608, 161.0632911392);
  color: white;
  transition: background 0.3s ease-in-out;
}
.job-listing .job-links a.view-details:hover {
  background: rgb(143.4050632911, 143.4050632911, 134.5949367089);
}
.job-listing .job-links a.view-details:focus {
  background: rgb(143.4050632911, 143.4050632911, 134.5949367089);
  color: white;
}
@media (min-width: 767px) {
  .job-listing .job-links {
    flex-flow: row nowrap;
  }
  .job-listing .job-links a {
    width: 95%;
  }
}
a.apply {
  background: #00acc8;
  border: none;
  z-index: 1;
  height: 50px;
  width: 100%;
  color: white !important;
  text-transform: uppercase;
  font-size: 12px;
  padding: 10px 40px;
  margin-top: 20px;
  margin-right: 20px;
  line-height: 1;
  outline: none;
  transition: background 0.3s ease-in-out !important;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
a.apply:hover {
  background: rgb(0, 150.07, 174.5);
  color: white;
}
a.back-to {
  background: rgb(167.9367088608, 167.9367088608, 161.0632911392);
  border: none;
  z-index: 1;
  height: 50px;
  width: 100%;
  color: white !important;
  text-transform: uppercase;
  font-size: 12px;
  padding: 10px 40px;
  margin-top: 20px;
  margin-right: 20px;
  line-height: 1;
  outline: none;
  transition: background 0.3s ease-in-out !important;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
a.back-to:hover {
  background: rgb(143.4050632911, 143.4050632911, 134.5949367089);
  color: white;
}
body.page-template-page-contact .content-container h2 {
  font-family: "Sentinel A", "Sentinel B", serif;
  font-size: 22px;
  margin: 2em 0 1.2em;
  letter-spacing: 2.64px;
  color: #4A4A4A;
}
body.page-template-page-contact .content-container p {
  font-size: 14px;
  color: #4A4A4A;
}
body.page-template-page-contact .content-container .form-intro strong {
  font-size: 120%;
  color: #D0011B;
}
body.page-template-page-contact .contact-map-wrapper {
  width: 100%;
  padding: 60px 0 20px;
  margin: 50px 0 0;
  border-top: 1px solid #D9D9D6;
}
body.page-template-page-contact .contact-map-wrapper h2 {
  font-family: "Sentinel A", "Sentinel B", serif;
  font-size: 22px;
  margin: 0 0 1.5em;
  letter-spacing: 2.64px;
  color: #4A4A4A;
}
body.page-template-page-contact .contact-map-wrapper .map-contain {
  position: relative;
  padding-bottom: 75%;
  height: 0;
  border-bottom: 1px solid #ddd;
  overflow: hidden;
  max-width: 100%;
}
body.page-template-page-contact .contact-map-wrapper .map-contain iframe {
  width: 100%;
  height: auto;
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
  border-bottom: none !important;
}
@media (min-width: 992px) {
  body.page-template-page-contact .contact-map-wrapper {
    margin: 50px 60px 0;
  }
}
@media (min-width: 767px) {
  body.page-template-page-contact .contact-map-wrapper .map-contain {
    padding-bottom: 47%;
  }
}
body.page-template-page-legacy-project .sublevel-content .sublevel-hero {
  background-position: top right !important;
}
body.page-template-page-legacy-project .sublevel-content h1.hero-title {
  font-size: 42px;
  padding-left: 0;
}
@media (min-width: 767px) {
  body.page-template-page-legacy-project .sublevel-content .sublevel-hero {
    background-position: top center !important;
  }
  body.page-template-page-legacy-project .sublevel-content h1.hero-title {
    font-size: 62px;
    padding-left: 40px;
  }
}
.maps {
  display: flex;
  flex-flow: row wrap;
}
.map-default .top-heading {
  padding-left: 0;
}
@media (min-width: 992px) {
  .map-default .top-heading {
    padding-left: 16px;
  }
}
.maps-content {
  flex: 0 100%;
}
.maps-content h2, .maps-content h3, .maps-content h4, .maps-content h5, .maps-content h6 {
  margin-top: 16px;
}
@media (min-width: 992px) {
  .maps-content {
    padding: 16px;
    flex: 1 40%;
    max-width: 40%;
  }
}
.map-contain {
  flex: 0 100%;
}
.map-contain iframe {
  width: 100%;
  height: 300px;
  margin: 16px 0;
}
@media (min-width: 600px) {
  .map-contain iframe {
    height: 400px;
  }
}
@media (min-width: 992px) {
  .map-contain iframe {
    margin: 0;
  }
}
.map-contain svg {
  width: 20px;
  height: 23px;
  margin-left: 10px;
}
.map-contain svg g {
  transition: all 0.3s ease-in-out;
  fill: #00acc8;
}
.map-contain a:hover > svg g {
  fill: rgb(0, 106.21, 123.5);
}
.map-contain h2 {
  margin-top: 10px;
  margin-bottom: 10px;
  color: #00acc8;
  font-size: 27px;
  font-weight: 600;
}
@media (min-width: 992px) {
  .map-contain {
    padding: 16px;
    flex: 1 60%;
    max-width: 60%;
  }
}
/*--------------------------------------------------------------
6.6 Footer
--------------------------------------------------------------*/
footer {
  background: #00acc8;
  padding: 30px;
  width: 100%;
  position: relative;
  box-shadow: inset 0 6px 6px -6px rgba(0, 0, 0, 0.2);
}
footer .footer-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
footer .footer-wrapper .logo-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
footer .footer-wrapper .logo-section .logo-footer {
  width: 320px;
}
footer .footer-wrapper .logo-section .footer-copyright {
  font-size: 12px;
  margin: 5px 0;
  color: white;
  text-align: center;
}
footer .footer-wrapper .menu-section {
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 30px 0;
}
footer .footer-wrapper .menu-section .footer-menu {
  display: inline-block;
  padding: 0;
  text-align: center;
}
footer .footer-wrapper .menu-section .footer-menu li {
  display: inline;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
  color: white;
}
footer .footer-wrapper .menu-section .footer-menu li:after {
  content: " ";
  letter-spacing: 1.3em;
  background: center center no-repeat url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAAPCAMAAAASwVXLAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyVpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDYuMC1jMDAyIDc5LjE2NDM2MCwgMjAyMC8wMi8xMy0wMTowNzoyMiAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIDIxLjEgKE1hY2ludG9zaCkiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6NkNERERDRkQ5RDA4MTFFQTkxQkQ4NjdGNDJFNDkxNDYiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6NkNERERDRkU5RDA4MTFFQTkxQkQ4NjdGNDJFNDkxNDYiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDo2Q0RERENGQjlEMDgxMUVBOTFCRDg2N0Y0MkU0OTE0NiIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDo2Q0RERENGQzlEMDgxMUVBOTFCRDg2N0Y0MkU0OTE0NiIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/PmF2GoMAAAAGUExURf///wAAAFXC034AAAAOSURBVHjaYmDABwACDAAAHgABzCCyiwAAAABJRU5ErkJggg==");
  background-size: 1px 11px;
}
footer .footer-wrapper .menu-section .footer-menu li a {
  color: white;
}
footer .footer-wrapper .menu-section .footer-address {
  font-size: 12px;
  color: white;
  margin-top: 30px;
  line-height: 1.6em;
}
footer .footer-wrapper .menu-section .footer-address a {
  color: #fff;
  text-decoration: none;
}
footer .footer-wrapper .social-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
footer .footer-wrapper .social-section .social-menu {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
footer .footer-wrapper .social-section .social-menu li {
  display: inline-flex;
  align-items: center;
  font-size: 14px;
  padding: 0;
  margin: 0;
  line-height: 1;
  white-space: nowrap;
}
footer .footer-wrapper .social-section .social-menu li a {
  font-family: FontAwesome;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  transition: opacity 0.2s ease;
}
footer .footer-wrapper .social-section .social-menu li a:hover {
  opacity: 0.8;
}
footer .footer-wrapper .social-section .social-menu li i {
  font-style: normal;
  font-size: 20px;
}
@media (min-width: 1200px) {
  footer .footer-wrapper .social-section .social-menu li {
    padding: 0;
  }
}
@media (min-width: 1200px) {
  footer .footer-wrapper {
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
  }
  footer .footer-wrapper .logo-section {
    padding-right: 40px;
    flex: 0 0 auto;
  }
  footer .footer-wrapper .menu-section {
    border-left: 1px solid white;
    border-right: 1px solid white;
    padding: 0 40px;
    margin: 0;
    flex: 1 1 auto;
    min-width: 0;
  }
  footer .footer-wrapper .social-section {
    padding-left: 40px;
    flex: 0 0 auto;
    min-width: 140px;
  }
}
/*--------------------------------------------------------------
6.7 Accessbility
--------------------------------------------------------------*/
/* Text meant only for screen readers */
.screen-reader-text {
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
}
.screen-reader-text:hover, .screen-reader-text:active, .screen-reader-text.nice-select.open, .screen-reader-text:focus {
  top: 5px;
  left: 5px;
  z-index: 100000; /* Above WP toolbar */
  clip: auto !important;
  display: block;
  width: auto;
  height: auto;
  padding: 15px 23px 14px;
  font-weight: bold;
  font-size: 14px;
  text-decoration: none;
  line-height: normal;
  color: #21759b;
  background-color: #f1f1f1;
  border-radius: 3px;
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
}