@charset "UTF-8";
/*

  ================================
  Developer: "Elliance Inc"
  ================================

*/
/* ================================
   Animations
   ================================ */
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
            transform: translate3d(0, 100%, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
            transform: translate3d(0, 100%, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}
@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
            transform: translate3d(0, -100%, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}
@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
            transform: translate3d(0, -100%, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}
@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
            transform: translate3d(100%, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}
@keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
            transform: translate3d(100%, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}
@-webkit-keyframes slideUp {
  0% {
    -webkit-transform: translate3d(0, 100%, 0);
            transform: translate3d(0, 100%, 0);
  }
  100% {
    -webkit-transform: none;
            transform: none;
  }
}
@keyframes slideUp {
  0% {
    -webkit-transform: translate3d(0, 100%, 0);
            transform: translate3d(0, 100%, 0);
  }
  100% {
    -webkit-transform: none;
            transform: none;
  }
}
@-webkit-keyframes slideInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-900px);
            transform: translateX(-900px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@keyframes slideInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-900px);
            transform: translateX(-900px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@-webkit-keyframes slideInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2100px);
            transform: translateX(2100px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@keyframes slideInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2100px);
            transform: translateX(2100px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
/* ================================
   Reuseable Classes
   ================================ */
.hidden,
.screen-reader-text,
.meta-nav {
  position: absolute;
  left: -99999em;
}

@media (min-width: 760px) {
  .hide,
  .hidden-column {
    opacity: 0;
  }
}

.scroll-visible {
  -webkit-animation: fadeIn 3s ease;
          animation: fadeIn 3s ease;
}

.slide-up {
  -webkit-animation: fadeInUp 1.2s linear;
          animation: fadeInUp 1.2s linear;
}

.desktop-only {
  display: none;
}
@media (min-width: 760px) {
  .desktop-only {
    display: block;
  }
}

.mobile-only {
  display: block;
}
@media (min-width: 760px) {
  .mobile-only {
    display: none;
  }
}

.uppercase {
  text-transform: uppercase;
}

.italic {
  font-style: italic;
}

.bold {
  font-weight: bold;
}

ul.clean,
ol.clean {
  list-style: none;
  margin-left: 0;
}
ul.clean li,
ol.clean li {
  padding-left: 0;
}

.float-left {
  float: left !important;
}

.float-right {
  float: right !important;
}

.clear-both {
  clear: both;
}

.sticky {
  -webkit-animation: fadeInDown 2s ease;
          animation: fadeInDown 2s ease;
  background: #dedede;
  box-shadow: 0 4px 8px -6px #000000;
  border-top: 1px solid #f2f0f0;
  position: fixed !important;
  z-index: 20;
}
@media (max-width: 760px) {
  .sticky .logo img {
    max-width: 100px;
  }
}
@media (min-width: 760px) {
  .sticky {
    background: transparent;
  }
  .sticky .navigation-bar {
    background: rgba(255, 255, 255, 0.85);
  }
}

.open .sticky {
  box-shadow: none;
}

.view-more {
  color: #cb1829;
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  text-transform: uppercase;
}
.view-more:visited {
  color: #cb1829;
}

.expand-text, .blog-expand-heading .blog-expand-title, .blog-search-container input[type="search"].blog-search::-webkit-input-placeholder {
  color: #cb1829;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.expand-text, .blog-expand-heading .blog-expand-title, .blog-search-container input[type="search"].blog-search::-moz-placeholder {
  color: #cb1829;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.expand-text, .blog-expand-heading .blog-expand-title, .blog-search-container input[type="search"].blog-search:-ms-input-placeholder {
  color: #cb1829;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.expand-text, .blog-expand-heading .blog-expand-title, .blog-search-container input[type="search"].blog-search::placeholder {
  color: #cb1829;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.position-bottom {
  position: absolute;
  bottom: 10px;
}

.lightest-gray {
  color: #ededed;
}
.lightest-gray * {
  color: #ededed;
}

.off-white {
  color: #dedede;
}
.off-white * {
  color: #dedede;
}

.light-gray {
  color: #898989;
}
.light-gray * {
  color: #898989;
}

.gray {
  color: #555555;
}
.gray * {
  color: #555555;
}

.dark-gray {
  color: #464646;
}
.dark-gray * {
  color: #464646;
}

.red {
  color: #cb1829;
}
.red * {
  color: #cb1829;
}

.blue {
  color: #b5d4e9;
}
.blue * {
  color: #b5d4e9;
}

.dark-blue {
  color: #00aad3;
}
.dark-blue * {
  color: #00aad3;
}

.blue-green {
  color: #acded5;
}
.blue-green * {
  color: #acded5;
}

.mint-green {
  color: #b3e4c7;
}
.mint-green * {
  color: #b3e4c7;
}

.lilac {
  color: #d9bde3;
}
.lilac * {
  color: #d9bde3;
}

.warm-yellow {
  color: #fcdca9;
}
.warm-yellow * {
  color: #fcdca9;
}

.coral {
  color: #f0c3a2;
}
.coral * {
  color: #f0c3a2;
}

.rose {
  color: #ebbabb;
}
.rose * {
  color: #ebbabb;
}

.white {
  color: #ffffff;
}
.white * {
  color: #ffffff;
}
.white:active, .white:visited {
  color: #ffffff;
}

.black {
  color: #000000;
}
.black * {
  color: #000000;
}

.bg-lightest-gray {
  background-color: #ededed;
}

.bg-off-white {
  background-color: #dedede;
}

.bg-light-gray {
  background-color: #898989;
}

.bg-gray {
  background-color: #555555;
}

.bg-dark-gray {
  background-color: #464646;
}

.bg-red {
  background-color: #cb1829;
}

.bg-blue {
  background-color: #b5d4e9;
}

.bg-blue-green {
  background-color: #acded5;
}

.bg-mint-green {
  background-color: #b3e4c7;
}

.bg-lilac {
  background-color: #d9bde3;
}

.bg-warm-yellow {
  background-color: #fcdca9;
}

.bg-coral {
  background-color: #f0c3a2;
}

.bg-rose {
  background-color: #ebbabb;
}

.bg-white {
  background-color: #ffffff;
}

.bg-black {
  background-color: #000000;
}

.slideInLeft {
  -webkit-animation: slideInLeft 1.5s ease-in-out forwards;
          animation: slideInLeft 1.5s ease-in-out forwards;
}

.slideInRight {
  -webkit-animation: slideInRight 1.5s ease-in-out forwards;
          animation: slideInRight 1.5s ease-in-out forwards;
}

/* ================================
   Normalize
   ================================ */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
nav,
section,
summary {
  display: block;
}

audio,
canvas,
video {
  display: inline-block;
}

audio:not([controls]) {
  display: none;
  height: 0;
}

[hidden] {
  display: none;
}

html {
  font-family: sans-serif;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

body {
  margin: 0;
}

a:focus {
  outline: 0;
}

a:active,
a:hover {
  outline: 0;
}

abbr[title] {
  border-bottom: 1px dotted;
}

b,
strong {
  font-weight: bold;
}

dfn {
  font-style: italic;
}

mark {
  background: #ff0;
  color: #000;
}

code,
kbd,
pre,
samp {
  font-family: monospace, serif;
  font-size: 1em;
}

pre {
  white-space: pre;
  white-space: pre-wrap;
  word-wrap: break-word;
}

q {
  quotes: "\201C" "\201D" "\2018" "\2019";
}

small {
  font-size: 80%;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

img {
  border: 0;
}

svg:not(:root) {
  overflow: hidden;
}

figure {
  margin: 0;
}

fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

legend {
  border: 0;
  padding: 0;
}

button,
input,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  margin: 0;
}

button,
input {
  line-height: normal;
}

button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  cursor: pointer;
}

button[disabled],
input[disabled] {
  cursor: default;
}

input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  padding: 0;
}

input[type="search"] {
  -webkit-appearance: textfield;
  box-sizing: content-box;
}

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

button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

textarea {
  overflow: auto;
  vertical-align: top;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* ================================
   Base (Base)
   ================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
*:after, *:before {
  box-sizing: border-box;
}

html {
  font-size: 100%;
  color: #464646;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased !important;
  text-rendering: optimizelegibility;
  -moz-osx-font-smoothing: grayscale;
  background-color: #ffffff;
  min-height: 100%;
  min-width: 100%;
  overflow-x: hidden;
}

body {
  width: 100%;
  height: 100%;
  margin: 0 auto;
  color: #464646;
  font-weight: 400;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  line-height: 24px;
}

img {
  max-width: 100%;
  vertical-align: middle;
  font-size: 12px;
  color: #666;
}

ul ul,
ol ol,
ul ol,
ol ul {
  margin-top: 0;
  margin-bottom: 0;
}

sup, sub {
  vertical-align: baseline;
  position: relative;
  top: -0.4em;
}

sub {
  top: 0.4em;
}

pre, code {
  background: #ccc;
}

pre {
  overflow: auto;
}

code,
kbd,
pre,
samp {
  font-family: "Courier New", Courier, monospace;
  font-size: 1em;
}

code,
samp,
kbd {
  font-family: "Courier New", Courier, monospace;
  padding: 0 6px;
  text-align: left;
}

pre {
  font-family: "Courier New", Courier, monospace;
  overflow: auto;
  padding: 1em 0 1em 1.5em;
  border: 1px solid #ddd;
  white-space: pre;
  word-wrap: normal;
}

pre > code {
  padding: 0;
}

* html pre {
  overflow: visible;
  overflow-x: auto;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  margin: 1em 0;
  width: 100%;
}
table caption {
  padding: 0.5em;
}
table button,
table input {
  *overflow: auto;
}

th,
td {
  border: solid 1px #ccc;
  padding: 5px 11px;
  vertical-align: top;
}

dt {
  font-weight: 700;
}

form {
  margin: 0;
}

fieldset {
  border: 1px solid #ccc;
  padding: 1em;
}

textarea {
  overflow: auto;
  vertical-align: top;
}

legend {
  border: 0;
  *margin-left: -7px;
}

button, input, select, textarea {
  vertical-align: baseline;
  *vertical-align: middle;
}

button, input {
  line-height: normal;
  *overflow: visible;
}

input, textarea {
  box-sizing: border-box;
}

button, input[type="button"], input[type="reset"], input[type="submit"] {
  cursor: pointer;
  -webkit-appearance: button;
}

input[type="checkbox"] {
  box-sizing: border-box;
  height: 15px;
  width: 15px;
}

input[type="radio"] {
  box-sizing: border-box;
  height: 18px;
  width: 18px;
}

input[type="search"] {
  -webkit-appearance: textfield;
  vertical-align: middle;
  box-sizing: border-box;
}

input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

input[type="color"] {
  padding: 0;
  min-height: 50px;
  min-width: 50px;
}

button::-moz-focus-inner, input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after, q:before, q:after {
  content: '';
  content: none;
}

blockquote, q, cite {
  font-style: normal;
}

blockquote {
  padding-left: 1.625em;
  border-left: 5px solid gray;
  display: block;
  margin-bottom: 48px;
  font-style: normal;
}

blockquote > p {
  padding: 0;
}

blockquote footer {
  text-align: right;
}

ul, ol {
  list-style-position: outside;
  margin-bottom: 1.635em;
  margin-left: 1.5em;
}

li ul, li ol {
  margin: 0 1.625em;
}

dl dd {
  margin-left: 1.625em;
}

nav ul li {
  list-style: none;
}

a {
  color: #464646;
  text-decoration: none;
}
a:hover, a:visited:hover {
  text-decoration: underline;
}
a:visited {
  text-decoration: none;
  color: #464646;
}

.page-body p a {
  color: #cb1829;
}
.page-body p a:visited {
  color: #cb1829;
}

.sitemap a {
  color: #cb1829;
}
.sitemap a:visited {
  color: #cb1829;
}

figure {
  margin: 0;
}

abbr[title], dfn[title] {
  border-bottom: 0;
}

mark {
  background: #ff0;
}

ins {
  text-decoration: none;
  background: #ff9;
}

del {
  text-decoration: line-through;
}

hr {
  display: block;
  clear: both;
  height: 1px;
  border: 0;
  border-top: 1px solid #ddd;
  margin-bottom: 24px;
}

strong, b, dt {
  font-weight: 700;
}

dfn {
  font-style: italic;
}

var, address {
  font-style: normal;
}

sub, sup {
  font-size: 0.85em;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

code, pre {
  background: #eee;
}

pre {
  padding: 0.5em;
}

section,
#section {
  clear: both;
}

.fa-spinner {
  -webkit-animation: spinIt 1.75s infinite linear;
          animation: spinIt 1.75s infinite linear;
}

@-webkit-keyframes spinIt {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
            transform: rotate(359deg);
  }
}

@keyframes spinIt {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
            transform: rotate(359deg);
  }
}
h1, .h1 {
  color: #cb1829;
  margin-top: 24px;
  margin-bottom: 12px;
  font-size: 36px;
  line-height: 1.19444444;
  text-transform: uppercase;
}

h2, .h2, #knowledge-center h3 {
  color: #cb1829;
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 0.75rem;
  letter-spacing: 0.28em;
  line-height: 1.875rem;
  text-transform: uppercase;
}
@media (min-width: 760px) {
  h2, .h2, #knowledge-center h3 {
    font-size: 0.875rem;
    letter-spacing: 0.4em;
    margin-bottom: 12px;
  }
}

h3, .h3 {
  color: #cb1829;
  font-size: 1.875rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 2.5rem;
  margin-bottom: 12px;
}
@media (min-width: 760px) {
  h3, .h3 {
    font-size: 2.5rem;
    line-height: 2.75rem;
  }
}

h4, .h4 {
  color: #cb1829;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 2rem;
  margin-bottom: 10px;
}

h5, .h5 {
  color: #ffffff;
  font-size: 2.25rem;
  font-weight: 400;
  line-height: 2.625rem;
  margin-bottom: 10px;
}

h6, .h6 {
  margin-top: 24px;
  margin-bottom: 12px;
  font-size: 13px;
  line-height: 1.53846154;
}

.center {
  text-align: center;
}

p {
  margin-top: 0;
  margin-bottom: 24px;
}

ul, ol, pre, table, blockquote {
  margin-top: 24px;
  margin-bottom: 24px;
}

.intro ul,
.body-text ul,
.grid-block-text-container ul {
  size: 1rem;
  list-style: none;
  margin-left: 14px;
}
@media (min-width: 760px) {
  .intro ul,
  .body-text ul,
  .grid-block-text-container ul {
    font-size: 1.25rem;
  }
}
.intro ul li,
.body-text ul li,
.grid-block-text-container ul li {
  font-size: 0.875rem;
  line-height: 1.625rem;
  text-indent: -14px;
}
.intro ul li:before,
.body-text ul li:before,
.grid-block-text-container ul li:before {
  color: #cb1829;
  content: '>';
  font-weight: 700;
  margin-right: 5px;
}
.intro ul ul li:before,
.body-text ul ul li:before,
.grid-block-text-container ul ul li:before {
  content: " - ";
}

/* ================================
   Typography -- Custom
   ================================ */
.fa-stack {
  width: 1.5em !important;
}

/* ================================
   FormHack v1.2.0 (formhack.io)
	 ================================ */
/* Global Reset Styles ------------------ */
input,
textarea,
select,
option,
optgroup,
button,
legend,
fieldset {
  box-sizing: border-box;
  outline: none;
  font-size: 16px;
  vertical-align: top;
  display: block;
}

label {
  margin: 10px 0;
}

/* Input & Textarea ------------------ */
/* Fields with standard width */
input[type="text"],
input[type="email"],
input[type="password"],
input[type="search"],
input[type="color"],
input[type="date"],
input[type="datetime-local"],
input[type="month"],
input[type="number"],
input[type="tel"],
input[type="time"],
input[type="url"],
input[type="week"],
input[list],
input[type="file"],
select,
textarea {
  width: 100%;
  max-width: 400px;
  padding: 8px;
  background-color: #fff;
  border-radius: 5px;
  border: 1px solid #c8c8c8;
}

/* Fields with standard height */
input[type="text"],
input[type="email"],
input[type="password"],
input[type="search"],
input[type="color"],
input[type="date"],
input[type="datetime-local"],
input[type="month"],
input[type="number"],
input[type="tel"],
input[type="time"],
input[type="url"],
input[type="week"],
input[list] {
  height: 40px;
  -webkit-appearance: none;
}

/* Other */
textarea {
  -webkit-appearance: none;
  overflow: auto;
  height: 80px;
}

input[type="range"] {
  height: 40px;
  width: 100%;
  max-width: 400px;
}

input[type="file"] {
  min-height: 40px;
}

input[type="search"] {
  height: 40px;
  -webkit-appearance: none;
}

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

input[type="checkbox"],
input[type="radio"] {
  display: inline-block;
  vertical-align: middle;
}

input[type="color"] {
  width: 64.72136px;
  padding: 0;
  border: 0;
  border-radius: 0;
}

/* Select ------------------ */
select {
  height: 40px;
}

select[multiple] {
  height: auto;
  min-height: 40px;
  padding: 0;
}
select[multiple] option {
  margin: 0;
  padding: 8px;
}

/* Fieldset ------------------ */
fieldset {
  padding: 10px 25px;
  border-radius: 5px;
  border: 1px solid #c8c8c8;
}

legend {
  padding: 0 5px;
  font-weight: 700;
}

/* Buttons, Input Type Submit/Reset ------------------ */
/* States ------------------ */
input[disabled],
textarea[disabled],
select[disabled],
option[disabled],
button[disabled] {
  cursor: not-allowed;
}

input:focus,
textarea:focus,
select:focus,
option:focus,
button:focus {
  background-color: gainsboro;
  border-color: #c8c8c8;
}

input[type="checkbox"]:focus,
input[type="radio"]:focus {
  outline: #c8c8c8 solid 2px;
}

/*
 * Select from WTF, forms? https://github.com/mdo/wtf-forms/
 */
.select-custom {
  position: relative;
  display: inline-block;
  width: 100%;
  max-width: 400px;
}

.select-custom select {
  display: inline-block;
  width: 100%;
  max-width: 400px;
  margin: 0;
  padding: 8px 2em 8px 8px;
  line-height: 1.5;
  color: #898989;
  background-color: #555555;
  border: 0;
  cursor: pointer;
  outline: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

/* Undo the Firefox inner focus ring */
.select-custom select:focus:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 #000;
}

/* Dropdown arrow */
.select-custom:after {
  position: absolute;
  top: 50%;
  right: 0.75em;
  display: inline-block;
  content: "";
  width: 0;
  height: 0;
  margin-top: -.15rem;
  pointer-events: none;
  border-top: 0.35rem solid #898989;
  border-right: .35rem solid transparent;
  border-bottom: .35rem solid transparent;
  border-left: .35rem solid transparent;
}

/* Hover state */
/* Focus */
/* Active/open */
.select-custom select:active {
  color: #fff;
  background-color: #0074d9;
}

/* Hide the arrow in IE10 and up */
.select-custom select::-ms-expand {
  display: none;
}

/* Media query to target Firefox only */
@-moz-document url-prefix() {
  /* Firefox hack to hide the arrow */
  .select-custom select {
    text-indent: 0.01px;
    text-overflow: '';
    padding-right: 1rem;
  }

  /* <option> elements inherit styles from <select>, so reset them. */
  .select-custom option {
    background-color: #fff;
  }
}
/* IE9 hack to hide the arrow */
@media screen and (min-width: 0\0) {
  .select-custom select {
    z-index: 1;
    padding: .5rem 1.5rem .5rem 1rem;
  }

  .select-custom:after {
    z-index: 5;
  }

  .select-custom:before {
    position: absolute;
    top: 0;
    right: 1rem;
    bottom: 0;
    z-index: 2;
    content: "";
    display: block;
    width: 1.5rem;
    background-color: #eee;
  }

  .select-custom select:hover,
  .select-custom select:focus,
  .select-custom select:active {
    color: #555;
    background-color: #eee;
  }
}
.input-with-button {
  position: relative;
  width: 100%;
  max-width: 400px;
  height: 40px;
}
.input-with-button input {
  padding-right: 30%;
}
.input-with-button .btn {
  position: absolute;
  top: 0;
  right: 0;
  padding: 8px;
  margin: 0;
  font-size: 16px;
  line-height: 24px;
  border-radius: 0px 5px 5px 0px;
}

/*
 * WTF, forms?
 * Released under MIT and copyright 2014 Mark Otto.
 * http://wtfforms.com
 *
 * Embedded icons from Open Iconic.
 * Released under MIT and copyright 2014 Waybury.
 * http://useiconic.com/open
 */
/*
 * Checkboxes and radios
 */
.control {
  position: relative;
  display: inline-block;
  padding-left: 30px;
  line-height: 30px;
  margin: 0;
  color: #555;
  cursor: pointer;
}

.control input {
  position: absolute;
  opacity: 0;
  z-index: -1;
  /* Put the input behind the label so it doesn't overlay text */
}

.control-indicator {
  position: absolute;
  top: .25rem;
  left: 0;
  display: block;
  width: 20px;
  height: 20px;
  line-height: 20px;
  font-size: 65%;
  color: #eee;
  text-align: center;
  background-color: #eee;
  background-size: 50% 50%;
  background-position: center center;
  background-repeat: no-repeat;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Hover state */
/* Uncomment if you need it, but be aware of the sticky iOS states.
.control:hover .control-indicator {
  color: #fff;
  background-color: #ccc;
}
*/
/* Focus */
.control input:focus ~ .control-indicator {
  box-shadow: 0 0 0 .075rem #fff, 0 0 0 .2rem #0074d9;
}

/* Checked state */
.control input:checked ~ .control-indicator {
  color: #fff;
  background-color: #0074d9;
}

/* Active */
.control input:active ~ .control-indicator {
  color: #fff;
  background-color: #84c6ff;
}

/* Checkbox modifiers */
.checkbox .control-indicator {
  border-radius: .25rem;
}

.checkbox input:checked ~ .control-indicator {
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4NCjwhLS0gR2VuZXJhdG9yOiBBZG9iZSBJbGx1c3RyYXRvciAxNy4xLjAsIFNWRyBFeHBvcnQgUGx1Zy1JbiAuIFNWRyBWZXJzaW9uOiA2LjAwIEJ1aWxkIDApICAtLT4NCjwhRE9DVFlQRSBzdmcgUFVCTElDICItLy9XM0MvL0RURCBTVkcgMS4xLy9FTiIgImh0dHA6Ly93d3cudzMub3JnL0dyYXBoaWNzL1NWRy8xLjEvRFREL3N2ZzExLmR0ZCI+DQo8c3ZnIHZlcnNpb249IjEuMSIgaWQ9IkxheWVyXzEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4Ig0KCSB2aWV3Qm94PSIwIDAgOCA4IiBlbmFibGUtYmFja2dyb3VuZD0ibmV3IDAgMCA4IDgiIHhtbDpzcGFjZT0icHJlc2VydmUiPg0KPHBhdGggZmlsbD0iI0ZGRkZGRiIgZD0iTTYuNCwxTDUuNywxLjdMMi45LDQuNUwyLjEsMy43TDEuNCwzTDAsNC40bDAuNywwLjdsMS41LDEuNWwwLjcsMC43bDAuNy0wLjdsMy41LTMuNWwwLjctMC43TDYuNCwxTDYuNCwxeiINCgkvPg0KPC9zdmc+DQo=);
}

/* Radio modifiers */
.radio .control-indicator {
  border-radius: 50%;
}

.radio input:checked ~ .control-indicator {
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4NCjwhLS0gR2VuZXJhdG9yOiBBZG9iZSBJbGx1c3RyYXRvciAxNy4xLjAsIFNWRyBFeHBvcnQgUGx1Zy1JbiAuIFNWRyBWZXJzaW9uOiA2LjAwIEJ1aWxkIDApICAtLT4NCjwhRE9DVFlQRSBzdmcgUFVCTElDICItLy9XM0MvL0RURCBTVkcgMS4xLy9FTiIgImh0dHA6Ly93d3cudzMub3JnL0dyYXBoaWNzL1NWRy8xLjEvRFREL3N2ZzExLmR0ZCI+DQo8c3ZnIHZlcnNpb249IjEuMSIgaWQ9IkxheWVyXzEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4Ig0KCSB2aWV3Qm94PSIwIDAgOCA4IiBlbmFibGUtYmFja2dyb3VuZD0ibmV3IDAgMCA4IDgiIHhtbDpzcGFjZT0icHJlc2VydmUiPg0KPHBhdGggZmlsbD0iI0ZGRkZGRiIgZD0iTTQsMUMyLjMsMSwxLDIuMywxLDRzMS4zLDMsMywzczMtMS4zLDMtM1M1LjcsMSw0LDF6Ii8+DQo8L3N2Zz4NCg==);
}

/* Alternately, use another character */
.control-x input:checked ~ .control-indicator {
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4NCjwhLS0gR2VuZXJhdG9yOiBBZG9iZSBJbGx1c3RyYXRvciAxNy4xLjAsIFNWRyBFeHBvcnQgUGx1Zy1JbiAuIFNWRyBWZXJzaW9uOiA2LjAwIEJ1aWxkIDApICAtLT4NCjwhRE9DVFlQRSBzdmcgUFVCTElDICItLy9XM0MvL0RURCBTVkcgMS4xLy9FTiIgImh0dHA6Ly93d3cudzMub3JnL0dyYXBoaWNzL1NWRy8xLjEvRFREL3N2ZzExLmR0ZCI+DQo8c3ZnIHZlcnNpb249IjEuMSIgaWQ9IkxheWVyXzEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4Ig0KCSB3aWR0aD0iOHB4IiBoZWlnaHQ9IjhweCIgdmlld0JveD0iMCAwIDggOCIgZW5hYmxlLWJhY2tncm91bmQ9Im5ldyAwIDAgOCA4IiB4bWw6c3BhY2U9InByZXNlcnZlIj4NCjxwYXRoIGZpbGw9IiNGRkZGRkYiIGQ9Ik0xLjQsMEwwLDEuNGwwLjcsMC43bDEuOCwxLjhMMC43LDUuN0wwLDYuNGwxLjQsMS40bDAuNy0wLjdsMS44LTEuOGwxLjgsMS44bDAuNywwLjdsMS40LTEuNEw3LjEsNS43DQoJTDUuMywzLjlsMS44LTEuOGwwLjctMC43TDYuNCwwTDUuNywwLjdMMy45LDIuNUwyLjEsMC43QzIuMSwwLjcsMS40LDAsMS40LDB6Ii8+DQo8L3N2Zz4NCg==);
}

.control-dash input:checked ~ .control-indicator {
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4NCjwhLS0gR2VuZXJhdG9yOiBBZG9iZSBJbGx1c3RyYXRvciAxNy4xLjAsIFNWRyBFeHBvcnQgUGx1Zy1JbiAuIFNWRyBWZXJzaW9uOiA2LjAwIEJ1aWxkIDApICAtLT4NCjwhRE9DVFlQRSBzdmcgUFVCTElDICItLy9XM0MvL0RURCBTVkcgMS4xLy9FTiIgImh0dHA6Ly93d3cudzMub3JnL0dyYXBoaWNzL1NWRy8xLjEvRFREL3N2ZzExLmR0ZCI+DQo8c3ZnIHZlcnNpb249IjEuMSIgaWQ9IkxheWVyXzEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4Ig0KCSB3aWR0aD0iOHB4IiBoZWlnaHQ9IjhweCIgdmlld0JveD0iMCAwIDggOCIgZW5hYmxlLWJhY2tncm91bmQ9Im5ldyAwIDAgOCA4IiB4bWw6c3BhY2U9InByZXNlcnZlIj4NCjxwYXRoIGZpbGw9IiNGRkZGRkYiIGQ9Ik0wLDN2Mmg4VjNIMHoiLz4NCjwvc3ZnPg0K);
}

/*
 * Select
 */
.select {
  position: relative;
  display: inline-block;
  color: #555;
}

.select select {
  display: inline-block;
  width: 100%;
  margin: 0;
  padding: .5rem 2.25rem .5rem 1rem;
  line-height: 1.5;
  color: #555;
  background-color: #eee;
  border: 0;
  border-radius: .25rem;
  cursor: pointer;
  outline: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

/* Undo the Firefox inner focus ring */
.select select:focus:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 #000;
}

/* Dropdown arrow */
.select:after {
  position: absolute;
  top: 50%;
  right: 1.25rem;
  display: inline-block;
  content: "";
  width: 0;
  height: 0;
  margin-top: -.15rem;
  pointer-events: none;
  border-top: .35rem solid;
  border-right: .35rem solid transparent;
  border-bottom: .35rem solid transparent;
  border-left: .35rem solid transparent;
}

/* Hover state */
/* Uncomment if you need it, but be aware of the sticky iOS states.
.select select:hover {
  background-color: #ddd;
}
*/
/* Focus */
.select select:focus {
  box-shadow: 0 0 0 .075rem #fff, 0 0 0 .2rem #0074d9;
}

/* Active/open */
.select select:active {
  color: #fff;
  background-color: #0074d9;
}

/* Hide the arrow in IE10 and up */
.select select::-ms-expand {
  display: none;
}

/* Media query to target Firefox only */
@-moz-document url-prefix() {
  /* Firefox hack to hide the arrow */
  .select select {
    text-indent: 0.01px;
    text-overflow: '';
    padding-right: 1rem;
  }

  /* <option> elements inherit styles from <select>, so reset them. */
  .select option {
    background-color: #fff;
  }
}
/* IE9 hack to hide the arrow */
@media screen and (min-width: 0\0) {
  .select select {
    z-index: 1;
    padding: .5rem 1.5rem .5rem 1rem;
  }

  .select:after {
    z-index: 5;
  }

  .select:before {
    position: absolute;
    top: 0;
    right: 1rem;
    bottom: 0;
    z-index: 2;
    content: "";
    display: block;
    width: 1.5rem;
    background-color: #eee;
  }

  .select select:hover,
  .select select:focus,
  .select select:active {
    color: #555;
    background-color: #eee;
  }
}
/*
 * File
 */
.file {
  position: relative;
  display: inline-block;
  cursor: pointer;
  height: 2.5rem;
}

.file input {
  min-width: 14rem;
  margin: 0;
  filter: alpha(opacity=0);
  opacity: 0;
}

.file-custom {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 5;
  height: 2.5rem;
  padding: .5rem 1rem;
  line-height: 1.5;
  color: #555;
  background-color: #fff;
  border: .075rem solid #ddd;
  border-radius: .25rem;
  box-shadow: inset 0 0.2rem 0.4rem rgba(0, 0, 0, 0.05);
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.file-custom:after {
  content: "Choose file...";
}

.file-custom:before {
  position: absolute;
  top: -.075rem;
  right: -.075rem;
  bottom: -.075rem;
  z-index: 6;
  display: block;
  content: "Browse";
  height: 2.5rem;
  padding: .5rem 1rem;
  line-height: 1.5;
  color: #555;
  background-color: #eee;
  border: .075rem solid #ddd;
  border-radius: 0 .25rem .25rem 0;
}

/* Focus */
.file input:focus ~ .file-custom {
  box-shadow: 0 0 0 .075rem #fff, 0 0 0 .2rem #0074d9;
}

/*
 * Progress
 */
.progress {
  display: inline-block;
  height: 1rem;
}

.progress[value] {
  /* Reset the default appearance */
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  /* Remove Firefox and Opera border */
  border: 0;
  /* IE10 uses `color` to set the bar background-color */
  color: #0074d9;
}

.progress[value]::-webkit-progress-bar {
  background-color: #eee;
  border-radius: .2rem;
}

.progress[value]::-webkit-progress-value {
  background-color: #0074d9;
  border-top-left-radius: .2rem;
  border-bottom-left-radius: .2rem;
}

.progress[value="100"]::-webkit-progress-value {
  border-top-right-radius: .2rem;
  border-bottom-right-radius: .2rem;
}

/* Firefox styles must be entirely separate or it busts Webkit styles. */
@-moz-document url-prefix() {
  .progress[value] {
    background-color: #eee;
    border-radius: .2rem;
  }

  .progress[value]::-moz-progress-bar {
    background-color: #0074d9;
    border-top-left-radius: .2rem;
    border-bottom-left-radius: .2rem;
  }

  .progress[value="100"]::-moz-progress-bar {
    border-top-right-radius: .2rem;
    border-bottom-right-radius: .2rem;
  }
}
/* IE9 hacks to accompany custom markup. We don't need to scope this via media queries, but I feel better doing it anyway. */
@media screen and (min-width: 0\0) {
  .progress {
    background-color: #eee;
    border-radius: .2rem;
  }

  .progress-bar {
    display: inline-block;
    height: 1rem;
    text-indent: -999rem;
    /* Simulate hiding of value as in native `<progress>` */
    background-color: #0074d9;
    border-top-left-radius: .2rem;
    border-bottom-left-radius: .2rem;
  }

  .progress[width="100%"] {
    border-top-right-radius: .2rem;
    border-bottom-right-radius: .2rem;
  }
}
/*
 * Control layouts
 */
.controls-stacked {
  margin: 1rem 0;
}

.controls-stacked .control,
.controls-stacked .progress {
  display: block;
}

.controls-stacked .control + .control,
.controls-stacked .progress + .progress {
  margin-top: .5rem;
}

.controls-inline {
  margin: 1rem 0;
}

.controls-inline .control {
  display: inline-block;
  height: 1rem;
}

.controls-inline .control + .control {
  margin-left: 1rem;
}

/* ================================
   Admin menu (Drupal)
   ================================ */
.tabs.primary {
  max-width: 200px;
  width: auto;
  list-style: none;
  position: fixed;
  bottom: 0%;
  right: 0;
  z-index: 10000;
  background: rgba(245, 245, 245, 0.85);
  margin: 0;
  padding: 20px 15px 15px;
  border-radius: 5px;
  box-shadow: 0px 2px 13px rgba(0, 0, 0, 0.25);
}

@media (min-width: 760px) {
  .tabs.primary {
    top: 50%;
    bottom: auto;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
  }
}
.tabs.primary li {
  display: block;
  font-family: "Roboto", Arial, Helvetica, san-serif;
  font-size: 14px;
  margin-bottom: 5px;
}

.tabs.primary li a, .tabs.primary li a:visited {
  color: white;
  display: block;
  text-decoration: none;
  padding: 5px 12px;
  border-radius: 5px;
  background: #5C6BC0;
  -webkit-transition: all 150ms ease-in-out;
  transition: all 150ms ease-in-out;
}

.tabs.primary li a:hover, .tabs.primary li a:focus, .tabs.primary li a:active, .tabs.primary li a:visited:hover, .tabs.primary li a:visited:focus, .tabs.primary li a:visited:active {
  background: #303F9F;
}

.tabs.primary li a.is-active, .tabs.primary li a:visited.is-active {
  background: #283593;
}

.tabs.primary li a.is-active:hover, .tabs.primary li a.is-active:focus, .tabs.primary li a.is-active:active, .tabs.primary li a:visited.is-active:hover, .tabs.primary li a:visited.is-active:focus, .tabs.primary li a:visited.is-active:active {
  background: #1A237E;
}

/* ================================
   Base (Custom)
   ================================ */
body {
  background: #ffffff;
  min-width: 250px;
}
@media (max-width: 760px) {
  body {
    overflow-x: hidden;
  }
}

body p {
  color: #464646;
  font-size: 1rem;
  font-weight: 400;
  line-height: 30px;
}
@media (min-width: 760px) {
  body p {
    font-size: 1.25rem;
    line-height: 36px;
  }
}
body p.text-small {
  font-size: 1rem;
  line-height: 2rem;
}

#maincontent > .page-body {
  background: #ffffff;
  padding: 0px 0 0px 0;
  position: relative;
}
@media (min-width: 320px) {
  #maincontent > .page-body {
    padding: 20px 0 0px 0;
  }
}

.skipnav {
  background: transparent;
  color: #464646;
  left: 0;
  padding: 1rem 1.5rem;
  position: absolute;
  top: -4.2rem;
  -webkit-transition: all 0.2s ease-in-out;
          transition: all 0.2s ease-in-out;
  z-index: 100;
}
.skipnav:focus {
  background: #ffffff;
  left: 0;
  outline: 0;
  position: absolute;
  top: 0;
  -webkit-transition: all 0.2s ease-in-out;
          transition: all 0.2s ease-in-out;
}

.container, .contained {
  max-width: 1600px;
  padding: 0 1em;
  margin: 0 auto;
  display: block;
}
@media (min-width: 760px) {
  .container, .contained {
    width: 95%;
    padding: 0;
  }
}
@media (min-width: 1200px) {
  .container, .contained {
    width: 90%;
  }
}
.container:before, .contained:before {
  content: "";
  display: table;
}
.container:after, .contained:after {
  content: " ";
  display: block;
  visibility: hidden;
  font-size: 0;
  clear: both;
}
.container.relative, .contained.relative {
  position: relative;
}

.indent-one {
  position: relative;
}
@media (min-width: 760px) {
  .indent-one {
    width: calc(83.33333% - 36.66667px);
    float: left;
    margin-left: 20px;
    margin-left: calc(8.33333% - 21.66667px + 40px);
    margin-right: calc(8.33333% - 21.66667px + 40px);
  }
}

.indent-two {
  position: relative;
}
@media (min-width: 760px) {
  .indent-two {
    width: calc(66.66667% - 33.33333px);
    float: left;
    margin-left: 20px;
    margin-left: calc(16.66667% - 23.33333px + 40px);
    margin-right: calc(16.66667% - 23.33333px + 40px);
  }
}

.indent-three {
  position: relative;
}
@media (min-width: 760px) {
  .indent-three {
    width: calc(66.66667% - 33.33333px);
    float: left;
    margin-left: 20px;
    margin-left: calc(16.66667% - 23.33333px + 40px);
    margin-right: calc(16.66667% - 23.33333px + 40px);
  }
}
@media (min-width: 920px) {
  .indent-three {
    width: calc(50% - 30px);
    float: left;
    margin-left: 20px;
    margin-left: calc(25% - 25px + 40px);
    margin-right: calc(25% - 25px + 40px);
  }
}

/* ================================
   Media
   ================================ */
.offset {
  margin-bottom: 24px !important;
}
@media (min-width: 760px) {
  .offset {
    margin-top: 10px !important;
    margin-bottom: 12px !important;
  }
}

.left-offset, img.left, .alignleft, img[data-align="left"] {
  width: 100%;
  float: left;
  display: inline;
  -webkit-transition: width 5ms linear !important;
          transition: width 5ms linear !important;
}
@media (min-width: 760px) {
  .left-offset, img.left, .alignleft, img[data-align="left"] {
    width: calc(41.66667% - 28.33333px);
    float: left;
    margin-left: 20px;
    margin-right: 24px;
    margin-left: 0;
  }
}

.right-offset, img.right, .alignright, img[data-align="right"] {
  width: 100%;
  float: left;
  display: inline;
  -webkit-transition: width 5ms linear !important;
          transition: width 5ms linear !important;
}
@media (min-width: 760px) {
  .right-offset, img.right, .alignright, img[data-align="right"] {
    width: calc(41.66667% - 28.33333px);
    float: left;
    margin-left: 20px;
    float: right !important;
    margin-left: 24px;
    margin-right: 0;
  }
}

img.center, .aligncenter, img[data-align="center"] {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}
@media (min-width: 760px) {
  img.center, .aligncenter, img[data-align="center"] {
    width: 60%;
  }
}

.image-caption, figcaption {
  margin-top: 5px;
  font-size: 14px;
}
@media (min-width: 760px) {
  .image-caption, figcaption {
    font-size: 16px;
  }
}

.videoWrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 100%;
}

.videoWrapper iframe,
.videoWrapper object,
.videoWrapper embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.align-left {
  float: left;
  margin-right: 15px;
}

.align-right {
  float: right;
  margin-left: 15px;
}

/* ================================
   Forms - Custom
   ================================ */
table h4 {
  font-size: 1rem;
}
table th {
  background-color: #eee;
  font-weight: bold;
}
table a,
table a:visited {
  color: #cb1829;
}

table[data-align="center"],
table[align="center"] {
  margin-left: auto;
  margin-right: auto;
}

table[data-align="right"],
table[align="right"] {
  margin-left: auto;
}

.table-responsive {
  /* Stack rows vertically on small screens */
  /* Stack labels vertically on smaller screens */
}
.table-responsive table {
  border-collapse: collapse;
  width: 100%;
}
.table-responsive th,
.table-responsive td {
  text-align: left;
}
@media (max-width: 600px) {
  .table-responsive {
    /* Hide column labels */
    /* Leave a space between table rows */
    /* Get table cells to act like rows */
    /* Add data labels */
  }
  .table-responsive thead tr {
    position: absolute;
    top: -9999em;
    left: -9999em;
  }
  .table-responsive tr {
    margin-bottom: 0.5em;
  }
  .table-responsive tr,
  .table-responsive td {
    display: block;
  }
  .table-responsive td {
    /* Leave a space for data labels */
    padding-left: 50%;
    margin-bottom: -1px;
  }
  .table-responsive td:before {
    content: attr(data-label);
    display: inline-block;
    font-weight: bold;
    margin-left: -100%;
    width: 100%;
  }
}
@media (max-width: 400px) {
  .table-responsive td {
    padding-left: 0.5em;
  }
  .table-responsive td:before {
    display: block;
    margin-left: 0;
  }
}

.table-scroll {
  overflow: auto;
  margin-bottom: 0.5em;
  position: relative;
}
.table-scroll table {
  display: block;
  width: auto;
  margin-bottom: 0;
}

.stacktable.small-only .st-head-row-main {
  display: none;
}

/* ================================
   Buttons
   ================================ */
.btn {
  border-radius: 5px;
  font-weight: 500;
  padding: 10px 15px;
  text-transform: uppercase;
  -webkit-transition: background-color .5s ease;
          transition: background-color .5s ease;
}
.btn:hover {
  text-decoration: none;
}
.btn.bg-red:hover {
  background-color: #9d1320;
}
.btn.bg-dark-blue:hover {
  background-color: #0081a0;
}

/*! Flickity v2.2.1
https://flickity.metafizzy.co
---------------------------------------------- */
.flickity-enabled {
  position: relative;
}

.flickity-enabled:focus {
  outline: none;
}

.flickity-viewport {
  overflow: hidden;
  position: relative;
  height: 100%;
}

.flickity-slider {
  position: absolute;
  width: 100%;
  height: 100%;
}

/* draggable */
.flickity-enabled.is-draggable {
  -webkit-tap-highlight-color: transparent;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.flickity-enabled.is-draggable .flickity-viewport {
  cursor: move;
  cursor: -webkit-grab;
  cursor: grab;
}

.flickity-enabled.is-draggable .flickity-viewport.is-pointer-down {
  cursor: -webkit-grabbing;
  cursor: grabbing;
}

/* ---- flickity-button ---- */
.flickity-button {
  position: absolute;
  background: rgba(255, 255, 255, 0.75);
  border: none;
  color: #333;
}

.flickity-button:hover {
  background: white;
  cursor: pointer;
}

.flickity-button:focus {
  outline: none;
  box-shadow: 0 0 0 5px #19F;
}

.flickity-button:active {
  opacity: 0.6;
}

.flickity-button:disabled {
  opacity: 0.3;
  cursor: auto;
  /* prevent disabled button from capturing pointer up event. #716 */
  pointer-events: none;
}

.flickity-button-icon {
  fill: currentColor;
}

/* ---- previous/next buttons ---- */
.flickity-prev-next-button {
  top: 50%;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  opacity: .5;
  position: absolute;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}
.flickity-prev-next-button:hover {
  opacity: 1;
}

.flickity-prev-next-button.previous {
  left: 10px;
}

.flickity-prev-next-button.next {
  right: 10px;
}

/* right to left */
.flickity-rtl .flickity-prev-next-button.previous {
  left: auto;
  right: 10px;
}

.flickity-rtl .flickity-prev-next-button.next {
  right: auto;
  left: 10px;
}

.flickity-prev-next-button .flickity-button-icon {
  position: absolute;
  left: 20%;
  top: 20%;
  width: 60%;
  height: 60%;
}

/* ---- page dots ---- */
.flickity-page-dots {
  position: absolute;
  width: 100%;
  bottom: -25px;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
  line-height: 1;
}

.flickity-rtl .flickity-page-dots {
  direction: rtl;
}

.flickity-page-dots .dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 0 8px;
  background: #333;
  border-radius: 50%;
  opacity: 0.25;
  cursor: pointer;
}

.flickity-page-dots .dot.is-selected {
  opacity: 1;
}

.stacktable {
  width: 100%;
}

.st-head-row {
  padding-top: 1em;
}

.st-head-row.st-head-row-main {
  font-size: 1.5em;
  padding-top: 0;
}

.st-key {
  width: 49%;
  text-align: right;
  padding-right: 1%;
}

.st-val {
  width: 49%;
  padding-left: 1%;
}

/* RESPONSIVE EXAMPLE */
.stacktable.large-only {
  display: table;
}

.stacktable.small-only {
  display: none;
}

@media (max-width: 800px) {
  .stacktable.large-only {
    display: none;
  }

  .stacktable.small-only {
    display: table;
  }
}
/* ================================
   Header
   ================================ */
header {
  background: transparent;
}
header .header--inner {
  position: absolute;
  width: 100%;
  z-index: 50;
  -webkit-transition: background-color 2s linear;
          transition: background-color 2s linear;
}
@media (min-width: 760px) {
  header .header--inner {
    background-color: transparent;
    border-top: 1px solid #dedede;
    box-shadow: 0 4px 8px -6px #000000;
    margin-top: 80px;
    z-index: 30;
  }
}
@media (min-width: 760px) {
  header .header--inner.sticky {
    margin-top: 30px;
  }
}
header .trigger i {
  opacity: 1;
}
header .trigger i.hidden {
  display: none;
}
@media (max-width: 480px) {
  header.open .header--inner {
    background: rgba(255, 255, 255, 0.9);
    -webkit-transition: background-color 2s linear;
            transition: background-color 2s linear;
  }
}
@media (min-width: 480px) {
  header.open .header--inner {
    pointer-events: none;
  }
  header.open .header--inner .logo,
  header.open .header--inner a.trigger {
    pointer-events: all;
  }
}

.logo {
  text-align: center;
}
.logo img {
  margin: 5px 0;
  max-width: 120px;
  width: 100%;
}
@media (min-width: 760px) {
  .logo img {
    margin: 20px 0;
  }
}
@media (min-width: 760px) {
  .logo {
    width: calc(12.5% - 22.5px);
    float: left;
    margin-left: 20px;
    margin: 0;
    position: absolute;
    text-align: left;
    top: 50%;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  .logo img {
    margin: 0;
    max-width: 124px;
  }
}

.navigation-bar {
  position: relative;
  width: 100%;
  z-index: 100;
}
@media (min-width: 760px) {
  .navigation-bar {
    background: #ffffff;
    margin-left: -20px;
    margin-right: -20px;
    width: calc(100% + 40px);
    -webkit-transition: all .5s ease;
            transition: all .5s ease;
  }
  .navigation-bar::after {
    clear: both;
    content: "";
    display: block;
  }
}
.navigation-bar > .container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (min-width: 760px) {
  .navigation-bar > .container {
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
.navigation-bar > .container:before, .navigation-bar > .container:after {
  display: none;
}

.header-nav {
  width: calc(87.5% - 37.5px);
  float: left;
  margin-left: 20px;
  margin-left: calc(12.5% - 22.5px + 40px);
}
.header-nav::after {
  clear: both;
  content: "";
  display: block;
}
@media (min-width: 760px) {
  .header-nav {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.header-nav nav ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 0;
}
.header-nav nav ul a {
  display: inline-block;
  font-size: 0.5625rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  line-height: 1.5rem;
  padding: 16px 10px;
  position: relative;
  text-decoration: none;
  text-transform: uppercase;
}
@media (min-width: 760px) {
  .header-nav nav ul a {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    height: 100%;
    line-height: 1.125rem;
  }
}
@media (min-width: 1200px) {
  .header-nav nav ul a {
    line-height: 1.5rem;
    padding: 12px 14px;
  }
}
.header-nav nav ul a:before {
  background-image: -webkit-linear-gradient(top, #cb1829 0%, #cb1829 100%);
  background-image: linear-gradient(to bottom, #cb1829 0%, #cb1829 100%);
  background-size: 0 0;
  background-position: 0 100%;
  background-repeat: repeat-x;
  content: '';
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1;
  -webkit-transition: all .2s;
          transition: all .2s;
}
.header-nav nav ul a:hover:before {
  background-size: 1px 60px;
  -webkit-transform: scale(1, 1.3);
      -ms-transform: scale(1, 1.3);
          transform: scale(1, 1.3);
  z-index: 1;
}
.header-nav nav ul a:hover span, .header-nav nav ul a:hover i {
  color: #ffffff;
  position: relative;
  z-index: 2;
}
.header-nav nav ul a:hover span.sr-only, .header-nav nav ul a:hover i.sr-only {
  position: absolute;
}
.header-nav nav ul a.active:before {
  background-color: #cb1829;
  background-z-index: 1;
  -webkit-transform: scale(1, 1.3);
      -ms-transform: scale(1, 1.3);
          transform: scale(1, 1.3);
}
.header-nav nav ul a.active span, .header-nav nav ul a.active i {
  color: #ffffff;
  position: relative;
  z-index: 2;
}
.header-nav nav ul a.active span.sr-only, .header-nav nav ul a.active i.sr-only {
  position: absolute;
}
.header-nav nav ul .has-subnav .dropdown {
  background: #555555;
  display: block;
  opacity: 0;
  min-width: 180px;
  max-width: 200px;
  overflow: hidden;
  padding-top: 10px;
  position: absolute;
  visibility: hidden;
  -webkit-transition: opacity .4s ease-in;
          transition: opacity .4s ease-in;
}
.header-nav nav ul .has-subnav .dropdown a {
  border-bottom: 1px solid #555555;
  color: #ffffff;
  line-height: 0.875rem;
  width: 100%;
}
.header-nav nav ul .has-subnav .dropdown a:hover {
  border-bottom: 1px solid #ffffff;
}
.header-nav nav ul .has-subnav .dropdown a:hover:before {
  display: none;
}
.header-nav nav ul .has-subnav .dropdown a.active:before {
  background: transparent;
  border-bottom: 1px solid #cb1829;
}
.header-nav nav ul .has-subnav:hover > a:before {
  background-color: #cb1829;
  background-z-index: 1;
  -webkit-transform: scale(1, 1.3);
      -ms-transform: scale(1, 1.3);
          transform: scale(1, 1.3);
}
.header-nav nav ul .has-subnav:hover > a span, .header-nav nav ul .has-subnav:hover > a i {
  color: #ffffff;
  position: relative;
  z-index: 2;
}
.header-nav nav ul .has-subnav:hover > a span.sr-only, .header-nav nav ul .has-subnav:hover > a i.sr-only {
  position: absolute;
}
.header-nav nav ul .has-subnav:hover .dropdown {
  opacity: 1;
  visibility: visible;
}
.header-nav nav ul .has-subnav:hover .dropdown a:hover {
  color: #dedede;
}
.header-nav:after {
  display: none;
}

.main-nav {
  width: calc(66.66667% - 33.33333px);
  float: left;
  margin-left: 20px;
  margin: 0;
}
.main-nav ul a {
  color: #464646;
}

.secondary-nav {
  width: calc(33.33333% - 26.66667px);
  float: left;
  margin-left: 20px;
  margin: 0;
}
.secondary-nav ul a {
  color: #cb1829;
}
.secondary-nav ul a.search-icon {
  font-size: 1em;
}

/* ================================
   Search
   ================================ */
.search-form {
  background: rgba(237, 237, 237, 0.8);
  height: 0;
  overflow: hidden;
  position: absolute;
  width: 100%;
  z-index: 10;
  -webkit-transition: height .3s linear;
          transition: height .3s linear;
}
.search-form.open {
  box-shadow: 0 0 8px 2px #666;
  height: 30vh;
}
.search-form form {
  width: 100%;
}
.search-form form input[type="search"] {
  border: 0;
  border-bottom: 2px solid #898989;
  border-radius: 0;
  color: #cb1829;
  font-size: 2em;
  height: auto;
  display: inline-block;
  max-width: 2000px;
  padding: 10px;
  position: relative;
  background: transparent;
}
.search-form form input[type="search"]:focus {
  background: rgba(255, 255, 255, 0.5);
}
.search-form form button {
  background: transparent;
  border: none;
  display: inline-block;
  margin-left: 20px;
  position: relative;
}
.search-form form button i {
  color: #cb1829;
  font-size: 2em;
}
.search-form form .form-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  left: 50%;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 70%;
}

.search-form-mobile {
  padding: 20px 0;
  border-bottom: 1px solid #ccc;
  margin: 0 8px;
}
@media (min-width: 480px) {
  .search-form-mobile form {
    width: 86%;
  }
}
.search-form-mobile .form-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.search-form-mobile input[type="search"] {
  display: inline-block;
}
.search-form-mobile button {
  background: transparent;
  border: none;
  display: inline-block;
  margin-left: 20px;
  position: relative;
}
.search-form-mobile button i {
  color: #cb1829;
  font-size: 1.5em;
}

/* ================================
   Homepage
   ================================ */
.stats {
  margin: 40px 0;
}
.stats .column {
  background: #ededed;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.stats .stat {
  padding: 30px 20px;
}
.stats .stat-number {
  font-size: 5.625rem;
  font-weight: 300;
  line-height: 6.25rem;
}
@media (min-width: 480px) {
  .stats .stat-number {
    font-size: 3.75rem;
  }
}
@media (min-width: 760px) {
  .stats .stat-number {
    font-size: 2.5rem;
    font-weight: 400;
  }
}
@media (min-width: 920px) {
  .stats .stat-number {
    font-size: 3.75rem;
    font-weight: 300;
  }
}
@media (min-width: 1200px) {
  .stats .stat-number {
    font-size: 5rem;
    line-height: 6.25rem;
  }
}
@media (min-width: 1400px) {
  .stats .stat-number {
    font-size: 5.625rem;
  }
}
.stats .stat-description {
  font-size: 1.5rem;
}
@media (min-width: 1200px) {
  .stats .stat-description {
    padding-right: 100px;
  }
}
.stats .stat-image {
  bottom: 0;
}
.stats .stat-image img {
  width: 100%;
}

@media (min-width: 760px) {
  .image-collage {
    float: left;
    margin: 100px 0 150px 0;
  }
}
.image-collage h3 {
  color: #ffffff;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.375rem;
  margin: 15px;
  position: absolute;
  z-index: 1;
}
.image-collage h3.bottom {
  bottom: 0;
}
.image-collage h3.left {
  left: 0;
}
.image-collage h3.right {
  left: 0;
}
@media (min-width: 760px) {
  .image-collage h3.right {
    left: auto;
    right: 0;
  }
}
.image-collage h3.top {
  top: 0;
}
@media (min-width: 760px) {
  .image-collage h3 {
    font-size: 1.25rem;
    line-height: initial;
  }
}
.image-collage .grid-container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  margin: 0;
}
@media (min-width: 760px) {
  .image-collage .grid-container {
    display: grid;
    grid-template-columns: 1fr 3fr .5fr 1fr 3fr 1fr;
  }
}
.image-collage .grid-container li {
  list-style: none;
  position: relative;
  width: 100%;
}
@media (min-width: 760px) {
  .image-collage .grid-container li {
    width: auto;
  }
}
.image-collage .grid-container li .grid-item-wrapper {
  box-shadow: rgba(0, 0, 0, 0.8) 5px 5px 55px inset;
  display: inline-block;
  height: 100%;
  position: relative;
  width: 100%;
}
.image-collage .grid-container li .grid-item-wrapper:after {
  background: -webkit-linear-gradient(top, rgba(30, 87, 153, 0) 0%, rgba(71, 85, 101, 0) 76%, rgba(0, 0, 0, 0.6) 100%);
  background: linear-gradient(to bottom, rgba(30, 87, 153, 0) 0%, rgba(71, 85, 101, 0) 76%, rgba(0, 0, 0, 0.6) 100%);
  content: '';
  display: block;
  height: 100%;
  position: absolute;
  top: 0;
  width: 100%;
}
.image-collage .grid-container li img {
  height: 100%;
  max-width: 100%;
  position: relative;
  width: 100%;
}
.image-collage .grid-container li:first-of-type {
  grid-column: 1/span 3;
  grid-row: 1/span 4;
  -webkit-box-ordinal-group: 3;
  -webkit-order: 2;
      -ms-flex-order: 2;
          order: 2;
}
.image-collage .grid-container li:nth-of-type(2) {
  -webkit-box-flex: 1;
  -webkit-flex: 1 100%;
      -ms-flex: 1 100%;
          flex: 1 100%;
  grid-column: 4/span 3;
  -webkit-box-ordinal-group: 2;
  -webkit-order: 1;
      -ms-flex-order: 1;
          order: 1;
}
@media (min-width: 480px) {
  .image-collage .grid-container li:nth-of-type(2) {
    padding-left: 10px;
  }
  .image-collage .grid-container li:nth-of-type(2) h2 {
    font-size: 0.75rem;
    line-height: 1.25rem;
  }
}
@media (min-width: 760px) {
  .image-collage .grid-container li:nth-of-type(2) {
    grid-column: 4/span 2;
    text-align: right;
  }
}
@media (min-width: 920px) {
  .image-collage .grid-container li:nth-of-type(2) {
    padding-left: 0;
  }
  .image-collage .grid-container li:nth-of-type(2) h2 {
    font-size: 0.875rem;
  }
}
.image-collage .grid-container li:nth-of-type(3) {
  grid-column: 4/span 3;
  grid-row: 2/span 2;
  z-index: 10;
  -webkit-box-ordinal-group: 4;
  -webkit-order: 3;
      -ms-flex-order: 3;
          order: 3;
}
@media (min-width: 760px) {
  .image-collage .grid-container li:nth-of-type(3) {
    grid-column: 4/span 2;
  }
}
.image-collage .grid-container li:nth-of-type(4) {
  grid-column: 3/span 4;
  grid-row: 3/span 3;
  -webkit-box-ordinal-group: 5;
  -webkit-order: 4;
      -ms-flex-order: 4;
          order: 4;
}
@media (min-width: 760px) {
  .image-collage .grid-container li:nth-of-type(4) h3 {
    text-align: right;
    width: 65%;
  }
}
@media (min-width: 920px) {
  .image-collage .grid-container li:nth-of-type(4) {
    text-align: left;
    width: auto;
  }
}
.image-collage .grid-container li:last-of-type {
  grid-column: 2/span 3;
  grid-row: 5/span 2;
  -webkit-box-ordinal-group: 6;
  -webkit-order: 5;
      -ms-flex-order: 5;
          order: 5;
}

@media (min-width: 760px) {
  .page-node-type-universal-page .image-collage {
    margin: 50px 0;
  }
}

/* ================================
   Carousel - Hero
   ================================ */
.hero-story {
  /*opacity: 0;
  transition: opacity 0.4s;
  &.is-hidden {
      display: none;
  }
  &.flickity-enabled {
      opacity: 1;
  }*/
}
.hero-story .story {
  background: #464646;
  max-height: 80vh;
  width: 170%;
}
@media (min-width: 480px) {
  .hero-story .story {
    width: 100%;
  }
}
@media (min-width: 920px) {
  .hero-story .story {
    min-height: 400px;
    max-height: 900px;
    padding: 0;
  }
}
@media (min-width: 1200px) {
  .hero-story .story {
    height: 101vh;
  }
}
.hero-story .story .story-image {
  height: auto;
  width: 100%;
  -webkit-transform: translatex(-20%);
      -ms-transform: translatex(-20%);
          transform: translatex(-20%);
}
@media (min-width: 480px) {
  .hero-story .story .story-image {
    -webkit-transform: none;
        -ms-transform: none;
            transform: none;
  }
}
.hero-story .story-title {
  bottom: 0;
  position: absolute;
}
@media (min-width: 920px) {
  .hero-story .story-title {
    bottom: 5vh;
  }
}
.hero-story .story-title h1 {
  font-size: 2.625rem;
  font-size: calc(5vw + 2vh + 2vmin);
  font-weight: 700;
  line-height: calc(5vw + 2vh + 2vmin);
  text-transform: uppercase;
}
@media (min-width: 760px) {
  .hero-story .story-title h1 {
    margin-bottom: 0;
  }
}
@media (min-width: 920px) {
  .hero-story .story-title h1 {
    line-height: calc(5vw + 1vh + 2vmin);
  }
}
.hero-story .story-title h1 .white {
  text-shadow: 1px 1px #555555;
}
@media (min-width: 760px) {
  .hero-story .story-title h1 .white {
    text-shadow: 1px 2px #000000;
  }
}
@media (min-width: 760px) {
  .hero-story .story-title h1 .red {
    text-shadow: 1px 2px #000000;
  }
}
.hero-story .story-read-more {
  display: inline-block;
  font-size: 30px;
  vertical-align: baseline;
}
.hero-story .story-text {
  background: rgba(0, 0, 0, 0.8);
  bottom: 0;
  left: 0;
  opacity: 0;
  padding: 30px;
  position: absolute;
  width: 59%;
  z-index: -1;
  -webkit-transition: all 1s;
          transition: all 1s;
}
@media (min-width: 480px) {
  .hero-story .story-text {
    padding: 60px;
    width: 100%;
  }
}
@media (min-width: 760px) {
  .hero-story .story-text {
    background: rgba(0, 0, 0, 0.6);
    left: initial;
    padding: 60px 100px 60px 60px;
    right: 0;
    width: 40%;
  }
}
.hero-story .story-text p {
  color: #ffffff;
  font-size: 0.875rem;
  line-height: 26px;
  margin: 0;
}
@media (min-width: 760px) {
  .hero-story .story-text p {
    font-size: 1.125rem;
    line-height: 36px;
  }
}
.hero-story .story-text .close {
  bottom: 0;
  color: #cb1829;
  font-size: 24px;
  position: absolute;
  right: 0;
}
.hero-story .story-text .story-product-image {
  margin-top: -40px;
  max-width: 120px;
  position: absolute;
  top: 0;
  width: 100%;
}
@media (min-width: 760px) {
  .hero-story .story-text .story-product-image {
    margin-top: -30px;
  }
}
.hero-story .story-text .story-text-wrapper {
  position: relative;
}
.hero-story .story-text.show {
  opacity: 1;
  -webkit-transition: opacity 1s;
          transition: opacity 1s;
  z-index: 10;
}

@media (min-width: 760px) {
  .flickity-page-dots {
    bottom: 20px;
  }
}
.flickity-page-dots .dot {
  background: #555555;
  opacity: 1;
}
@media (min-width: 760px) {
  .flickity-page-dots .dot {
    background: #ffffff;
  }
}
.flickity-page-dots .dot.is-selected {
  background: #cb1829;
}

.flickity-prev-next-button {
  display: none;
}
@media (min-width: 760px) {
  .flickity-prev-next-button {
    display: block;
  }
}
.flickity-prev-next-button svg {
  fill: #555555;
  height: 22px;
}

/* ================================
   Heros
   ================================ */
.hero-inner {
  min-height: 200px;
  position: relative;
}
@media (min-width: 760px) {
  .hero-inner {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
  }
}
.hero-inner h1 {
  bottom: 0;
  position: absolute;
  font-size: calc(1vw + 2vh + 2vmin);
  letter-spacing: 0.1em;
  line-height: calc(1.5vw + 3vh + 2vmin);
  margin-bottom: 30px;
  width: 90%;
}
@media (min-width: 760px) {
  .hero-inner h1 {
    font-size: 2.75rem;
    line-height: 3.75rem;
    margin-bottom: 30px;
    width: 80%;
  }
}
@media (min-width: 920px) {
  .hero-inner h1 {
    font-size: 3.75rem;
    line-height: 4.375rem;
    margin-bottom: 60px;
    width: 50%;
  }
}
.hero-inner h1.white {
  text-shadow: 1px 1px 1px #555555;
}
.hero-inner h1.wide {
  width: 90%;
}
.hero-inner .hero-image {
  position: relative;
  padding-bottom: 80%;
  background: #898989;
  max-height: 90vh;
  overflow: hidden;
  width: 200%;
}
@media (min-width: 760px) {
  .hero-inner .hero-image {
    padding-bottom: 41.67%;
    width: 100%;
  }
}
.hero-inner .hero-image.thin {
  padding-bottom: 31.25% !important;
}
.hero-inner .hero-image img {
  -webkit-transform: translateX(-20%);
      -ms-transform: translateX(-20%);
          transform: translateX(-20%);
  position: absolute;
  top: 0;
  -webkit-animation: fadeIn 1s;
          animation: fadeIn 1s;
}
@media (min-width: 760px) {
  .hero-inner .hero-image img {
    -webkit-transform: none;
        -ms-transform: none;
            transform: none;
    width: 100%;
  }
}
.hero-inner.no-image {
  position: relative;
}
.hero-inner.no-image .hero-image {
  background: #ffffff;
  padding-bottom: 0;
  padding-top: 109px;
  max-width: 99%;
  overflow: hidden;
}
@media (min-width: 760px) {
  .hero-inner.no-image .hero-image {
    padding-top: 16%;
  }
}
@media (min-width: 1200px) {
  .hero-inner.no-image .hero-image {
    padding-top: 12%;
  }
}
.hero-inner.no-image h1 {
  color: #cb1829;
  position: relative;
}
.hero-inner.no-image h1.wide {
  width: 100%;
}

/* ================================
   Breadcrumbs
   ================================ */
.breadcrumbs {
  padding: 0;
  margin: 0 0 12px 0;
}
.breadcrumbs li {
  display: inline-block;
}
.breadcrumbs li a,
.breadcrumbs li a:visited {
  color: #cb1829;
}
.breadcrumbs li:after {
  content: "|";
  display: inline-block;
  font-size: inherit;
  text-rendering: auto;
  padding-left: 5px;
}
.breadcrumbs li:last-of-type:after {
  content: "";
}

/* ================================
   Body Parts
   ================================ */
.intro,
.body-text,
.page-inner {
  padding: 20px 0;
}
@media (min-width: 760px) {
  .intro,
  .body-text,
  .page-inner {
    width: calc(83.33333% - 36.66667px);
    float: left;
    margin-left: 20px;
    margin-left: calc(8.33333% - 21.66667px + 40px);
    margin-right: calc(8.33333% - 21.66667px + 40px);
    padding: 50px 0;
  }
}

@media (min-width: 760px) {
  .body-text,
  .page-inner {
    padding: 10px 0;
  }
}

.item-list-container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}

.item-list {
  list-style: none;
  margin: 0;
}
.item-list li {
  border-bottom: 1px solid #cb1829;
  padding: 15px 0;
}
.item-list li:last-of-type {
  border-bottom: none;
}
.item-list li .item-title {
  font-size: 1.125rem;
  line-height: 1.75rem;
}
@media (min-width: 760px) {
  .item-list li .item-title {
    font-size: 1.5rem;
    line-height: 2rem;
  }
}
.item-list li .item-title a {
  color: #555555;
  text-decoration: none;
}
.item-list li .item-title a:hover {
  text-decoration: underline;
}
.item-list li .item-title a:visited {
  color: #555555;
}
.item-list li .item-date {
  display: inline;
  font-size: 0.875rem;
}

.link-list {
  list-style: none;
  margin: 0;
}
.link-list li {
  padding: 4px 0;
}
.link-list a {
  font-weight: 500;
}
.link-list a:hover {
  color: #cb1829;
  text-decoration: none;
}
.link-list a.active {
  color: #cb1829;
  font-weight: 700;
}

.list-group {
  padding-top: 50px;
}

.col-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
@media (min-width: 760px) {
  .col-wrapper {
    -webkit-flex-wrap: nowrap;
        -ms-flex-wrap: nowrap;
            flex-wrap: nowrap;
  }
}

.body-content {
  float: left;
  width: 100%;
}

.full-width-container {
  background-color: transparent;
  float: left;
  position: relative;
  width: 100%;
  -webkit-transition: background-color .5s ease;
          transition: background-color .5s ease;
}
@media (min-width: 760px) {
  .full-width-container {
    left: calc(-1 * (100vw - 100%) / 2);
    width: 100vw;
  }
}
.full-width-container.highlight.active {
  background-color: #353333;
}

#knowledge-center h3 {
  font-weight: 700;
}
#knowledge-center .col {
  width: 100%;
}
#knowledge-center .col:first-of-type {
  padding-right: 20px;
}
@media (min-width: 760px) {
  #knowledge-center .col {
    width: auto;
  }
}
@media (min-width: 760px) {
  #knowledge-center .indent-two {
    width: calc(83.33333% - 36.66667px);
    float: left;
    margin-left: 20px;
    margin-left: calc(8.33333% - 21.66667px + 40px);
    margin-right: calc(8.33333% - 21.66667px + 40px);
  }
}
@media (min-width: 1200px) {
  #knowledge-center .indent-two {
    width: calc(66.66667% - 33.33333px);
    float: left;
    margin-left: 20px;
    margin-left: calc(16.66667% - 23.33333px + 40px);
    margin-right: calc(16.66667% - 23.33333px + 40px);
  }
}
@media (min-width: 760px) {
  #knowledge-center .link-list a {
    font-size: 0.875rem;
    line-height: 1.125rem;
  }
}
@media (min-width: 1200px) {
  #knowledge-center .link-list a {
    font-size: 1rem;
    line-height: initial;
  }
}

.grid.knowledge-center {
  padding-top: 30px;
}
@media (min-width: 760px) {
  .grid.knowledge-center {
    padding: 0;
    grid-gap: 10px;
  }
}
@media (min-width: 920px) {
  .grid.knowledge-center {
    grid-gap: 20px;
  }
}
.grid.knowledge-center .grid-block {
  position: relative;
  width: 100%;
}
@media (min-width: 760px) {
  .grid.knowledge-center .grid-block {
    min-width: 200px;
    max-width: 200px;
  }
}
.grid.knowledge-center .grid-block a {
  background: #dddedd;
  display: block;
  height: 100%;
  padding: 15px 25px;
  position: relative;
  -webkit-transition: background .6s ease;
          transition: background .6s ease;
}
.grid.knowledge-center .grid-block a:hover {
  background: #c3c5c3;
  text-decoration: none;
}
.grid.knowledge-center .grid-block svg {
  fill: #ffffff;
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}
.grid.knowledge-center .grid-block.filtered svg {
  opacity: .4;
  display: block;
}
.grid.knowledge-center .grid-block.filtered .grid-caption {
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 10px;
  position: relative;
  text-shadow: .5px .5px .5px #555555;
}
.grid.knowledge-center .grid-block.filtered.articles a {
  background-color: rgba(172, 222, 213, 0.6);
}
.grid.knowledge-center .grid-block.filtered.articles a:hover {
  background-color: #acded5;
}
.grid.knowledge-center .grid-block.filtered.ebooks a {
  background-color: rgba(217, 189, 227, 0.6);
}
.grid.knowledge-center .grid-block.filtered.ebooks a:hover {
  background-color: #d9bde3;
}
.grid.knowledge-center .grid-block.filtered.presentations a {
  background-color: rgba(252, 220, 169, 0.6);
}
.grid.knowledge-center .grid-block.filtered.presentations a:hover {
  background-color: #fcdca9;
}
.grid.knowledge-center .grid-block.filtered.product-information a {
  background-color: rgba(235, 186, 187, 0.6);
}
.grid.knowledge-center .grid-block.filtered.product-information a:hover {
  background-color: #ebbabb;
}
.grid.knowledge-center .grid-block.filtered.spec-sheets a {
  background-color: rgba(181, 212, 233, 0.6);
}
.grid.knowledge-center .grid-block.filtered.spec-sheets a:hover {
  background-color: #b5d4e9;
}
.grid.knowledge-center .grid-block.filtered.videos a {
  background-color: rgba(0, 170, 211, 0.4);
}
.grid.knowledge-center .grid-block.filtered.videos a:hover {
  background-color: #00aad3;
}
.grid.knowledge-center .grid-block.filtered.webinars a {
  background-color: rgba(179, 228, 199, 0.6);
}
.grid.knowledge-center .grid-block.filtered.webinars a:hover {
  background-color: #b3e4c7;
}
.grid.knowledge-center .grid-block.filtered.white-papers a {
  background-color: rgba(240, 195, 162, 0.6);
}
.grid.knowledge-center .grid-block.filtered.white-papers a:hover {
  background-color: #f0c3a2;
}
.grid.knowledge-center .grid-block.filtered.blog a {
  background-color: rgba(201, 201, 255, 0.6);
}
.grid.knowledge-center .grid-block.filtered.blog a:hover {
  background-color: #c9c9ff;
}
.grid.knowledge-center .grid-block .grid-title {
  padding-right: 25px;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 20;
}
.grid.knowledge-center .grid-block .grid-title p {
  font-size: 0.8125rem;
  font-weight: 500;
  line-height: 1.25rem;
  margin: 0;
}

.back-to-top {
  background: #cb1829;
  border-radius: 5px;
  bottom: 100px;
  cursor: pointer;
  height: 40px;
  opacity: 0;
  position: fixed;
  right: 30px;
  text-align: center;
  width: 40px;
  z-index: 1000;
  -webkit-transition: opacity .3s;
          transition: opacity .3s;
}
.back-to-top i {
  color: #ffffff;
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}
.back-to-top.show {
  opacity: .5;
}
.back-to-top:hover {
  opacity: 1;
}

.everything-menu {
  background: #ededed;
  border-radius: 5px;
}
.everything-menu nav ul {
  margin: 0;
  padding: 10px;
}
.everything-menu nav ul li {
  display: inline;
}
.everything-menu nav ul li:after {
  content: '|';
  display: inline-block;
  padding: 0 5px;
}
.everything-menu nav ul li a {
  font-size: 0.8125rem;
}

.element-section {
  border-top: 1px solid #ededed;
  padding: 40px 0;
}
.element-section .element-section-heading {
  font-size: 1.375rem;
  font-weight: 500;
  letter-spacing: inherit;
  text-transform: none;
}

.section-spacer {
  float: left;
  height: 90px;
  width: 100%;
}

@media (min-width: 760px) {
  .col1 {
    width: calc(66.66667% - 33.33333px);
    float: left;
    margin-left: 20px;
    margin-left: 0;
  }
}

@media (min-width: 760px) {
  .col2 {
    width: calc(25% - 25px);
    float: left;
    margin-left: 20px;
    margin-left: calc(8.33333% - 21.66667px + 40px);
  }
}

.blog-list-item {
  border-bottom: 1px solid #555555;
  padding: 25px 0;
}
@media (min-width: 760px) {
  .blog-list-item {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
}
.blog-list-content h4 a,
.blog-list-content h4 a:visited {
  color: #cb1829;
}
@media (min-width: 760px) {
  .blog-list-content {
    width: calc(75% - 35px);
    float: left;
    margin-left: 20px;
  }
}
@media (min-width: 760px) {
  .blog-list-thumb {
    width: calc(25% - 25px);
    float: left;
    margin-left: 20px;
    margin-left: 0;
  }
}
.blog-list .blog-teaser {
  color: #000000;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.5rem;
  margin-top: 10px;
}

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

.venn-diagram-triangles {
  clear: both;
}
.venn-diagram-triangles .venn-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
}
.venn-diagram-triangles .venn-wrapper.bottom {
  margin-top: -100px;
}
.venn-diagram-triangles .venn-item {
  color: white;
  width: 0;
  height: 0;
  border-bottom: 300px solid #ffffff;
  border-left: 180px solid transparent;
  border-right: 180px solid transparent;
  position: relative;
  -webkit-filter: drop-shadow(0 3px 1px gray);
          filter: drop-shadow(0 3px 1px gray);
}
.venn-diagram-triangles .venn-item.blue {
  color: rgba(181, 212, 233, 0.7);
  border-bottom-color: rgba(181, 212, 233, 0.7);
}
.venn-diagram-triangles .venn-item.blue-green {
  color: rgba(172, 222, 213, 0.7);
  border-bottom-color: rgba(172, 222, 213, 0.7);
}
.venn-diagram-triangles .venn-item.mint-green {
  color: rgba(179, 228, 199, 0.7);
  border-bottom-color: rgba(179, 228, 199, 0.7);
}
.venn-diagram-triangles .venn-item-label {
  color: #ffffff;
  -webkit-filter: none;
          filter: none;
  font-size: 0.75rem;
  font-weight: 700;
  left: 50%;
  line-height: 1.125rem;
  position: absolute;
  top: 50%;
  text-transform: uppercase;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media (min-width: 760px) {
  .venn-diagram-triangles .venn-item-label {
    font-size: 0.875rem;
  }
}

.venn-diagram-circles {
  clear: both;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (min-width: 640px) {
  .venn-diagram-circles {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.venn-diagram-circles .venn-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
}
.venn-diagram-circles .venn-item {
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid #cb1829;
  border-radius: 50%;
  height: 220px;
  margin: -25px -15px;
  position: relative;
  text-align: center;
  width: 220px;
  -webkit-transition: opacity .4s linear;
          transition: opacity .4s linear;
}
.venn-diagram-circles .venn-item.bottom-item {
  margin-top: -35px;
}
.venn-diagram-circles .venn-item:hover {
  opacity: .8;
}
.venn-diagram-circles .venn-item-label {
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 700;
  left: 50%;
  line-height: 1.125rem;
  position: absolute;
  top: 50%;
  text-transform: uppercase;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media (min-width: 760px) {
  .venn-diagram-circles .venn-item-label {
    font-size: 0.875rem;
  }
}
.venn-diagram-circles .venn-item.overlap {
  background: rgba(255, 255, 255, 0.5);
  margin: -35px 0;
  z-index: 10;
}
@media (min-width: 640px) {
  .venn-diagram-circles .venn-item.overlap {
    margin: 0 -35px;
  }
}
.venn-diagram-circles .venn-item:before {
  background: rgba(70, 70, 70, 0.75);
  content: '';
  border-radius: 50%;
  display: block;
  height: 200px;
  left: 50%;
  margin: 0;
  top: 50%;
  position: relative;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 200px;
}

.carousel-inner-wrapper {
  margin: 50px 0;
}
@media (max-width: 760px) {
  .carousel-inner-wrapper {
    background: #ffffff;
  }
}
@media (min-width: 760px) {
  .carousel-inner-wrapper {
    margin: 100px 0;
  }
}
.carousel-inner-wrapper > .container {
  padding: 0;
}
@media (min-width: 760px) {
  .carousel-inner-wrapper > .container {
    padding: inherit;
  }
}
.carousel-inner-wrapper.full-width {
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  max-width: 1000%;
  width: auto;
}
@media (min-width: 760px) {
  .carousel-inner-wrapper .carousel-inner {
    width: calc(100% - 40px);
    float: left;
    margin-left: 20px;
  }
}
@media (min-width: 920px) {
  .carousel-inner-wrapper .carousel-inner {
    width: calc(83.33333% - 36.66667px);
    float: left;
    margin-left: 20px;
    margin-left: calc(8.33333% - 21.66667px + 40px);
    margin-right: calc(8.33333% - 21.66667px + 40px);
  }
}
.carousel-inner-wrapper .carousel-inner img {
  width: 100%;
}
.carousel-inner-wrapper .flickity-prev-next-button.next {
  right: -25px;
}
.carousel-inner-wrapper .flickity-prev-next-button.previous {
  left: -25px;
}
.carousel-inner-wrapper .flickity-page-dots {
  bottom: -30px;
}
.carousel-inner-wrapper .flickity-page-dots .dot {
  background: #555555;
}
.carousel-inner-wrapper .flickity-page-dots .dot.is-selected {
  background: #cb1829;
}
.carousel-inner-wrapper .slide {
  width: 100%;
}
.carousel-inner-wrapper .slide-content {
  background: #464646;
  bottom: 0;
  height: 100%;
  padding: 20px;
  position: relative;
  right: 0;
  width: 100%;
}
@media (min-width: 760px) {
  .carousel-inner-wrapper .slide-content {
    background: rgba(0, 0, 0, 0.7);
    height: auto;
    padding: 10px;
    position: absolute;
  }
}
@media (min-width: 920px) {
  .carousel-inner-wrapper .slide-content {
    bottom: initial;
    height: 100%;
    padding: 20px;
    top: 0;
    width: 60%;
  }
}
@media (min-width: 1200px) {
  .carousel-inner-wrapper .slide-content {
    width: 40%;
  }
}
.carousel-inner-wrapper .slide-content .slide-content-wrapper {
  padding: 0 20px;
  position: relative;
}
@media (min-width: 760px) {
  .carousel-inner-wrapper .slide-content .slide-content-wrapper {
    padding: 10px;
  }
}
@media (min-width: 920px) {
  .carousel-inner-wrapper .slide-content .slide-content-wrapper {
    padding: 0 20px;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}
.carousel-inner-wrapper .slide-content .slide-content-wrapper h5 {
  color: #ffffff;
}
.carousel-inner-wrapper .slide-content .slide-content-wrapper p {
  color: #ffffff;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.75rem;
  margin-bottom: 0;
}
@media (min-width: 760px) {
  .carousel-inner-wrapper .slide-content .slide-content-wrapper p {
    line-height: 1.4375rem;
  }
}
.carousel-inner-wrapper .slide-content .slide-content-wrapper ul {
  list-style-type: disc;
  margin-left: 30px;
}
.carousel-inner-wrapper .slide-content .slide-content-wrapper ul li {
  color: #ffffff;
}
.carousel-inner-wrapper .slide-content .slide-content-wrapper ul li:before {
  display: none;
}
.carousel-inner-wrapper .slide-content .slide-content-wrapper a {
  color: #ffffff;
  text-decoration: underline;
}
.carousel-inner-wrapper .slide-content .slide-content-wrapper a:hover {
  text-decoration: none;
}

.user-login-form {
  margin: 120px 0 80px 0;
}
@media (min-width: 760px) {
  .user-login-form {
    margin: 180px 0 80px 0;
  }
}
.user-login-form label {
  font-weight: 700;
}
.user-login-form .description {
  font-size: 0.875rem;
}
.user-login-form .js-form-item {
  margin-bottom: 20px;
}
.user-login-form #edit-submit {
  background: #cb1829;
  border: 0;
  color: #ffffff;
  font-weight: 700;
  padding: 10px 20px;
}
.user-login-form #edit-submit:hover {
  background: #b41524;
}

.sticky-button {
  background: #cb1829;
  bottom: 0;
  color: #ffffff;
  font-weight: 500;
  padding: 10px 0;
  position: fixed;
  text-align: center;
  text-decoration: none;
  width: 100%;
  z-index: 40;
}
.sticky-button:visited {
  color: #ffffff;
}
.sticky-button:hover {
  background: #9d1320;
  text-decoration: none;
}

#BambooHR .BambooHR-ATS-Department-List li {
  text-indent: 0;
}
#BambooHR .BambooHR-ATS-Department-List li:before {
  display: none;
}
#BambooHR .BambooHR-ATS-Department-List .BambooHR-ATS-Jobs-List li:before {
  display: inline-block;
  color: #cb1829;
  content: '>';
  font-weight: 700;
  margin-right: 5px;
}

.hbspt-form ul li:before {
  content: '';
  display: none;
}

.code-section {
  clear: both;
}

/* ================================
   Blog (Custom)
   ================================ */
.blog-expand {
  margin: 15px 0;
}
.blog-expand .accordion--body {
  background: #ffffff !important;
  border: 0 !important;
}
.blog-expand .accordion--body ul li:before {
  /* content: '' !important; */
}
.blog-expand-heading {
  border: 0;
  border-bottom: 2px solid #cb1829;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
  text-align: left;
  width: 100%;
}
.blog-expand-heading .blog-expand-title {
  background: #ededed;
  padding: 8px 8px 8px 20px;
  width: 100%;
}
.blog-expand-heading i {
  background: #ffffff;
  color: #cb1829;
  display: block;
  padding: 8px 10px 10px 20px;
  position: absolute;
  right: 0;
}
.blog-expand-heading i.close {
  display: none;
}
.blog-expand-heading[aria-expanded=true] i.open {
  display: none;
}
.blog-expand-heading[aria-expanded=true] i.close {
  display: block;
}

.blog-search-container {
  border-bottom: 2px solid #cb1829;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.blog-search-container button {
  background: #ffffff;
  border: none;
  color: #cb1829;
  display: inline-block;
  padding: 12px 10px 8px 19px;
  position: relative;
}
.blog-search-container input[type="search"].blog-search {
  background-color: #ededed;
  border: none;
  border-radius: 0;
  max-width: 100%;
  padding: 8px 8px 8px 20px;
}
.blog-search-container input[type="search"].blog-search:focus {
  background-color: #dedede;
}
.blog-search-container input[type="search"].blog-search:focus::-webkit-input-placeholder {
  color: rgba(203, 24, 41, 0.5);
}
.blog-search-container input[type="search"].blog-search:focus::-moz-placeholder {
  color: rgba(203, 24, 41, 0.5);
}
.blog-search-container input[type="search"].blog-search:focus:-ms-input-placeholder {
  color: rgba(203, 24, 41, 0.5);
}
.blog-search-container input[type="search"].blog-search:focus::placeholder {
  color: rgba(203, 24, 41, 0.5);
}

.view-more-container {
  padding: 30px 0;
}

.author-name {
  color: #cb1829;
  font-weight: 700;
  text-decoration: none;
}

.blog-post .byline {
  margin-bottom: 20px;
}
.blog-post article {
  padding-top: 45px;
}
.blog-post article h2 {
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: initial;
  margin: 30px 0 20px 0;
  text-transform: initial;
}
.blog-post article h3 {
  color: #cb1829;
  font-size: 0.875rem;
  font-weight: 700;
  margin-bottom: 5px;
}
.blog-post article h4 {
  color: #353333;
  font-size: 0.875rem;
  font-weight: 700;
  margin-bottom: 0;
}
.blog-post article p {
  font-size: 0.875rem;
  line-height: 1.625rem;
}
.blog-post article p a {
  color: #00aad3;
  font-weight: 700;
  text-decoration: none;
}
.blog-post article p a:hover {
  text-decoration: underline;
}
.blog-post article ul {
  list-style: none;
  margin-left: 14px;
}
.blog-post article ul li {
  font-size: 0.875rem;
  line-height: 1.625rem;
  text-indent: -14px;
}
.blog-post article ul li:before {
  color: #cb1829;
  content: '>';
  font-weight: 700;
  margin-right: 5px;
}

.blog-full-image {
  position: relative;
  width: 100;
}
@media (min-width: 920px) {
  .blog-full-image img {
    width: 100%;
  }
}

.author-profile {
  float: left;
  padding: 30px 0;
}
@media (min-width: 760px) {
  .author-profile {
    margin-left: -20px;
    margin-right: -20px;
    width: calc(100% + 40px);
  }
}
@media (min-width: 760px) {
  .author-profile-photo {
    width: calc(25% - 25px);
    float: left;
    margin-left: 20px;
  }
}
@media (min-width: 760px) {
  .author-profile-bio {
    width: calc(50% - 30px);
    float: left;
    margin-left: 20px;
  }
}
.author-profile-bio p {
  font-size: 0.75rem;
  line-height: 1.5rem;
  margin-bottom: 10px;
}

.pager .pager__items li {
  display: inline;
}
.pager .pager__items li a,
.pager .pager__items li a:visited {
  color: #cb1829;
}
.pager .pager__items li.is-active {
  font-weight: 700;
}

.pager {
  margin-bottom: 48px;
  margin-top: 10px;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  line-height: 1.15384615;
  text-transform: uppercase;
  color: #465F69;
  letter-spacing: 0.15px;
  text-align: center;
}
.pager a, .pager a:visited {
  color: #b5d4e9;
  text-decoration: none;
  padding: 5px 8px;
}
.pager a:hover, .pager a:focus, .pager a:active, .pager a:visited:hover, .pager a:visited:focus, .pager a:visited:active {
  color: #cb1829;
  text-decoration: underline;
}
.pager a.current-page, .pager a:visited.current-page {
  color: #464646 !important;
}
.pager label {
  display: inline-block;
}
.pager ul {
  display: inline-block;
  list-style: none;
  margin: 0;
}
.pager li {
  display: inline-block;
  padding-left: 0;
  color: #ffffff !important;
}
.pager li:after {
  content: " | ";
  color: #C6C6C6;
}
.pager li:last-child:after {
  content: "";
}
.background-gray .pager a, .background-gray .pager a:visited, .background-blue .pager a, .background-blue .pager a:visited, .background-blue-dark .pager a, .background-blue-dark .pager a:visited, .cue-bert-bg .pager a, .cue-bert-bg .pager a:visited, .svg-bg .pager a, .svg-bg .pager a:visited {
  color: #ffffff !important;
}

.callout-text {
  clear: both;
  padding: 80px 0;
  position: relative;
}
@media (min-width: 760px) {
  .callout-text {
    width: calc(83.33333% - 36.66667px);
    float: left;
    margin-left: 20px;
    margin-left: calc(8.33333% - 21.66667px + 40px);
    padding: 120px 0;
  }
}
.callout-text p {
  font-size: 2rem;
  font-weight: 700;
  line-height: 2.75rem;
  position: relative;
  text-align: center;
  text-transform: uppercase;
}
@media (min-width: 760px) {
  .callout-text p {
    font-size: 2.5625rem;
    line-height: 3.75rem;
  }
}
.callout-text.small {
  padding: 120px 0 40px 0;
}
.callout-text.small p {
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 2.875rem;
  text-transform: none;
  width: 100%;
}
.callout-text.quotes {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.callout-text.quotes:before, .callout-text.quotes:after {
  color: #ebebeb;
  display: block;
  font-family: 'Prata', serif;
  font-size: 25rem;
  line-height: 21.875rem;
  position: relative;
  max-height: 100px;
}
.callout-text.quotes:before {
  content: '“';
  left: 10%;
}
.callout-text.quotes:after {
  content: '”';
  right: 10%;
}
.callout-text.quotes p {
  position: absolute;
  z-index: 10;
}
.callout-text.right {
  text-align: right;
}
.callout-text.center {
  text-align: center;
}

@media (min-width: 480px) {
  .home-callouts-grid {
    grid-template-columns: repeat(3, 1fr) !important;
  }
}
@media (min-width: 760px) {
  .home-callouts-grid {
    padding: 70px 0;
    grid-template-columns: repeat(3, 204px) !important;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.home-callouts-grid a {
  background: #dddedd;
  height: 100%;
  padding-bottom: 90%;
  -webkit-transition: background-color .5s ease;
          transition: background-color .5s ease;
}
.home-callouts-grid a:hover {
  background: #b5d4e9;
  text-decoration: none;
}
.home-callouts-grid a img {
  bottom: 20px;
  left: 50%;
  max-width: 150px;
  position: absolute;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100%;
}
@media (min-width: 480px) {
  .home-callouts-grid a img {
    max-width: 80px;
  }
}
@media (min-width: 760px) {
  .home-callouts-grid a img {
    max-width: 100px;
  }
}
@media (min-width: 920px) {
  .home-callouts-grid a img {
    max-width: 130px;
  }
}
.home-callouts-grid .home-callouts-grid-item {
  border: 1px solid #555555;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  height: auto;
  margin: 0 auto;
  max-width: 250px;
  padding: 0;
  position: relative;
  width: 100%;
}
@media (min-width: 760px) {
  .home-callouts-grid .home-callouts-grid-item {
    max-width: initial;
    min-height: initial;
  }
}
.home-callouts-grid .home-callouts-grid-item a {
  color: #555555;
  height: 100%;
  position: relative;
}
.home-callouts-grid .home-callouts-grid-item a:visited {
  color: #555555;
}
@media (min-width: 760px) {
  .home-callouts-grid .home-callouts-grid-item a {
    min-height: initial;
  }
}
.home-callouts-grid .home-callouts-grid-item .home-callouts-title {
  color: #555555;
  padding: 15px;
  position: absolute;
  font-size: 1.25rem;
  font-weight: 500;
  word-spacing: 10000px;
  z-index: 10;
}
.home-callouts-grid .home-callouts-grid-item i {
  bottom: 0;
  left: 0;
  padding: 15px;
  position: absolute;
}

.callout-container {
  clear: both;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  padding: 40px 0;
}
@media (min-width: 760px) {
  .callout-container {
    display: block;
    padding: 100px 0;
  }
}
.callout-container .callout-image {
  -webkit-box-ordinal-group: 3;
  -webkit-order: 2;
      -ms-flex-order: 2;
          order: 2;
  width: 100%;
}
@media (min-width: 760px) {
  .callout-container .callout-image {
    -webkit-box-ordinal-group: NaN;
    -webkit-order: initial;
        -ms-flex-order: initial;
            order: initial;
    width: calc(33.33333% - 26.66667px);
    float: left;
    margin-left: 20px;
  }
}
.callout-container .callout-content {
  -webkit-box-ordinal-group: 2;
  -webkit-order: 1;
      -ms-flex-order: 1;
          order: 1;
}
@media (min-width: 760px) {
  .callout-container .callout-content {
    -webkit-box-ordinal-group: NaN;
    -webkit-order: initial;
        -ms-flex-order: initial;
            order: initial;
    width: calc(58.33333% - 31.66667px);
    float: left;
    margin-left: 20px;
  }
}
.callout-container .callout-content hr {
  background-color: #636363;
  border: 0;
  height: 2px;
  margin: 40px 0;
}
@media (min-width: 760px) {
  .callout-container .callout-right {
    margin-left: calc(8.33333% - 21.66667px + 40px);
  }
}

.callout-image-content {
  margin-top: 70px;
}
.callout-image-content-image {
  text-align: center;
}
@media (min-width: 760px) {
  .callout-image-content-image {
    width: calc(33.33333% - 26.66667px);
    float: left;
    margin-left: 20px;
    margin-left: 0;
    text-align: left;
  }
}
.callout-image-content-text {
  padding-top: 20px;
}
@media (min-width: 760px) {
  .callout-image-content-text {
    width: calc(66.66667% - 33.33333px);
    float: left;
    margin-left: 20px;
    padding-top: 0;
  }
}
.callout-image-content-text h3 {
  font-size: 1.75rem;
}
@media (min-width: 760px) {
  .callout-image-content-text h3 {
    font-size: 2.25rem;
  }
}
.callout-image-content-text p {
  font-size: 1rem;
}
@media (min-width: 760px) {
  .callout-image-content-text p {
    line-height: 1.75rem;
  }
}
@media (min-width: 920px) {
  .callout-image-content-text p {
    line-height: 2.25rem;
  }
}

.callout-block--modal {
  display: none;
  position: relative;
  width: 100%;
  top: 30vh;
  left: 0;
  margin: 0 auto;
  -webkit-animation: fadeOut 250ms;
          animation: fadeOut 250ms;
}
@media (min-width: 760px) {
  .callout-block--modal {
    top: 30px;
  }
}
.callout-block--modal.open {
  display: block;
  position: fixed;
  width: 100%;
  height: 90vh;
  opacity: 1;
  overflow: auto;
  z-index: 9999;
  -webkit-animation: fadeInDown 250ms;
          animation: fadeInDown 250ms;
}
.callout-block--modal-inner {
  max-width: 980px;
  width: 100%;
  float: left;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  display: block;
  background: #ffffff;
  padding: 24px;
  position: absolute;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.26);
  margin: 24px 0;
}
@media (min-width: 480px) {
  .callout-block--modal-inner {
    margin: 0;
  }
}
.callout-block--modal-text {
  width: calc(100% - 40px);
  float: left;
  margin-left: 20px;
  font-size: 13px;
  line-height: 17px;
  font-weight: 400;
}
@media (min-width: 480px) {
  .callout-block--modal-text {
    width: calc(58.33333% - 31.66667px);
    float: left;
    margin-left: 20px;
    padding: 10px;
  }
}
.callout-block--modal-title {
  margin-top: 0;
  font-size: 18px;
  line-height: 22px;
  color: #007DE0;
  text-transform: uppercase;
}
.callout-block--modal-close {
  color: #cb1829;
  display: block;
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 27px;
  line-height: 1;
  cursor: pointer;
}
.callout-block--modal-close:hover {
  color: #9d1320;
}

.modal-disable-scroll {
  overflow: hidden;
}

.video-modal--container {
  padding: 12px;
}
@media (min-width: 760px) {
  .video-modal--container {
    padding: 24px 48px;
  }
}
.video-modal--container .caption {
  font-size: 14px;
  line-height: 1.5;
  padding-top: 25px;
}

/* ================================
   Hubspot Forms
   ================================ */
.hs-form fieldset.form-columns-1, .hs-form fieldset.form-columns-2, .hs-form fieldset.form-columns-3 {
  max-width: 100%;
}
@media (min-width: 760px) {
  .hs-form fieldset.form-columns-1, .hs-form fieldset.form-columns-2, .hs-form fieldset.form-columns-3 {
    margin-bottom: 20px;
  }
}
.hs-form fieldset.form-columns-1 .hs-form-field, .hs-form fieldset.form-columns-2 .hs-form-field, .hs-form fieldset.form-columns-3 .hs-form-field {
  margin-bottom: 20px;
  width: 100% !important;
}
@media (min-width: 760px) {
  .hs-form fieldset.form-columns-1 .hs-form-field, .hs-form fieldset.form-columns-2 .hs-form-field, .hs-form fieldset.form-columns-3 .hs-form-field {
    margin-bottom: 0;
    max-width: 100%;
  }
}
@media (min-width: 760px) {
  .hs-form fieldset.form-columns-2 .hs-form-field {
    width: 50% !important;
  }
}
@media (min-width: 760px) {
  .hs-form fieldset.form-columns-3 .hs-form-field {
    width: 32.7% !important;
  }
}
.hs-form h6 {
  color: #cb1829;
}
.hs-form label {
  font-size: 0.875rem;
  font-weight: 500;
}
.hs-form ul {
  list-style: none;
  margin: 0;
}
.hs-form ul li {
  margin: 5px 0;
  text-indent: 0;
}
.hs-form ul li.hs-form-radio label {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.hs-form ul li.hs-form-radio label span {
  margin-top: -5px;
}
.hs-form ul li.hs-form-radio .hs-input {
  margin-right: 5px;
}
.hs-form input[type="checkbox"] {
  margin: 3px 5px 3px 0;
}
.hs-form input[type="text"],
.hs-form input[type="email"],
.hs-form input[type="file"],
.hs-form select,
.hs-form textarea {
  max-width: 100%;
}
.hs-form input[type="submit"] {
  background: #cb1829;
  border: 0;
  color: #ffffff;
  font-weight: 500;
  padding: 10px 25px;
  -webkit-transition: all .5s ease;
          transition: all .5s ease;
}
.hs-form input[type="submit"]:hover {
  background: #9d1320;
}
.hs-form .hs-fieldtype-checkbox {
  padding-left: 5px;
}
.hs-form .hs-form-checkbox-display {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  font-size: 1rem;
}
.hs-form .hs-form-required,
.hs-form .hs-error-msg {
  color: #cb1829;
  font-weight: 700;
}
.hs-form .hs-form-required {
  margin-left: 3px;
}

/* ================================
   News & Events
   ================================ */
.news-events {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  border-top: 1px solid #555555;
  clear: both;
  float: left;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  /* margin-top: 10%; */
  padding: 80px 0;
  width: 100vw;
}
@media (min-width: 760px) {
  .news-events {
    background-attachment: fixed;
  }
}
.news-events.home {
  background-image: url("../images/bg_glass.jpg");
}
.news-events.about {
  background-image: url("../images/bg-light-covers.jpg");
}
.news-events.capabilities, .news-events.custom-solutions {
  background-image: url("../images/bg-light-covers-color.jpg");
}
.news-events.catalog-solutions {
  background-image: url("../images/bg-light-covers2.jpg");
}
.news-events .col {
  width: calc(100% - 40px);
  float: left;
  margin-left: 20px;
  background: #ffffff;
  border: 1px solid #dedede;
  margin-bottom: 15px;
  padding: 20px;
}
@media (min-width: 760px) {
  .news-events .col {
    width: calc(50% - 30px);
    float: left;
    margin-left: 20px;
    border: none;
    margin-bottom: 20px;
  }
}
.news-events .col a.read-more {
  color: #555555;
  display: inline;
  margin-left: 10px;
  text-decoration: none;
}
.news-events .col a.read-more:visited {
  color: #555555;
}
.news-events .col .view-more {
  padding-top: 20px;
}
.news-events .col.short {
  -webkit-align-self: flex-start;
      -ms-flex-item-align: start;
          align-self: flex-start;
}

/* ================================
   Grids - Even-width columns
   ================================ */
.grid {
  display: grid;
  grid-template-columns: 100%;
  grid-gap: 20px;
}
@media (min-width: 480px) {
  .grid.two-cols {
    grid-template-columns: repeat(2, 47%);
  }
  .grid.four-cols {
    grid-template-columns: repeat(2, 47%);
  }
}
@media (min-width: 760px) and (min-width: 760px) {
  .grid.one-col .grid-block {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
}
@media (min-width: 760px) {
  .grid.one-col .grid-block-image-wrapper {
    width: calc(33.33333% - 26.66667px);
    float: left;
    margin-left: 20px;
    margin-left: 0;
    max-height: auto;
    position: relative;
  }
  .grid.one-col .grid-block-image-wrapper img {
    max-width: 100%;
    width: 100%;
  }
}
@media (min-width: 760px) and (min-width: 760px) {
  .grid.one-col .grid-block-image-wrapper img {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}
@media (min-width: 760px) {
  .grid.one-col .grid-block-text-container {
    width: calc(66.66667% - 33.33333px);
    float: left;
    margin-left: 20px;
  }
  .grid.three-cols {
    grid-template-columns: repeat(3, 33%);
  }
  .grid.four-cols {
    grid-template-columns: repeat(4, 1fr);
  }
  .grid.grid-gap-double {
    grid-gap: 10px;
  }
  .grid.grid-gap-triple {
    grid-gap: 20px;
  }
}
@media (min-width: 920px) {
  .grid.three-cols {
    grid-template-columns: repeat(3, 1fr);
  }
  .grid.grid-gap-double {
    grid-gap: 40px;
  }
  .grid.grid-gap-triple {
    grid-gap: 60px;
  }
}
.grid .grid-block {
  opacity: 1;
  position: relative;
  -webkit-transition: all .5s ease;
          transition: all .5s ease;
}
.grid .grid-block img {
  width: 100%;
}
.grid .grid-block a.active {
  cursor: pointer;
  display: block;
}
.grid .grid-block a:hover {
  text-decoration: none;
}
.grid .grid-block a:hover .grid-label {
  background-color: #cb1829;
}
.grid .grid-block-image-wrapper {
  overflow: hidden;
}
.grid .grid-block-number-wrapper {
  height: 35vh;
  position: relative;
}
@media (min-width: 760px) {
  .grid .grid-block-number-wrapper {
    min-height: 320px;
  }
}
.grid .grid-block-number-wrapper p {
  font-size: calc(15vw + 2vh + 2vmin);
  font-weight: 400;
  left: 50%;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.grid .grid-block-text-container {
  /* height: 100%; */
  padding: 30px 20px;
}
.grid .grid-block-text-container p {
  font-size: 1rem;
  line-height: 1.75rem;
}
@media (min-width: 760px) {
  .grid .grid-block-text-container p {
    line-height: 2.25rem;
  }
}
.grid .grid-block.fade {
  opacity: .3;
  pointer-events: none;
}
.grid .grid-block.fade:hover {
  opacity: 1;
}
.grid .grid-label {
  background-color: #555555;
  color: #ffffff;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-size: 1rem;
  font-weight: 500;
  padding: 10px;
  -webkit-transition: background-color .5s ease;
          transition: background-color .5s ease;
}
.grid .grid-caption {
  color: #000000;
  font-size: 1.125rem;
  position: absolute;
  z-index: 1;
}
.grid.grid-popup a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}
.grid.grid-popup a.active .grid-label {
  background-color: #cb1829;
}
.grid.grid-popup a:hover {
  text-decoration: none;
}

.grid-popup-info {
  grid-gap: 0;
  height: 0;
  overflow: hidden;
  pointer-events: none;
  position: absolute;
  top: 0;
  -webkit-transition: height .5s linear;
          transition: height .5s linear;
}
.grid-popup-info.show {
  display: block;
  height: 100%;
  width: 100%;
}
@media (min-width: 760px) {
  .grid-popup-info.show {
    display: grid;
    width: auto;
  }
}
.grid-popup-info .col {
  height: 0;
  overflow: hidden;
  position: relative;
}
.grid-popup-info .col.show {
  background: #ffffff;
  display: inline-block;
  height: 100vh;
  left: 0;
  overflow: scroll;
  pointer-events: auto;
  position: fixed;
  top: 0;
  z-index: 20;
  -webkit-transition: height .5s linear;
          transition: height .5s linear;
}
@media (min-width: 760px) {
  .grid-popup-info .col.show {
    height: 100%;
    position: relative;
  }
}
.grid-popup-info .col .popup-content {
  display: none;
  padding: 0 15px;
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}
.grid-popup-info .col .popup-content p {
  font-size: 1.25rem;
  line-height: 2.125rem;
}
.grid-popup-info .col .popup-content.show {
  display: block;
}
.grid-popup-info .col .close-icon > span {
  position: absolute;
  bottom: 10px;
  right: 10px;
}
.grid-popup-info .col .close-icon > span:hover .fa-window-close {
  color: #9d1320;
}
.grid-popup-info .col .close-icon > span .fa-square {
  color: #ffffff;
}
.grid-popup-info .col .close-icon > span .fa-window-close {
  color: #cb1829;
}

.layout {
  display: grid;
  grid-gap: 20px;
  grid-template-columns: repeat(12, 1fr);
  /*&.animate {
      .row {
          &:nth-child(odd) {
              .layout-block {
                  animation: slideInLeft 1.5s ease-in-out forwards;
              }
          }
          &:nth-child(even) {
              .layout-block {
                  animation: slideInRight 1.5s ease-in-out forwards;
              }
          }
      }
  }*/
}
.layout .layout-block {
  background: #ededed;
  position: relative;
  width: 100%;
}
.layout .layout-block.content {
  padding: 20px;
}
@media (min-width: 760px) {
  .layout .layout-block.content h3 {
    font-size: 1.5rem;
    margin: 0;
  }
}
@media (min-width: 920px) {
  .layout .layout-block.content h3 {
    font-size: 1.875rem;
    margin-bottom: 12px;
  }
}
.layout .layout-block.content p {
  font-size: 1rem;
  line-height: 1.875rem;
  margin: 0;
}
@media (min-width: 760px) {
  .layout .layout-block.content p {
    font-size: 0.8125rem;
    line-height: 1.375rem;
  }
}
@media (min-width: 920px) {
  .layout .layout-block.content p {
    font-size: 1rem;
    line-height: 1.875rem;
  }
}
@media (min-width: 760px) {
  .layout .layout-block-content--inner {
    padding-right: 20px;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}
.layout .layout-block img {
  height: auto;
  width: 100%;
}
.layout .row {
  display: contents;
  position: relative;
}
.layout .spacer {
  display: none;
}
@media (min-width: 760px) {
  .layout .spacer {
    background: #ffffff;
    display: block;
    grid-column: auto / span 1;
  }
}
.layout .single {
  grid-column: auto / span 6;
}
@media (min-width: 760px) {
  .layout .single {
    grid-column: auto / span 3;
  }
}
.layout .double {
  grid-column: auto / span 12;
}
@media (min-width: 760px) {
  .layout .double {
    grid-column: auto / span 6;
  }
}

/* ================================
   Accordions
   ================================ */
.accordion ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.accordion li {
  margin-bottom: 1px;
}
.accordion .accordion--button {
  position: relative;
  background: none;
  border-radius: 0;
  border: 1px solid #cb1829;
  background: #cb1829;
  color: #ffffff;
  font-weight: 500;
  padding: 1em;
  margin: 0;
  display: block;
  width: 100%;
  text-align: left;
  -webkit-transition: background .3s linear;
          transition: background .3s linear;
}
.accordion .accordion--button:hover {
  background: #9d1320;
  border: 1px solid #9d1320;
}
.accordion .accordion--button:focus {
  outline: 1px dashed rgba(0, 0, 0, 0.5);
}
.accordion .accordion--button[aria-expanded="false"]:after {
  content: "+";
  display: block;
  position: absolute;
  top: 1em;
  right: 1em;
}
.accordion .accordion--button[aria-expanded="true"] {
  background: #9d1320;
  border: 1px solid #9d1320;
}
.accordion .accordion--button[aria-expanded="true"]:after {
  content: "-";
  display: block;
  position: absolute;
  top: 1em;
  right: 1em;
}
.accordion .accordion--body {
  background: #f2f2f2;
  border: 1px solid #dedede;
  border-top: 0;
  margin-bottom: 20px;
  padding: 1em;
}
.accordion .accordion--body ul {
  list-style: none;
  margin-left: 14px;
}
.accordion .accordion--body ul li {
  text-indent: -14px;
}
.accordion .accordion--body ul li:before {
  color: #cb1829;
  content: '>';
  font-weight: 700;
  margin-right: 5px;
}
.accordion .accordion--body p {
  font-size: 1rem;
  line-height: 1.75rem;
}
.accordion .accordion--body p:empty {
  display: none;
}
.accordion .accordion--body img {
  box-shadow: 0 1px 5px rgba(204, 204, 204, 0.8);
}
.accordion .accordion--body table {
  border: 0;
  box-shadow: 0 1px 5px rgba(204, 204, 204, 0.8);
  display: block;
  overflow-x: scroll;
}
@media (max-width: 760px) {
  .accordion .accordion--body table {
    width: 100% !important;
  }
}
@media (min-width: 760px) {
  .accordion .accordion--body table {
    overflow: auto;
  }
}
@media (min-width: 1200px) {
  .accordion .accordion--body table {
    display: table;
  }
}
.accordion .accordion--body table th {
  background: #dedede;
  line-height: 1.5rem;
}
.accordion .accordion--body table th h4 {
  font-weight: 500;
  line-height: 1.5rem;
}
.accordion .accordion--body table td {
  background: #ffffff;
  font-size: 0.875rem;
}

/* ================================
   Tabs
   ================================ */
.tabbed-content {
  position: relative;
  display: block;
  width: 100%;
  float: left;
}
.tabbed-content .tabs-list {
  position: relative;
  display: block;
  width: 100%;
  float: left;
  margin-left: 0;
  margin-top: 0;
  margin: 0;
}
.tabbed-content .tabs-list li {
  list-style-type: none;
  text-align: center;
  display: block;
  float: left;
  width: 100%;
}
@media (min-width: 480px) {
  .tabbed-content .tabs-list li {
    display: inline-block;
    width: auto;
  }
}
.tabbed-content .tabs-list li.current, .tabbed-content .tabs-list li:hover, .tabbed-content .tabs-list li:focus {
  background-color: #555555;
}
.tabbed-content .tabs-list li.current a, .tabbed-content .tabs-list li:hover a, .tabbed-content .tabs-list li:focus a {
  color: #fff;
}
.tabbed-content .tabs-list li .tab {
  display: inline-block;
  padding: 1em 1.2em;
  text-align: center;
  height: 100%;
  width: 100%;
}
.tabbed-content .tab-panel {
  display: none;
}
.tabbed-content .tab-panel.current {
  clear: both;
  display: block;
  padding: 1em;
  border: 1px solid #ccc;
}

/* ================================
   Navigation
   ================================ */
.nav-mobile a {
  display: block;
}
.nav-mobile a i {
  color: #ffffff;
  font-size: 2em;
  text-shadow: 1px 2px #555555;
}
.nav-mobile a i.open {
  color: #ffffff;
}
.nav-mobile a i.close {
  color: #cb1829;
}

.nav-offcanvas {
  background: #ffffff;
  color: #464646;
  height: 100vh;
  position: fixed;
  min-width: 100%;
  top: 0;
  z-index: 45;
}
@media (min-width: 480px) {
  .nav-offcanvas {
    min-width: 50%;
  }
}
@media (min-width: 1200px) {
  .nav-offcanvas {
    min-width: 35%;
  }
}
.nav-offcanvas li {
  position: relative;
}
.nav-offcanvas#left-offcanvas {
  -webkit-transition: left 0.7s cubic-bezier(0.33, 0, 0, 0.99);
          transition: left 0.7s cubic-bezier(0.33, 0, 0, 0.99);
  left: -200%;
}
.nav-offcanvas#left-offcanvas.open {
  left: 0;
}
.nav-offcanvas#right-offcanvas {
  padding-top: 80px;
  -webkit-transition: right 0.7s cubic-bezier(0.33, 0, 0, 0.99);
          transition: right 0.7s cubic-bezier(0.33, 0, 0, 0.99);
  right: -200%;
}
@media (min-width: 480px) {
  .nav-offcanvas#right-offcanvas {
    box-shadow: 0 0 10px 1px rgba(70, 70, 70, 0.5);
    padding-top: 15px;
  }
}
.nav-offcanvas#right-offcanvas.open {
  right: 0;
}
.nav-offcanvas.open {
  top: 0;
  overflow: auto;
}
.nav-offcanvas .more-nav-trigger {
  position: absolute;
  right: 10px;
  top: 10px;
  padding: 0 0 0 80px;
  -webkit-transition: -webkit-transform .5s ease;
          transition: transform .5s ease;
}
.nav-offcanvas .more-nav-trigger .rotate {
  -webkit-transition: -webkit-transform .5s ease;
          transition: transform .5s ease;
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}
.nav-offcanvas .level-1.open {
  background: #dedede;
  -webkit-transition: background .5s ease;
          transition: background .5s ease;
}
.nav-offcanvas .level-1.open > a {
  -webkit-transition: background .5s ease;
          transition: background .5s ease;
  background: #cb1829;
  color: #ffffff;
}
.nav-offcanvas .level-1.open > a:hover {
  background: #cb1829 !important;
}
.nav-offcanvas .level-1.open a:hover {
  background: transparent;
}
.nav-offcanvas .level-1.open .more-nav-trigger i {
  color: #ffffff;
}
.nav-offcanvas .has-subnav > ul {
  max-height: 0;
  overflow: hidden;
  -webkit-transition: max-height .7s linear;
          transition: max-height .7s linear;
}
.nav-offcanvas .has-subnav > ul.active {
  max-height: 300px;
}

.nav-menu {
  display: block;
  margin: 0 8px;
}
.nav-menu .level-2 {
  background: #ddd;
}
.nav-menu.open {
  left: 0;
  top: 0;
  overflow: auto;
}
@media (min-width: 760px) {
  .nav-menu.open {
    overflow: visible;
  }
}
.nav-menu nav {
  list-style: none;
  border-bottom: 1px solid #ccc;
  margin-bottom: 12px;
}
.nav-menu nav li a {
  color: #cb1829;
  padding: 8px;
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.nav-menu nav li ul li a {
  color: #464646;
  line-height: 1.25rem;
  text-transform: none;
}
.nav-menu nav > ul {
  margin-left: 10px;
}
.nav-menu nav a:hover, .nav-menu nav a:focus, .nav-menu nav a:active {
  background: #ccc;
}
.nav-menu nav:first-of-type > ul {
  margin-top: 10px;
}

.overlay {
  position: absolute;
  opacity: 0;
  -webkit-transition: opacity 1.25s cubic-bezier(0.33, 0, 0, 0.99);
          transition: opacity 1.25s cubic-bezier(0.33, 0, 0, 0.99);
}
.overlay.visible {
  z-index: -1;
  width: 100%;
  height: 100%;
  background: black;
  opacity: .6;
  cursor: pointer;
  z-index: 21;
  position: fixed;
  top: 0;
  left: 0;
}
@media (min-width: 760px) {
  .overlay.visible {
    z-index: 40;
  }
}
.touchevents .overlay {
  cursor: pointer;
}

.disable-scroll {
  overflow: hidden;
}

/* ================================
   Footer
   ================================ */
footer {
  background: #dedede;
  border-bottom: 16px solid #cb1829;
  border-top: 4px solid #000000;
  padding-bottom: 45px;
}
@media (min-width: 760px) {
  footer {
    padding-bottom: 0;
    padding-top: 20px;
  }
}

.footer-bar {
  margin-left: -20px;
  margin-right: -20px;
  width: calc(100% + 40px);
  color: #555555;
  position: relative;
  text-transform: uppercase;
}
.footer-bar::after {
  clear: both;
  content: "";
  display: block;
}
.footer-bar p {
  display: inline;
  margin-bottom: 0;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.875rem;
}
@media (min-width: 480px) {
  .footer-bar p {
    font-size: 0.625rem;
  }
}
@media (min-width: 920px) {
  .footer-bar > .container {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.footer-left {
  width: calc(100% - 40px);
  float: left;
  margin-left: 20px;
  padding: 15px 0 10px 0;
}
@media (min-width: 760px) {
  .footer-left {
    padding: 0;
  }
}
@media (min-width: 920px) {
  .footer-left {
    width: calc(66.66667% - 33.33333px);
    float: left;
    margin-left: 20px;
  }
}
@media (min-width: 1200px) {
  .footer-left {
    width: calc(54.16667% - 30.83333px);
    float: left;
    margin-left: 20px;
  }
}
.footer-left a {
  color: #555555;
  font-size: 1rem;
  text-decoration: none;
}
@media (min-width: 480px) {
  .footer-left a {
    font-size: 0.625rem;
  }
}
.footer-left a:visited {
  color: #555555;
}
.footer-left a:hover {
  text-decoration: underline;
}
.footer-left address {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}
.footer-left address p {
  text-align: center;
  width: 100%;
}
@media (min-width: 480px) {
  .footer-left address {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .footer-left address p {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin: 0;
    text-align: left;
    width: auto;
  }
  .footer-left address p:after {
    content: '|';
    margin: 0 20px;
    display: inline-block;
  }
  .footer-left address p:last-of-type {
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    margin-right: 0;
  }
  .footer-left address p:last-of-type:after {
    content: '';
    display: none;
  }
}
@media (min-width: 920px) {
  .footer-left address {
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}

.footer-right {
  width: calc(100% - 40px);
  float: left;
  margin-left: 20px;
  padding: 10px 0;
  text-align: center;
}
@media (min-width: 920px) {
  .footer-right {
    width: calc(41.66667% - 28.33333px);
    float: left;
    margin-left: 20px;
    margin-left: 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 0;
    text-align: left;
  }
}
@media (min-width: 1200px) {
  .footer-right {
    width: calc(45.83333% - 29.16667px);
    float: left;
    margin-left: 20px;
  }
}
.footer-right ul {
  margin: 0;
}
.footer-right ul li {
  display: inline;
}
.footer-right ul li a {
  color: #cb1829;
  font-size: 2.5rem;
}
@media (min-width: 760px) {
  .footer-right ul li a {
    font-size: 1.625rem;
  }
}
.footer-right ul li a .fa-inverse {
  opacity: 0;
  -webkit-transition: opacity .3s ease;
          transition: opacity .3s ease;
}
.footer-right ul li a:hover {
  text-decoration: none;
}
.footer-right ul li a:hover .fa-inverse {
  opacity: 1;
}
.footer-right .iso-logo {
  max-width: 80px;
}

.footer-copyright {
  color: #000000;
  padding: 0 0 10px 0;
  text-align: right;
}
.footer-copyright--inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (min-width: 760px) {
  .footer-copyright--inner {
    width: calc(41.66667% - 28.33333px);
    float: left;
    margin-left: 20px;
    margin-left: calc(58.33333% - 31.66667px + 40px);
    padding-top: 10px;
  }
}
@media (min-width: 1200px) {
  .footer-copyright--inner {
    float: right;
    margin: 0;
    width: calc(25% - 25px);
  }
}
.footer-copyright a {
  color: #000000;
  font-weight: 400;
  text-decoration: none;
}
.footer-copyright a:hover {
  text-decoration: underline;
}
.footer-copyright p {
  line-height: initial;
}
.footer-copyright p,
.footer-copyright nav {
  display: inline-block;
  font-size: 0.75rem;
  margin: 0;
  width: 100%;
}
@media (min-width: 760px) {
  .footer-copyright p,
  .footer-copyright nav {
    font-size: 0.5625rem;
  }
}
.footer-copyright nav ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0;
}
@media (min-width: 760px) {
  .footer-copyright nav ul {
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.footer-copyright nav ul li {
  display: inline;
  line-height: 0.9375rem;
  margin: 0 10px;
  text-align: center;
}
.footer-copyright nav ul li:first-of-type {
  margin-left: 0;
}
.footer-copyright nav ul li:last-of-type {
  margin-right: 0;
}
@media (min-width: 760px) {
  .footer-copyright nav ul li {
    margin: 0;
  }
}
.footer-copyright--design {
  margin: 20px 0 0;
  text-align: center;
}
@media (min-width: 760px) {
  .footer-copyright--design {
    text-align: right;
  }
}
@media (min-width: 1200px) {
  .footer-copyright--design {
    float: left;
    margin: 0;
    text-align: left;
    width: calc(75% - 35px);
  }
}
.footer-copyright--design a {
  text-decoration: underline;
}
.footer-copyright--design p {
  line-height: 1.5;
}

/* ================================
   AddThis - Social Share
   ================================*/
.addthis_toolbox {
  margin-bottom: 24px;
  font-size: 13px;
  color: #555555;
}
@media (min-width: 760px) {
  .addthis_toolbox {
    text-align: left;
  }
}
.addthis_toolbox .share, .addthis_toolbox .label, .addthis_toolbox .date-divider, .addthis_toolbox .date {
  display: block;
  margin-bottom: 10px;
}
@media (min-width: 760px) {
  .addthis_toolbox .share, .addthis_toolbox .label, .addthis_toolbox .date-divider, .addthis_toolbox .date {
    display: inline-block;
    margin-bottom: 0;
  }
}
.addthis_toolbox .share {
  padding-right: 10px;
  display: block;
}
.addthis_toolbox .share .label {
  color: #cb1829;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0;
  display: block;
}
@media (min-width: 760px) {
  .addthis_toolbox .share .label {
    padding-right: 10px;
  }
}
.addthis_toolbox .share ul {
  display: inline-block;
  list-style: none;
  padding-left: 0;
  margin: 10px 0;
}
.addthis_toolbox .share li {
  overflow: hidden;
  display: inline-block;
  padding-bottom: 0;
  vertical-align: text-bottom;
  -webkit-transition: all 200ms cubic-bezier(0.33, 0.66, 0.66, 1);
          transition: all 200ms cubic-bezier(0.33, 0.66, 0.66, 1);
}
.addthis_toolbox .share li:hover, .addthis_toolbox .share li:focus {
  -webkit-transform: translate3d(0, -3px, 0);
          transform: translate3d(0, -3px, 0);
}
.addthis_toolbox .date-divider {
  display: none;
}
@media (min-width: 760px) {
  .addthis_toolbox .date-divider {
    display: inline-block;
    padding-right: 10px;
  }
}

.page-node-type-universal-page .addthis_toolbox {
  margin-left: calc(8.33333% - 21.66667px + 40px);
  float: left;
  margin-top: 50px;
}
.page-node-type-universal-page .addthis_toolbox .share-sprite {
  font-size: 2.25rem;
}

.share-sprite {
  color: #cb1829;
  font-size: 1.5rem;
  padding-right: 5px;
  display: block;
}

.lt-ie9 .share-facebook {
  background: url("/assets/images/CMU_icons_ie8.png") -438px 48px;
}
.lt-ie9 .share-googleplus {
  background: url("/assets/images/CMU_icons_ie8.png") -474px 48px;
}
.lt-ie9 .share-twitter {
  background: url("/assets/images/CMU_icons_ie8.png") -510px 48px;
}
.lt-ie9 .share-pinterest {
  background: url("/assets/images/CMU_icons_ie8.png") -545px 48px;
}
.lt-ie9 .share-linkedin {
  background: url("/assets/images/CMU_icons_ie8.png") -580px 48px;
}

/*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */
@media print {
  *,
  *:before,
  *:after {
    background: transparent !important;
    color: #000 !important;
    box-shadow: none !important;
    text-shadow: none !important;
  }

  a,
  a:visited {
    text-decoration: underline;
  }

    /*a[href]:after {
        content: " (" attr(href) ")";
    }

    abbr[title]:after {
        content: " (" attr(title) ")";
    }*/
  a[href^="#"]:after,
  a[href^="javascript:"]:after {
    content: "";
  }

  img, p {
    page-break-inside: avoid;
  }

  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }

  thead {
    display: table-header-group;
  }

  tr,
  img {
    page-break-inside: avoid;
  }

  img {
    max-width: 100% !important;
  }

  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }

  h2,
  h3 {
    page-break-after: avoid;
  }

  @page {
    size: auto;
    /* auto is the initial value */
    /* this affects the margin in the printer settings */
    margin: 25mm 0mm 25mm 0mm;
  }
}
/* Custom Print Styles */
@media print {
  * {
    color: black !important;
  }

  h1, h2, h3, h4, h5, h6 {
    color: black !important;
  }

  .main-body {
    width: 100%;
  }

  header,
  footer,
  .side-column,
  .back-to-top,
  .mobile-side-nav {
    display: none !important;
  }
}
/*! Color themes for Google Code Prettify | MIT License | github.com/jmblog/color-themes-for-google-code-prettify */
.prettyprint {
  background: #efecf4;
  font-family: Menlo, "Bitstream Vera Sans Mono", "DejaVu Sans Mono", Monaco, Consolas, monospace;
  font-size: 14px;
  border: 0 !important;
  padding: 20px;
  overflow: scroll;
}

.pln {
  color: #19171c;
}

/* Specify class=linenums on a pre to get line numbering */
ol.linenums {
  margin-top: 0;
  margin-bottom: 0;
  color: #7e7887;
}

li.L0,
li.L1,
li.L2,
li.L3,
li.L4,
li.L5,
li.L6,
li.L7,
li.L8,
li.L9 {
  padding-left: 1em;
  background-color: #efecf4;
  list-style-type: decimal;
}

@media screen {
  /* string content */
  .str {
    color: #2a9292;
  }

  /* keyword */
  .kwd {
    color: #955ae7;
  }

  /* comment */
  .com {
    color: #7e7887;
  }

  /* type name */
  .typ {
    color: #576ddb;
  }

  /* literal value */
  .lit {
    color: #aa573c;
  }

  /* punctuation */
  .pun {
    color: #19171c;
  }

  /* lisp open bracket */
  .opn {
    color: #19171c;
  }

  /* lisp close bracket */
  .clo {
    color: #19171c;
  }

  /* markup tag name */
  .tag {
    color: #be4678;
  }

  /* markup attribute name */
  .atn {
    color: #aa573c;
  }

  /* markup attribute value */
  .atv {
    color: #398bc6;
  }

  /* declaration */
  .dec {
    color: #aa573c;
  }

  /* variable name */
  .var {
    color: #be4678;
  }

  /* function name */
  .fun {
    color: #576ddb;
  }
}
/* ================================
   Grid Overlay
   ================================ */
.grid-overlay {
  width: 100%;
  min-height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  display: none;
}
.grid-overlay.visible {
  display: block;
}
.grid-overlay .row {
  margin-left: -20px;
  margin-right: -20px;
  width: calc(100% + 40px);
  min-height: 100vh;
}
.grid-overlay .grid-element {
  width: calc(8.33333% - 21.66667px);
  float: left;
  margin-left: 20px;
  background: rgba(0, 0, 255, 0.125);
  min-height: 100vh;
}

.grid-trigger {
  position: fixed;
  bottom: 1.5em;
  right: 2em;
  z-index: 1001;
  text-transform: uppercase;
  display: inline-block;
  padding: 8px 16px;
  line-height: 1.125;
  font-weight: normal;
  background-color: blue !important;
  border: 0;
  border-radius: 8px;
  margin-bottom: 0;
  color: #fff;
  opacity: 0.5;
}
.grid-trigger.activate {
  opacity: 1;
}
