@charset "UTF-8";
/*------------------------------------------*\

    fonts.scss

\*------------------------------------------*/
@font-face {
  font-family: "icomoon";
  src: url("../fonts/icomoon.eot?wdr29m");
  src: url("../fonts/icomoon.eot?wdr29m#iefix") format("embedded-opentype"), url("../fonts/icomoon.ttf?wdr29m") format("truetype"), url("../fonts/icomoon.woff?wdr29m") format("woff"), url("../fonts/icomoon.svg?wdr29m#icomoon") format("svg");
  font-weight: normal;
  font-style: normal;
}
/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes rotating {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.a-rotate {
  animation: rotating 1.5s linear infinite;
}

/* Themes */
/* Site properties */
/* Overall site settings */
/* Animations */
/* Typography */
/* Spacing */
/* Color */
/* Forms */
/* Graphical ornaments */
/* Screen sizes */
/* Media ratios */
/* Z-index */
/* Buttons */
/* Fields */
/* Sidebar on map */
/* Mobile Menu */
/* Modal Windows */
/* Tags */
/* Orientation */
/* Framework */
/* Old IE -- Don't touch */
/*------------------------------------------*\

    bold.scss

    A mixin for setting the font weight to
    bold. Allows control over the font-family

\*------------------------------------------*/
/*------------------------------------
	BACKGROUND
*/
/*------------------------------------
	# BORDER
	http://davidtheclark.github.io/scut/#border
*/
/*------------------------------------
	# BORDER RADIUS

	Short hand for putting rounded corners on a side of an element

		@include border-top-radius(20px);
*/
/*------------------------------------
	CLEARFIX
	From http://nicolasgallagher.com/micro-clearfix-hack/
*/
/*------------------------------------
	# FONT FACE

	Shorthand for including @font-face in your css.
	Remember also, Google fonts, Typekit have different approaches.

	Example:
		@include font-face(proxima-nova, /fonts/proxima-nova-bold-italic, bold, italic);

 	Order of the includes matters, and it is: normal, bold, italic, bold+italic.
*/
/*------------------------------------
	FONT-SIZE
*/
/*------------------------------------
	# HIDE-TEXT

	Hide-text is an image replacement mixin. It is based off the HTML5-Boilerplate image-replacement.
*/
/*------------------------------------
	LINK
*/
/*------------------------------------*\

	MEDIA BOX

	Used to constrain the proportions of an element with a set width
	like an iframe.

	Should be applied to a parent container with the media element nested.

	e.g. <div class="video-wrapper">
			<iframe></iframe>
		</div>

	- landscape
	- square
	- portrait
	- widescreen

/*------------------------------------*/
/*------------------------------------
	# OFF-CANVAS

	Throw and element off the page.
	This makes it still accessible by screen-readers, labels etc.
	But doesn't appear on the UI
*/
/*------------------------------------
	OLD-IE
*/
/*------------------------------------
	Position
*/
/*------------------------------------
	RESOLUTIONS
	@include screen-size();
*/
/*------------------------------------
	TABLES
*/
/*------------------------------------------*\

   Use

   @include triangle(direction, width, height, color);

   $sizeW - Width of triangle
   $sizeH - Height of triangle

\*------------------------------------------*/
/*------------------------------------
	VERTICAL-SPACING (Consistent spacing)
*/
/*------------------------------------*\

   	BUTTON

	Button options and styles can be changed in _config.scss
	under the *Buttons*.

	Options include:

	$button-font-family
	$has-button-border
	$has-button-gradient
	$has-button-shadow
	$is-button-rounded

	/ref/patterns.php#buttons

/*------------------------------------*/
/*

    ELEMENTS
    Combines the Normalize (git.io/normalize)
    and the reset at
    csswizardry.com/2011/10/reset-restarted
    with GCD's own preferences

*/
/*------------------------------------
	HTML5 BLOCK ELEMENTS
	Correct `block` display not defined in IE 8/9.
*/
article,
figcaption,
figure,
footer,
header,
main,
nav,
section {
  display: block;
}

/*------------------------------------
	HTML5 INLINE BLOCK ELEMENTS
	Correct `block` display not defined in IE 8/9.
*/
canvas,
video {
  display: inline-block;
  max-width: 100%;
}

/*------------------------------------
	Address styling not present in IE 8/9.
*/
[hidden] {
  display: none;
}

/*--------------------------------------
	BOX MODEL
	This works for IE8 and above.
	For IE7, there'll need to be tweaks
*/
/**
* Let’s make the box model all nice, shall we...?
*/
*, *:before, *:after {
  box-sizing: border-box;
}

/*------------------------------------
	Remove margins and padding
*/
body, h1, h2, h3, h4, h5, h6,
dl, dd, ol, ul,
p, blockquote, pre,
table, th, td, caption,
form, fieldset, legend,
hr {
  margin: 0;
  padding: 0;
}

/*------------------------------------
	HTML & BODY
*/
html {
  font-size: 17px;
  font-size: 17px;
  font-family: Roboto, BlinkMacSystemFont, sans-serif;
  font-size-adjust: none;
  line-height: 1.2705882353;
  min-height: 100%;
  height: 100%;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -moz-osx-font-smoothing: grayscale;
  color: #4a4a4a;
  -webkit-font-smoothing: antialiased;
}

body {
  color: #4a4a4a;
  height: 100%;
  font-feature-settings: "lnum" 1;
  -webkit-font-feature-settings: "lnum";
  -moz-font-feature-settings: "lnum";
  -ms-font-feature-settings: "lnum";
  font-variant-numeric: lining-nums;
  text-rendering: optimizeLegibility;
}

#root {
  height: 100%;
}

/*------------------------------------
	SITE DIRECTION
	This should very rarely be touched
*/
/*------------------------------------
	Links
*/
a {
  color: #4a4a4a;
  cursor: pointer;
  text-decoration: none;
}
a:hover {
  color: #7d7d7d;
}
a:visited {
  color: #4a4a4a;
  opacity: 0.8;
}
a:active {
  color: #4a4a4a;
}
a:focus {
  outline: thin dotted #e8e8e8;
}
a:active, a:hover {
  outline: 0;
}
a:hover, a:active, a:focus {
  text-decoration: underline;
}

/*------------------------------------
	Headings
*/
h1, h2, h3, h4, h5 {
  font-weight: 900;
  font-size: inherit;
}

/*------------------------------------
	Lists

	- lists are inline by default
*/
ul, ol {
  list-style: none;
  padding: 0;
  margin-left: 0;
  line-height: 29.16px;
}

dt {
  font-weight: 900;
  line-height: 29.16px;
  margin-top: 8px;
}
dt:first-child {
  margin-top: 0;
}

/*------------------------------------
	Form
*/
/* fieldset */
fieldset {
  border: 0;
}

/* label */
label {
  cursor: pointer;
  display: inline;
}
label input {
  margin-right: 8px;
}

label.is-required:after {
  content: "*";
}

/* input */
button,
input,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  text-rendering: optimizeLegibility;
  margin: 0;
}
button::-moz-focus-inner,
input::-moz-focus-inner,
select::-moz-focus-inner,
textarea::-moz-focus-inner {
  margin-top: -2px;
}

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

button,
select {
  text-transform: none;
}

/* textarea */
textarea {
  overflow: auto;
  vertical-align: top;
}
textarea:focus, textarea:active {
  cursor: text;
}

/*------------------------------------
	Inline Elements
*/
b, strong {
  font-weight: 900;
}

i, em {
  font-style: italic;
}
i i, i em, em i, em em {
  font-style: normal;
}

/*------------------------------------
	Media
*/
img {
  border: 0;
  font-style: italic;
  max-width: 100%;
}

figure {
  margin: 0;
}

/*------------------------------------
	Table
*/
table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
}

th {
  text-align: left;
  vertical-align: bottom;
}

td {
  vertical-align: top;
}

.disable-hover,
.disable-hover * {
  pointer-events: none !important;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes rotating {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.a-rotate {
  animation: rotating 1.5s linear infinite;
}

/*------------------------------------------*\

    _o-box.scss

    Abstract object which contains a clearfix
    and some padding

    @namespace  .o-
    @parent     .o-box

\*------------------------------------------*/
.o-box {
  *zoom: 1;
  padding-top: 16px;
  padding-right: 16px;
  padding-bottom: 16px;
  padding-left: 16px;
  display: block;
}
.o-box:after {
  content: "";
  display: table;
  clear: both;
}
@media only screen and (min-width: 769px) {
  .o-box\@m {
    *zoom: 1;
    padding-top: 16px;
    padding-right: 16px;
    padding-bottom: 16px;
    padding-left: 16px;
    display: block;
  }
  .o-box\@m:after {
    content: "";
    display: table;
    clear: both;
  }
}
@media only screen and (min-width: 991px) {
  .o-box\@l {
    *zoom: 1;
    padding-top: 16px;
    padding-right: 16px;
    padding-bottom: 16px;
    padding-left: 16px;
    display: block;
  }
  .o-box\@l:after {
    content: "";
    display: table;
    clear: both;
  }
}
@media only screen and (min-width: 769px) {
  .o-box {
    padding-top: 24px;
    padding-right: 24px;
    padding-bottom: 24px;
    padding-left: 24px;
  }
}

.o-box-small {
  padding-top: 12.3076923077px;
  padding-right: 12.3076923077px;
  padding-bottom: 12.3076923077px;
  padding-left: 12.3076923077px;
}

.o-grid {
  margin-right: -8px;
  margin-left: -8px;
  display: flex;
  flex-wrap: wrap;
}
.o-grid > * {
  padding-left: 8px;
  padding-right: 8px;
  width: 100%;
}

.o-grid--small {
  margin-top: -4px;
  margin-right: -8px;
  margin-left: -8px;
}
.o-grid--small > * {
  padding-left: 4px;
  padding-right: 4px;
  margin-top: 4px;
  margin-bottom: 4px;
}

.o-grid--tight {
  margin-top: 0;
  margin-right: 0;
  margin-left: 0;
}
.o-grid--tight > * {
  margin-top: 0;
  padding: 0;
}

.o-grid--loose {
  margin-top: -32px;
  margin-right: -16px;
  margin-left: -16px;
}
.o-grid--loose > * {
  padding-left: 16px;
  padding-right: 16px;
  margin-top: 32px;
}

.o-grid--1 > * {
  flex: 0 0 100%;
  max-width: 100%;
}

.o-grid--2 > * {
  flex: 0 0 50%;
  max-width: 50%;
}

.o-grid--3 > * {
  flex: 0 0 33.3333333333%;
  max-width: 33.3333333333%;
}

.o-grid--4 > * {
  flex: 0 0 25%;
  max-width: 25%;
}

.o-grid--5 > * {
  flex: 0 0 20%;
  max-width: 20%;
}

.o-gap {
  gap: 1rem;
}

.o-flex {
  display: flex;
  justify-content: space-between;
}
@media only screen and (min-width: 321px) {
  .o-flex\@s {
    display: flex;
    justify-content: space-between;
  }
}
@media only screen and (min-width: 769px) {
  .o-flex\@m {
    display: flex;
    justify-content: space-between;
  }
}
@media only screen and (min-width: 991px) {
  .o-flex\@l {
    display: flex;
    justify-content: space-between;
  }
}

.o-flex--inline {
  justify-content: flex-start;
}

.o-flex--align-end {
  align-items: flex-end;
}

.o-flex--align-middle {
  align-items: center;
}

.o-flex--align-baseline {
  align-items: baseline;
}

.o-flex--space-around {
  justify-content: space-around;
}

.o-flex--space-between {
  justify-content: space-between;
}

.o-flex--justify-end {
  justify-content: flex-end;
}

.o-flex--justify-start {
  justify-content: flex-start;
}

.o-flex--justify-center {
  justify-content: center;
}

.o-flex--wrap {
  flex-wrap: wrap;
}

.o-flex--column {
  flex-direction: column;
}
@media only screen and (max-width: 769px) {
  .o-flex--column\@m- {
    flex-direction: column;
  }
}

.o-flex--column-reverse {
  flex-direction: column-reverse;
}
@media only screen and (max-width: 769px) {
  .o-flex--column-reverse\@m- {
    flex-direction: column-reverse;
  }
}

.o-flex__item {
  flex: 1 1 auto;
}
.o-flex__item.dont-grow {
  flex-grow: 0;
}
.o-flex__item.dont-shrink {
  flex-shrink: 0;
}
.o-flex__item.u-1\/2 {
  flex-basis: 50%;
}

/*scss/objects/_o-type.scss*/
.o-type {
  display: block;
}

.o-type--normal {
  font-weight: 400;
  font-family: Roboto, BlinkMacSystemFont, sans-serif;
}

.o-type--upper-title {
  font-weight: 900;
  text-transform: uppercase;
  font-size: 19px;
}

.o-type---small {
  font-size: 15px;
  text-transform: uppercase;
}

.o-type--light-tiny {
  color: #969696;
  font-size: 12px;
  text-transform: uppercase;
}

.o-type--big-red {
  font-size: 25px;
  color: #ce0909;
  font-family: Roboto, BlinkMacSystemFont, sans-serif;
  font-weight: 900;
}

.o-type--very-large {
  font-size: 36px;
}
@media only screen and (min-width: 769px) {
  .o-type--very-large {
    font-size: 59px;
  }
}

.o-type--large-subtitle {
  font-size: 21px;
}
@media only screen and (min-width: 769px) {
  .o-type--large-subtitle {
    font-size: 30px;
  }
}

.o-type--detail {
  font-weight: bold;
  color: #ce0909;
}

.o-type--custom-field {
  font-size: 14px;
  font-weight: normal;
}

/*------------------------------------------*\

    _o-layout.scss

    Abstract object which helps create
    a simple grid layout.
    This helps define rows and items.
    Widths are defined using utility classes
    (see u-fractions)

    @namespace  .o-
    @parent     .o-layout
    @children   .o-layout__item
                .o-layout__filler
    @variations .o-layout--fixed
                .o-layout--flex

\*------------------------------------------*/
.o-layout {
  *zoom: 1;
  font-size: 17px;
  margin-left: -16px;
}
.o-layout:after {
  content: "";
  display: table;
  clear: both;
}

.o-layout--fixed {
  margin-left: 0;
}

.o-layout--tight {
  margin-left: 0;
}
.o-layout--tight > .o-layout__item {
  padding-left: 0;
}

.o-layout--loose {
  margin-left: -32px;
}
.o-layout--loose > .o-layout__item {
  padding-left: 32px;
}

.o-layout__item {
  font-size: 17px;
  font-size: 17px;
  padding-left: 16px;
  vertical-align: top;
  width: 100%;
  letter-spacing: 0;
  word-spacing: 0;
  float: left;
}

.o-layout--small-padding {
  margin-left: -8px;
}
.o-layout--small-padding > .o-layout__item {
  padding-left: 8px;
}

.o-layout__filler {
  overflow: hidden;
}

.o-project__sidebar {
  position: absolute;
  top: 0px;
  bottom: 0px;
  width: 340px;
  overflow: auto;
  border-right: 1px solid #e8e8e8;
  height: calc(100vh - 180px);
}

.o-project__details {
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  margin-left: 340px;
  margin-right: 340px;
  overflow: auto;
  height: calc(100vh - 180px);
}
.o-project__details.no-right-sidebar {
  margin-right: 0;
}

.o-project.no-breadcrumb .o-project__details, .o-project.no-breadcrumb .o-project__sidebar {
  height: calc(100vh - 132px);
}

.l-login {
  max-width: 320px;
  margin: 0 auto;
  width: 100%;
}

/*scss/objects/_o-media.scss*/
.o-media {
  *zoom: 1;
}
.o-media:after {
  content: "";
  display: table;
  clear: both;
}
.o-media .o-media__image {
  font-size: 0;
  float: left;
  margin-right: 16px;
}

.o-media--reverse {
  *zoom: 1;
}
.o-media--reverse:after {
  content: "";
  display: table;
  clear: both;
}
.o-media--reverse .o-media__image {
  font-size: 0;
  float: right;
  margin-left: 16px;
}

.o-media__body {
  overflow: hidden;
}

/*------------------------------------------*\

    _o-wrap.scss

    Abstract object which acts as an outer
    container for an element or group of elements.
    This object sets a width (if set in config)
    and centers it using margin: auto
    It also adds padding left and right.

    @namespace  .o-
    @parent     .o-wrap

\*------------------------------------------*/
.o-wrap {
  max-width: 100%;
  width: 1120px;
  margin-left: auto;
  margin-right: auto;
}

@media only screen and (min-width: 991px) {
  .o-wrap--bordered {
    border-right: 1px solid #e8e8e8;
    border-left: 1px solid #e8e8e8;
  }
}

.o-wrap--narrow {
  width: 861.5384615385px !important;
}

.o-wrap--max-narrow {
  width: 100%;
  max-width: 662.7218934911px !important;
}

.o-wrap--brochure.is-loading {
  position: relative;
}

/*------------------------------------------*\

    _c-alert.scss

    Alert messages that appear on validation
    or for notifications.

    @namespace  .c-
    @parent     .c-alert
    @variations .c-alert--error
    			.c-alert--warning
    			.c-alert--success

\*------------------------------------------*/
.c-alert {
  padding: 16px;
  margin-bottom: 16px;
  background-color: #f3f3f3;
  background-color: rgba(243, 243, 243, 0.9);
  border: 2px solid #e6e6e6;
  border-radius: 4px;
}
.c-alert .c-icon {
  margin-right: 16px;
}
.c-alert.is-valid {
  display: none;
}
.c-alert.is-missing {
  display: block !important;
}

.c-alert--error {
  background-color: #ce0909;
  color: #ffffff;
  background-color: rgba(206, 9, 9, 0.9);
  border: 2px solid #b60808;
}
.c-alert--error a, .c-alert--error a:visited, .c-alert--error:visited {
  color: #ffffff;
}

.c-alert--warning {
  background-color: #f0b100;
  color: #ffffff;
  background-color: rgba(240, 177, 0, 0.9);
  border: 2px solid #d79e00;
}
.c-alert--warning a, .c-alert--warning a:visited, .c-alert--warning:visited {
  color: #ffffff;
}

.c-alert--success {
  background-color: #42b655;
  color: #ffffff;
  background-color: rgba(66, 182, 85, 0.9);
  border: 2px solid #3ba34c;
}
.c-alert--success a, .c-alert--success a:visited, .c-alert--success:visited {
  color: #ffffff;
}

/*------------------------------------------*\

    _breadcrumb.scss

    Breadcrumb.


    @namespace  .c-
    @parent     .c-breadcrumb

\*------------------------------------------*/
.c-breadcrumb {
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 900;
}

.c-breadcrumb__item {
  padding: 0 8px;
  color: rgba(150, 150, 150, 0.6) !important;
  display: inline-block;
  position: relative;
}
.c-breadcrumb__item:first-of-type {
  padding-left: 0px;
}

.c-breadcrumb__item-current {
  color: #ce0909;
  padding-left: 8px;
}

/*------------------------------------------*\

    _button.scss

    Global buttons.


    @namespace  .c-
    @parent     .c-button
    @variations .c-button--primary
                .c-button--secondary
                .c-button--ghost
                .c-button--text
                .c-button--small
                .c-button--large

\*------------------------------------------*/
.c-button {
  padding-top: 0;
  padding-bottom: 0;
  padding-left: 16px;
  padding-right: 16px;
  appearance: none;
  cursor: pointer;
  display: inline-block;
  font-family: Roboto, BlinkMacSystemFont, sans-serif;
  line-height: 42px;
  min-height: 46px;
  white-space: nowrap;
  -webkit-appearance: none;
  outline: none;
  font-weight: 900;
  font-size: 12px;
  letter-spacing: 1.5;
  text-transform: uppercase;
  border-radius: 200px;
  background: #CE0909;
  border-color: #c40909;
  color: white;
  border: 2px solid;
  border-color: #b60808;
  user-select: none;
  transition: all 0.2s ease;
}
.c-button:hover {
  box-shadow: 0px 4px 14px rgba(0, 0, 0, 0.3);
}
.c-button:hover, .c-button:active, .c-button:focus, .c-button:target {
  text-decoration: none;
}
.c-button[disabled] {
  box-shadow: none;
  cursor: not-allowed;
  opacity: 0.5;
}
.c-button:hover {
  border-color: #930606;
}
.c-button:visited {
  color: white;
}
.c-button:hover {
  color: white;
}
.c-button:active {
  background: #850606;
  color: white;
}
.c-button[disabled] {
  background: #CE0909;
}
.c-button[disabled]:hover, .c-button[disabled]:active {
  background: #CE0909;
}

.c-button--light {
  background: #e8e8e8;
  border-color: #e3e3e3;
  color: dimgray;
}
.c-button--light:hover {
  border-color: #c9c9c9;
}
.c-button--light:visited {
  color: dimgray;
}
.c-button--light:hover {
  color: #4f4f4f;
}
.c-button--light:active {
  background: #c2c2c2;
  color: #363636;
}
.c-button--light[disabled] {
  background: #e8e8e8;
}
.c-button--light[disabled]:hover, .c-button--light[disabled]:active {
  background: #e8e8e8;
}

.c-button--text {
  padding-top: 0;
  padding-bottom: 0;
  padding-left: 16px;
  padding-right: 16px;
  appearance: none;
  cursor: pointer;
  display: inline-block;
  font-family: Roboto, BlinkMacSystemFont, sans-serif;
  line-height: 42px;
  min-height: 46px;
  white-space: nowrap;
  -webkit-appearance: none;
  outline: none;
  font-weight: 900;
  font-size: 12px;
  letter-spacing: 1.5;
  text-transform: uppercase;
  border-radius: 200px;
  background: none;
  color: #4a4a4a !important;
  box-shadow: none !important;
  border: 2px solid rgba(0, 0, 0, 0);
}
.c-button--text:hover {
  box-shadow: 0px 4px 14px rgba(0, 0, 0, 0.3);
}
.c-button--text:hover, .c-button--text:active, .c-button--text:focus, .c-button--text:target {
  text-decoration: none;
}
.c-button--text[disabled] {
  box-shadow: none;
  cursor: not-allowed;
  opacity: 0.5;
}
.c-button--text:hover {
  border: 2px solid #4a4a4a;
}

.c-button--long {
  display: block;
  text-align: center;
  width: 100%;
}

.c-button--small {
  padding-left: 8px;
  padding-right: 8px;
  font-size: 12px;
  line-height: 29.3333333333px;
  min-height: 29.3333333333px;
  text-transform: uppercase;
}

.c-button--with-icon {
  position: relative;
}
.c-button--with-icon .c-icon {
  display: none;
}
.c-button--with-icon:hover {
  padding-right: 48px;
}
.c-button--with-icon:hover .c-icon {
  position: absolute;
  top: 0px;
  right: 16px;
  opacity: 0;
  opacity: 1 \9 ; /*just in case ie*/
  animation: fadeIn ease-in 1;
  animation-fill-mode: forwards;
  animation-duration: 0.3s;
  display: block;
}

.pager {
  padding-top: 8px;
  padding-right: 8px;
  padding-bottom: 8px;
  padding-left: 8px;
  background-color: rgba(232, 232, 232, 0.2);
  display: inline-block;
  border-radius: 4px;
}

.pages > * {
  display: inline-block;
  vertical-align: middle;
}
.pages a {
  padding-top: 8px;
  padding-bottom: 8px;
  padding-left: 10.6666666667px;
  padding-right: 10.6666666667px;
  line-height: 1;
  border-radius: 4px;
}
.pages a:hover, .pages a:visited:hover {
  background-color: #e8e8e8;
}
.pages a:hover, .pages a:active, .pages a:focus {
  text-decoration: none;
}
.pages a.selected {
  background-color: #4a4a4a;
  color: white;
  cursor: default;
}
.pages a.selected:hover {
  background-color: rgba(232, 232, 232, 0.2);
}
.pages a.selected:hover {
  background-color: #4a4a4a;
}
.pages > * + * {
  margin-left: 5.3333333333px;
}
.pages .pager-buffer {
  opacity: 0.5;
}

button.c-close-dialog {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}

/*------------------------------------*\

   	DATEPICKER

/*------------------------------------*/
.ui-datepicker {
  padding-top: 10.6666666667px;
  padding-right: 10.6666666667px;
  padding-bottom: 10.6666666667px;
  padding-left: 10.6666666667px;
  margin-top: 8px;
  margin-left: -8px;
  background: #4a4a4a;
  border-radius: 2px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
  color: #636363;
  display: none;
}
.ui-datepicker a {
  color: white;
}
.ui-datepicker table {
  color: #636363;
  max-width: 100%;
  table-layout: fixed;
  width: 256px;
}
.ui-datepicker table th, .ui-datepicker table td {
  padding-top: 2px;
  padding-bottom: 2px;
  text-align: center;
}
.ui-datepicker .ui-datepicker-next {
  float: right;
}
.ui-datepicker .ui-datepicker-prev {
  float: left;
}
.ui-datepicker .ui-datepicker-title {
  font-weight: bold;
  margin-bottom: 8px;
  text-align: center;
}

.ui-datepicker .ui-datepicker-title {
  color: rgba(255, 255, 255, 0.5);
}

.ui-datepicker-calendar th {
  color: rgba(255, 255, 255, 0.5);
}

/*------------------------------------------*\

    _c-dropdown.scss

    Dropdown modules used throughout the site

    @namespace  .c-
    @parent     .c-dropdown

\*------------------------------------------*/
.c-dropdown {
  background-color: #ffffff;
  box-shadow: 0px 4px 14px rgba(0, 0, 0, 0.3);
  position: absolute;
  z-index: 7000;
  left: -1px;
  border-radius: 6px;
  width: 320px;
  line-height: 21.6px;
}

.c-dropdown--search {
  width: 320px;
  border: 1px solid #e8e8e8;
  top: calc(100% + 8px);
  overflow-y: auto;
  max-height: 700px;
}
.c-dropdown--search:before, .c-dropdown--search:after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  z-index: 1;
  border-width: 0 8px 8px 8px;
  border-color: transparent transparent #ffffff transparent;
  position: absolute;
  top: -8px;
  margin-left: 0px;
  left: 10%;
}
.c-dropdown--search:before {
  border-width: 0 10px 10px 10px;
  border-color: transparent transparent #e8e8e8 transparent;
  margin-left: -2px;
  top: -10px;
  left: 10%;
}

/*------------------------------------------*\

    _c-dot.scss

    Dots to show each project represented
    by a specified color.

    @namespace  .c-
    @parent     .c-dot

\*------------------------------------------*/
.c-dot {
  height: 8px;
  width: 8px;
  padding: 4px;
  border-radius: 100px;
  margin-right: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.c-dot--medium {
  height: 40px;
  width: 40px;
}

.c-dot--small {
  height: 24px;
  width: 24px;
  padding: 4px;
}

.c-segmented-control {
  display: flex;
}

.c-segmented-control__item {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column-reverse;
  border: 1px solid #e8e8e8;
  text-align: center;
  align-items: center;
  margin-right: -1px;
}
.c-segmented-control__item input {
  margin-right: 0;
}
.c-segmented-control__item:hover {
  background: #eff9f0;
  border: 1px solid #c2c2c2;
  z-index: 999;
}
.c-segmented-control__item.is-selected {
  background: #eff9f0;
  border: 1px solid #c2c2c2;
  z-index: 999;
}

/*------------------------------------------*\

    _c-icon.scss

    Icons that can be used in HTML or as
    content using pseudo classes

    @namespace  .c-
    @parent     .c-icon

\*------------------------------------------*/
.c-icon {
  font-family: "icomoon";
  font-style: normal;
  font-weight: normal;
  display: inline-block;
  text-decoration: none;
  font-size: 17px;
  vertical-align: bottom;
  /* For safety - reset parent styles, that can break glyph codes*/
  font-variant: normal;
  text-transform: none;
}

.c-icon--linegraph:before {
  content: "\e920";
}

.c-icon--graph:before {
  content: "\e920";
}

.c-icon--statistics:before {
  content: "\e920";
}

.c-icon--show_chart:before {
  content: "\e91e";
}

.c-icon--line-graph:before {
  content: "\e91f";
}

.c-icon--arrow-left:before {
  content: "\e900";
}

.c-icon--arrow-right:before {
  content: "\e901";
}

.c-icon--cross:before {
  content: "\e902";
}

.c-icon--warning-circle:before {
  content: "\e903";
}

.c-icon--success-circle:before {
  content: "\e904";
}

.c-icon--success-bold:before {
  content: "\ea10";
}

.c-icon--error-circle:before {
  content: "\e905";
}

.c-icon--error-bold:before {
  content: "\e921";
}

.c-icon--hourglass:before {
  content: "\e906";
}

.c-icon--calendar:before {
  content: "\e907";
}

.c-icon--lock:before {
  content: "\e908";
}

.c-icon--user:before {
  content: "\e909";
}

.c-icon--chevron-left:before {
  content: "\e90a";
}

.c-icon--chevron-right:before {
  content: "\e90b";
}

.c-icon--search:before {
  content: "\e90c";
}

.c-icon--bin:before {
  content: "\e90d";
}

.c-icon--plus-circle:before {
  content: "\e90e";
}

.c-icon--circle-minus:before {
  content: "\e90f";
}

.c-icon--chevron-down:before {
  content: "\e910";
}

.c-icon--home-phone:before {
  content: "\e911";
}

.c-icon--mobile:before {
  content: "\e912";
}

.c-icon--edit:before {
  content: "\e913";
}

.c-icon--tag:before {
  content: "\e914";
}

.c-icon--cake:before {
  content: "\e915";
}

.c-icon--intervention:before {
  content: "\e916";
}

.c-icon--signpost:before {
  content: "\e917";
}

.c-icon--contact:before {
  content: "\e918";
}

.c-icon--outcome:before {
  content: "\e919";
}

.c-icon--referral:before {
  content: "\e91a";
}

.c-icon--arrow-down:before {
  content: "\e91b";
}

.c-icon--arrow-up:before {
  content: "\e91c";
}

.c-icon--file:before {
  content: "\e91d";
}

/*------------------------------------------*\

    _header.scss

    Fixed width border detail under
    specified headings.


    @namespace  .c-
    @parent     .c-button

\*------------------------------------------*/
.c-heading {
  position: relative;
  margin-bottom: 32px;
}
.c-heading:before {
  position: absolute;
  bottom: -16px;
  left: 0px;
  content: "";
  width: 70px;
  height: 7px;
  background: #ce0909;
}

.c-likert .js-communication-value--input {
  border: 1px solid #e8e8e8;
  border-radius: 4px;
  display: flex;
  text-align: center;
}
.c-likert .js-communication-value--input > label {
  border-right: 1px solid #e8e8e8;
  width: 20%;
  padding: 8px;
  font-size: 14px;
}
.c-likert .js-communication-value--input > label:last-of-type {
  border-right: none;
}
.c-likert .js-communication-value--input > label.is-selected {
  background: rgba(232, 232, 232, 0.4);
}
.c-likert .js-communication-value--input > label img {
  display: block;
  margin: 0 auto;
}
.c-likert .js-communication-value--input > label label input[type=radio] {
  display: none;
}
.c-likert .js-communication-value--input > label label:hover .c-tooltip {
  visibility: visible;
}

/*------------------------------------------*\

    _loader.scss

    Custom hourglass style loader.


    @namespace  .c-
    @parent     .c-loader

\*------------------------------------------*/
.c-loader {
  box-shadow: 0px 4px 14px rgba(0, 0, 0, 0.3);
  width: 65px;
  height: 65px;
  background: #e8e8e8;
  border-radius: 200px;
  position: relative;
  border: 2px solid #dbdbdb;
}
.c-loader:before {
  font-family: "icomoon";
  position: absolute;
  top: 13px;
  right: 17px;
  content: "\e906";
  animation: rotating 1.5s linear infinite;
  font-size: 30px;
  color: #4a4a4a;
}

.c-loading:after {
  display: inline-block;
  animation: dotty steps(1, end) 1s infinite;
  content: "";
  width: 8px;
}

.my-event-processing + .selectize-control:after {
  display: flex;
  align-items: center;
  animation: dotty steps(1, end) 1s infinite;
  content: "";
  width: 8px;
  position: absolute;
  top: 0px;
  right: 16px;
  bottom: 0px;
  z-index: 999;
  margin-top: -8px;
}

@keyframes dotty {
  0% {
    content: "";
  }
  25% {
    content: ".";
  }
  50% {
    content: "..";
  }
  75% {
    content: "...";
  }
  100% {
    content: "";
  }
}
.c-project-pick .c-project-pick__item {
  transition: box-shadow 0.1s;
  padding: 16px 16px 16px 8px;
  margin-bottom: 16px;
}
.c-project-pick .c-project-pick__item:hover {
  cursor: pointer;
  box-shadow: inset 0 0 0 1px #fba8a8;
}
.c-project-pick .c-project-pick__item.is-selected {
  box-shadow: inset 0 0 0 4px #CE0909;
}

/*------------------------------------------*\

    _c-modal.scss

    The modal uses a table layout technique
    for positioning.

    Usually appears as a child of the
    c-overlay component

    @namespace  .c-
    @parent     .c-modal

\*------------------------------------------*/
.has-modal-open {
  position: fixed;
  overflow: hidden;
  width: 100%;
}
@media only screen and (max-width: 769px) {
  .has-modal-open\@m- {
    position: fixed;
    overflow: hidden;
    width: 100%;
  }
}

@media only screen and (min-width: 769px) {
  .c-modal {
    display: table;
    width: 100%;
    height: 100%;
    table-layout: fixed;
  }
}

@media only screen and (min-width: 769px) {
  .c-modal__cell {
    display: table-cell;
    height: 100%;
    width: 100%;
    vertical-align: middle;
    padding: 64px;
  }
}

.c-modal__content {
  --modal-padding: 8px;
  padding: var(--modal-padding);
}
@media only screen and (max-width: 769px) {
  .c-modal__content {
    height: 100%;
    position: fixed;
    top: 0px;
    right: 0px;
    bottom: 0px;
    left: 0px;
    overflow: auto;
  }
}
@media only screen and (min-width: 769px) {
  .c-modal__content {
    --modal-padding: 24px;
    position: relative;
    overflow: auto;
    margin: 0 auto;
    max-width: 960px;
    max-height: 560px;
  }
}
.c-modal__content:has(.c-modal__header) {
  padding: 0;
  display: flex;
  flex-direction: column;
}
.c-modal__content .c-modal__header {
  padding: var(--modal-padding);
  border-bottom: 1px solid #e8e8e8;
  padding-bottom: calc(var(--modal-padding) / 2);
}
.c-modal__content .c-modal__footer {
  padding: var(--modal-padding);
  border-top: 1px solid #e8e8e8;
  padding-top: calc(var(--modal-padding) / 2);
}
.c-modal__content .c-modal__body {
  padding: var(--modal-padding);
  padding-block: calc(var(--modal-padding) / 2);
  overflow: auto;
}
.c-modal__content .c-modal__inner {
  flex-direction: column;
  overflow: auto;
}

/*------------------------------------------*\

    c-module.scss

    High level block of code that can be
    reused in any position with no overwriting
    required.


    @namespace  .c-
    @parent     .c-module

\*------------------------------------------*/
.c-module {
  *zoom: 1;
  position: relative;
}
.c-module:after {
  content: "";
  display: table;
  clear: both;
}

.c-module--section {
  border-bottom: 1px solid #e8e8e8;
}
.c-module--section:last-child {
  border-bottom: none;
}
.c-module--section:hover {
  background-color: rgba(232, 232, 232, 0.5);
}

.c-module--corner {
  border-radius: 4px;
}

.c-module--crud {
  border: 1px solid #e8e8e8;
  border-radius: 4px;
  margin-bottom: 16px;
}

/*------------------------------------------*\

    _c-nav.scss

    Navigation component

    @namespace  .c-
    @parent     .c-nav
    @children   .c-nav__item

\*------------------------------------------*/
.c-nav {
  list-style: none;
  margin-bottom: 0;
  margin-left: 0;
}

.c-nav__item {
  display: inline-block;
  position: relative;
}
.c-nav__item a {
  padding-left: 16px;
  padding-right: 16px;
  display: block;
}

.c-nav--subnav .c-nav__link {
  padding-top: 0;
  padding-bottom: 0;
  padding-left: 16px;
  padding-right: 16px;
  line-height: 44px;
  display: block;
}
.c-nav--subnav .c-nav__link.is-selected {
  font-weight: 900;
  background: #f3f3f3;
}
.c-nav--subnav .c-nav__link:hover {
  background: #f3f3f3;
  text-decoration: none;
}

.c-nav--mobile .c-nav__item {
  display: block;
  line-height: 44px;
}

.c-nav--mobile-subnav .c-nav__item {
  display: block;
  line-height: 44px;
  font-weight: 400;
}

/*------------------------------------------*\

    _overlay.scss

    Transparent overlay over everything.


    @namespace  .c-
    @parent     .c-overlay

\*------------------------------------------*/
.c-overlay {
  position: absolute;
  top: 74.8px;
  left: 0px;
  background: rgba(74, 74, 74, 0.7);
  width: 100%;
  height: 100%;
  z-index: 10000;
  overflow-y: auto;
  display: none;
  z-index: 8000;
}

.c-overlay--fixed {
  position: fixed;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
}

/*------------------------------------------*\

    _c-pill.scss

    @namespace  .c-
    @parent     .c-pill
    @children   .c-pill__icon

\*------------------------------------------*/
.c-pill {
  padding-top: 0;
  padding-bottom: 0;
  padding-left: 8px;
  padding-right: 8px;
  background-color: #CE0909;
  color: #ffffff;
  border: 1px solid #b60808;
  border-radius: 200px;
  line-height: 21.6px;
  min-height: 21.6px;
  font-size: 11px;
  white-space: nowrap;
  max-width: 208px;
  overflow: hidden;
  position: relative;
  display: inline-block;
  vertical-align: middle;
  text-transform: uppercase;
  font-weight: 900;
  margin: 4px;
}
.c-pill a, .c-pill a:visited, .c-pill:visited {
  color: #ffffff;
}
.c-pill:last-of-type {
  margin-right: 0px;
}
.c-pill.is-removable {
  padding-right: 24px;
}
.c-pill:hover {
  color: white !important;
}

.c-pill--flag {
  padding-top: 8px;
  padding-bottom: 8px;
  padding-left: 12.8px;
  padding-right: 12.8px;
  border: none !important;
}

.c-pill--light {
  background-color: #f3f3f3;
  border: 1px solid #e8e8e8;
  color: #4a4a4a;
}
.c-pill--light:hover {
  color: #4a4a4a !important;
}

.c-pill__close {
  padding-left: 5.3333333333px;
  padding-right: 5.3333333333px;
  position: absolute;
  top: 0px;
  right: 4px;
  line-height: 21.6px;
  font-size: 12px;
  color: white;
  text-align: center;
}
.c-pill__close:hover {
  cursor: pointer;
}

.c-pill--large {
  padding-top: 8px;
  padding-bottom: 8px;
  padding-left: 16px;
  padding-right: 16px;
  box-shadow: inset 0 0 0 -1px rgba(0, 0, 0, 0.2);
  border: none;
}
.c-pill--large:hover {
  text-decoration: none;
}

.c-project {
  opacity: 0.5;
}
.c-project.is-active {
  box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.3), 0px 4px 14px rgba(0, 0, 0, 0.3);
  opacity: 1;
}
.c-project:hover {
  opacity: 1;
}

.c-search {
  position: absolute;
  top: 16px;
  right: 16px;
}

.meter {
  padding-left: 0px;
  display: flex;
}

.strength {
  height: 5px;
  background: #e8e8e8;
  flex: 1;
  margin-right: 8px;
  list-style-type: none;
}

.is-strong {
  background: #42b655;
}

.is-weak {
  background: #CE0909;
}

.is-medium {
  background: #f0b100;
}

.c-subnav {
  position: fixed;
  top: 74.8px;
  right: 0px;
  left: 0px;
  background-color: #ce0909;
  color: #ffffff;
  z-index: 0;
}
.c-subnav a, .c-subnav a:visited, .c-subnav:visited {
  color: #ffffff;
}
.c-subnav .c-nav__item {
  line-height: 49.8666666667px;
}
.c-subnav .c-nav__item a:hover {
  text-decoration: none;
}
.c-subnav .c-nav__item:hover {
  background: rgba(0, 0, 0, 0.1);
}
.c-subnav .c-nav__item.has-dropdown:hover > .c-subnav__dropdown {
  display: block;
}

.c-subnav__dropdown {
  background-color: #bd1c08;
  color: #ffffff;
  position: absolute;
  width: 200px;
  display: none;
  overflow-y: auto;
  max-height: 500px;
}
.c-subnav__dropdown a, .c-subnav__dropdown a:visited, .c-subnav__dropdown:visited {
  color: #ffffff;
}
.c-subnav__dropdown .c-nav__item {
  display: block;
}

.c-tab__item {
  transition: box-shadow 0.1s;
  padding: 16px 16px 16px 8px;
  text-align: center;
  display: block;
  background: rgba(232, 232, 232, 0.4);
  border-right: 1px solid #e8e8e8;
  border-bottom: 1px solid #e8e8e8;
  user-select: none;
}
.c-tab__item:last-of-type {
  border-right: none;
}
.c-tab__item:hover {
  cursor: pointer;
  text-decoration: none;
  background: rgba(232, 232, 232, 0.8);
}
.c-tab__item.is-selected {
  background: white;
  border-bottom: none;
}

/*------------------------------------------*\

    c-table.scss

	Automatically sorts the cells into columns
	and adds lines between the cells and cols

    @namespace  .c-
    @parent     .c-table
    @children	.c-table__cell

\*------------------------------------------*/
.c-table {
  margin-top: 16px;
  margin-bottom: 16px;
  margin-left: 0;
  margin-right: 0;
  font-size: 15px;
}
.c-table tr {
  background-color: white;
}
.c-table tr:nth-of-type(odd) {
  background-color: #f3f3f3; /* Override this color in your theme stylesheet */
}
.c-table th {
  font-weight: bold;
  background-color: white !important;
}
.c-table th.rotate {
  height: 110px;
  white-space: nowrap;
  font-size: 12px;
}
.c-table th.rotate > div {
  transform: translate(-9px, 0px) rotate(308deg);
  width: 32px;
}
.c-table th.rotate > div > span {
  padding: 8px 16px;
}
.c-table th, .c-table td {
  margin-top: 4px;
  margin-bottom: 4px;
  margin-left: 0;
  margin-right: 0;
  padding-top: 10.6666666667px;
  padding-right: 10.6666666667px;
  padding-bottom: 10.6666666667px;
  padding-left: 10.6666666667px;
}
.c-table th:last-child, .c-table td:last-child {
  text-align: right;
}
.c-table td:first-child {
  font-weight: normal;
}
.c-table td > a {
  text-decoration: underline;
  color: #ce0909;
}

table {
  margin-bottom: 16px;
}

.c-table--align-left th:last-child, .c-table--align-left td:last-child {
  text-align: left;
}

.c-table--no-head th {
  display: none;
}

.c-table--small {
  font-size: 13px;
}

.c-timeline {
  position: relative;
}
.c-timeline:before {
  content: "";
  width: 1px;
  background-color: #e8e8e8;
  height: 100%;
  position: absolute;
  left: 20px;
  z-index: 0;
}

.c-timeline__item {
  *zoom: 1;
  margin-bottom: 32px;
}
.c-timeline__item:after {
  content: "";
  display: table;
  clear: both;
}

.c-timeline__dot {
  width: 40px;
  margin-right: 16px;
  float: left;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.c-timeline__details {
  width: calc(100% - 56px);
  float: left;
}

.c-timeline__info {
  position: relative;
  line-height: 1.5;
}
.c-timeline__info.is-hidden {
  max-height: 96px;
  overflow: hidden;
}
.c-timeline__info.is-hidden:before {
  position: absolute;
  right: 0px;
  bottom: 0px;
  left: 0px;
  content: "";
  height: 90px;
  background: rgba(255, 255, 255, 0);
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffffff", endColorstr="#ffffff", GradientType=0);
}
.c-timeline__info p {
  white-space: pre-line;
}

.c-tooltip {
  visibility: hidden;
  width: auto;
  background-color: #4A4A4A;
  color: white;
  text-align: center;
  padding: 8px;
  border-radius: 4px;
  position: absolute;
  z-index: 1;
}

/*------------------------------------------*\

    c-input.scss

    Standard text field component consistent
    throughout the entire front end website.


    @namespace  .c-
    @parent     .c-input

\*------------------------------------------*/
.c-input, .selectize-input, .hasDatepicker {
  padding-left: 8px;
  padding-right: 8px;
  line-height: 42px;
  border: 1px solid #e8e8e8;
  appearance: none;
  outline: none;
  max-width: 100%;
  width: 100%;
  display: inline-block;
  height: 46px;
  background-color: #ffffff;
  border-radius: 4px;
  min-width: 80px;
  vertical-align: top;
  font-size: 14px;
}
.c-input:required, .selectize-input:required, .hasDatepicker:required {
  box-shadow: none;
}
.c-input::placeholder, .selectize-input::placeholder, .hasDatepicker::placeholder {
  color: #969696;
}
.c-input:focus, .selectize-input:focus, .hasDatepicker:focus {
  border: 1px solid #4a4a4a;
  box-shadow: 0 0 3px #4a4a4a;
}

textarea.c-input {
  height: auto;
}

input.hasDatepicker {
  border: 1px solid #e8e8e8;
  border-radius: 0 4px 4px 0;
  padding-left: 8px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-size: 15px;
}

.selectize-input {
  padding-top: 0px !important;
  padding-bottom: 0px !important;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0) !important;
}
.selectize-input.focus {
  box-shadow: 0px 4px 14px rgba(0, 0, 0, 0.3);
  border: 1px solid #4a4a4a;
}

.c-input--basic {
  border-top: none;
  border-left: none;
  border-right: none;
  border-radius: 0px;
}

input.phrase-box-searching {
  background-position: center right 16px !important;
}

.c-input--message {
  height: 89.6px;
}

.c-table input[type=submit] {
  appearance: none;
  background: none;
  border: none;
  text-decoration: underline;
}
.c-table input[type=submit]:hover {
  cursor: pointer;
}

label.is-invalid {
  color: #CE0909;
  font-weight: 900;
}

/*------------------------------------------*\

    c-label.scss

	Form labels

    @namespace  .c-
    @parent     .c-label

\*------------------------------------------*/
.c-label {
  line-height: 44px;
  font-size: 17px;
  color: #969696;
  font-weight: normal;
}

.c-label--inline {
  line-height: inherit;
}

.c-label--prepend {
  white-space: nowrap;
  font-size: 17px;
  line-height: 44px;
  padding: 0 16px;
  border-radius: 4px 0px 0px 4px;
  border: 1px solid #e8e8e8;
  border-right: 0px;
  background: white;
}
.c-label--prepend + .c-input, .c-label--prepend + .o-flex__item .c-input {
  border-top-left-radius: 0px;
  border-bottom-left-radius: 0px;
}

.c-label--boxed {
  border: 1px solid #e8e8e8;
  padding: 16px;
  margin-left: -1px;
}

/*------------------------------------------*\

    c-checkbox.scss

    Default checkbox styles. These styles should
    be limited to as few rules as possible.


    @namespace  .c-
    @parent     .c-checkbox

\*------------------------------------------*/
.c-checkbox {
  color: #969696;
}
.c-checkbox:first-child {
  margin-top: 0;
}
.c-checkbox input[type=checkbox] {
  margin-right: 8px;
  flex-shrink: 0;
}
.o-flex .c-checkbox input[type=checkbox] {
  margin-top: 5.3333333333px;
}
.c-checkbox input[type=checkbox]:checked ~ .c-checkbox__label {
  color: #4a4a4a;
}

.c-checkbox__wrapper {
  display: flex;
  user-select: none;
}

.c-checkset label {
  padding-top: 0;
  padding-right: 16px;
  padding-bottom: 0;
  padding-left: 8px;
  background: rgba(232, 232, 232, 0.3);
  border: 1px solid #e8e8e8;
  display: inline-block;
  margin-right: 8px;
  border-radius: 4px;
  user-select: none;
  margin-bottom: 8px;
}
.c-checkset label:hover {
  border: 1px solid #c2c2c2;
  background: #e8e8e8;
}
.c-checkset .c-label--inline {
  margin-bottom: 0;
}

.c-checkset--vertical {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.c-checkset--vertical label {
  display: flex;
  margin-right: 0;
}

.c-form .c-checkset {
  margin-top: 44px;
}

.c-form__label--checkbox {
  padding-top: 8px;
  padding-bottom: 8px;
  padding-left: 16px;
  padding-right: 16px;
  border-radius: 4px;
  border: 1px dashed #e8e8e8;
  display: block;
}
.c-form__label--checkbox:hover {
  background: rgba(232, 232, 232, 0.2);
}

/*------------------------------------------*\

    c-select-box.scss

    Standard dropdown with native styles
    removed.


    @namespace  .c-
    @parent     .c-select-box
    @variation  .c-select-box--long

\*------------------------------------------*/
.c-select-box {
  border: 0;
  border-radius: 0;
  display: inline-block;
  line-height: 44px;
  max-width: 100%;
  min-height: 44px;
  width: auto;
  appearance: none;
  -moz-appearance: none;
  color: #4A4A4A;
  background: #ffffff;
  border: 1px solid #e8e8e8;
  border-radius: 4px;
  padding-top: 0;
  padding-bottom: 0;
  padding-left: 8px;
  padding-right: 8px;
  position: relative;
  width: 100%;
  min-width: 80px;
  font-size: 15px;
  background-image: url(data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20width%3D%2232%22%20height%3D%2232%22%20viewBox%3D%220%200%2032%2032%22%3E%0A%20%20%3Cpolygon%20fill%3D%22%23A1AAB2%22%20fill-rule%3D%22evenodd%22%20points%3D%2215%2017%2015%2013%2013%2013%2013%2019%2019%2019%2019%2017%22%20transform%3D%22rotate%28-45%2016%2016%29%22/%3E%0A%3C/svg%3E%0A);
  background-repeat: no-repeat;
  background-position: center right;
}
.c-select-box select {
  width: 100%;
  position: relative;
  z-index: 1;
}

.c-select-box--small {
  min-width: 144px;
}

.c-select-box__select {
  appearance: none;
  -moz-appearance: none;
  background: transparent;
  border: 0;
  line-height: inherit;
  min-height: inherit;
  padding: 0;
  width: 100%;
  appearance: none;
  text-indent: 1px;
  text-overflow: "";
  outline: none;
  height: 42px;
  white-space: nowrap;
  color: #969696;
}
.c-select-box__select::-ms-expand {
  display: none;
}

.c-select-box--prepend {
  border-bottom-right-radius: 0px;
  border-top-right-radius: 0px;
  background: #e8e8e8;
  box-shadow: none;
  margin-right: 16px;
}

.c-color-banner {
  margin-left: 0px;
  display: flex;
}
.c-color-banner li:nth-of-type(1) {
  flex: 1;
  float: left;
  background: #CE0909;
  display: inline-block;
  height: 7px;
}
.c-color-banner li:nth-of-type(2) {
  flex: 1;
  float: left;
  background: #A80057;
  display: inline-block;
  height: 7px;
}
.c-color-banner li:nth-of-type(3) {
  flex: 1;
  float: left;
  background: #FC9F26;
  display: inline-block;
  height: 7px;
}
.c-color-banner li:nth-of-type(4) {
  flex: 1;
  float: left;
  background: #00A93C;
  display: inline-block;
  height: 7px;
}
.c-color-banner li:nth-of-type(5) {
  flex: 1;
  float: left;
  background: #90C480;
  display: inline-block;
  height: 7px;
}
.c-color-banner li:nth-of-type(6) {
  flex: 1;
  float: left;
  background: #0E4D81;
  display: inline-block;
  height: 7px;
}
.c-color-banner li:nth-of-type(7) {
  flex: 1;
  float: left;
  background: #70B4C5;
  display: inline-block;
  height: 7px;
}
.c-color-banner li:nth-of-type(8) {
  flex: 1;
  float: left;
  background: #8E71C8;
  display: inline-block;
  height: 7px;
}
.c-color-banner li:nth-of-type(9) {
  flex: 1;
  float: left;
  background: #6F808E;
  display: inline-block;
  height: 7px;
}

/*------------------------------------------*\

    _g-header.scss

    Global site header.

    @namespace  .g-
    @parent     .g-header

\*------------------------------------------*/
.g-header {
  box-shadow: 0px 4px 14px rgba(0, 0, 0, 0.3);
  padding-left: 16px;
  padding-right: 16px;
  position: fixed;
  right: 0px;
  left: 0px;
  height: 74.8px;
  line-height: 69.8px;
  flex-shrink: 0;
  flex-grow: 0;
  background-color: white;
  z-index: 7000;
}

.g-header__nav {
  margin: 0 auto;
  display: none;
}
@media only screen and (min-width: 930px) {
  .g-header__nav {
    display: block;
  }
}

.g-header__nav-item {
  font-weight: 900;
  text-transform: uppercase;
  font-size: 12px;
}

.g-header__member {
  line-height: 21.6px;
}

.g-header__search {
  width: 100%;
  max-width: 350px;
}

.g-header__menu {
  background-color: rgba(0, 0, 0, 0.1);
  padding-top: 0;
  padding-bottom: 0;
  padding-left: 8px;
  padding-right: 8px;
}
.g-header__menu .g-header__menu-close {
  display: none;
}

.g-header__mobile-nav {
  position: fixed;
  top: 0px;
  bottom: 0px;
  left: 0px;
  z-index: 10001;
  display: none;
  width: 272px;
  padding-top: 74.8px;
  overflow: auto;
}
.g-header__mobile-nav .g-header__nav-item {
  margin-top: 0;
  margin-bottom: 0;
  margin-left: 8px;
  margin-right: 8px;
}

.g-header__mobile-nav-trigger {
  position: absolute;
  clip: rect(0, 0, 0, 0);
}
@media only screen and (max-width: 930px) {
  .g-header__mobile-nav-trigger:checked ~ .g-header__mobile-nav {
    display: block;
  }
}
.g-header__mobile-nav-trigger:checked ~ .g-header__mobile-nav:after {
  display: block;
  content: "";
  background: rgba(0, 0, 0, 0.5);
  position: fixed;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 272px;
  z-index: 10000;
}
.g-header__mobile-nav-trigger:checked ~ label.g-header__menu {
  padding: 16px;
  position: fixed;
  top: 0px;
  left: 208px;
  z-index: 10002;
  background-color: transparent;
}
.g-header__mobile-nav-trigger:checked ~ label.g-header__menu .g-header__menu-close {
  display: block;
}
.g-header__mobile-nav-trigger:checked ~ label.g-header__menu .g-header__menu-open {
  display: none;
}

/*------------------------------------------*\

    _g-footer.scss

    Global site footer.

    @namespace  .g-
    @parent     .g-footer

\*------------------------------------------*/
/*------------------------------------------*\

    _g-main.scss

    The space in between the Header and
    Footer

    @namespace  .g-
    @parent     .g-main

\*------------------------------------------*/
.g-main {
  background: white;
  flex: 1 0 auto;
  width: 100%;
  align-items: inherit;
  margin-top: 74.8px;
}
.g-main.has-subnav {
  margin-top: 124.6666666667px;
}

.g-site-wrapper {
  flex-direction: column;
  height: 100%;
  z-index: 1;
  position: relative;
}

/*------------------------------------------*\

    _s-text-content.scss

    Standard text content scope class. Use
    this when you need more standard text
    appearance

    @namespace  .s-

\*------------------------------------------*/
.s-text-content li {
  padding-top: 8px;
  padding-bottom: 8px;
  padding-left: 0;
  padding-right: 0;
  list-style: disc;
  margin-left: 1em;
}
.s-text-content p {
  margin-top: 8px;
  margin-right: 0;
  margin-bottom: 16px;
  margin-left: 0;
  line-height: 25.92px;
}
.s-text-content p:first-child {
  margin-top: 0px;
}

.u-border-right {
  border-right: 1px solid #e8e8e8;
}

.u-border-left {
  border-left: 1px solid #e8e8e8;
}

.u-border-top {
  border-top: 1px solid #e8e8e8;
}

.u-border-bottom {
  border-bottom: 1px solid #e8e8e8;
}

.u-bordered {
  border: 1px solid #e8e8e8;
}

.u-rounded {
  border-radius: 4px;
}

.u-rounded--max {
  border-radius: 160px;
}

.u-hide {
  display: none !important;
}
@media only screen and (min-width: 769px) {
  .u-hide\@m {
    display: none !important;
  }
}
@media only screen and (min-width: 991px) {
  .u-hide\@l {
    display: none !important;
  }
}
@media only screen and (max-width: 321px) {
  .u-hide\@s- {
    display: none !important;
  }
}
@media only screen and (max-width: 769px) {
  .u-hide\@m- {
    display: none !important;
  }
}
@media only screen and (max-width: 991px) {
  .u-hide\@l- {
    display: none !important;
  }
}

.u-show {
  display: block !important;
}

.u-inline-block {
  display: inline-block;
}

@media print {
  .u-print-hide {
    display: none !important;
  }
}
.no-js .u-no-js-hide {
  display: none !important;
}

.js .u-js-hide {
  display: none !important;
}

.u-clear {
  *zoom: 1;
}
.u-clear:after {
  content: "";
  display: table;
  clear: both;
}

.u-clickable:hover {
  cursor: pointer;
}

.u-2-columns {
  column-count: 2;
}
@media only screen and (min-width: 321px) {
  .u-2-columns\@s {
    column-count: 2;
  }
}
@media only screen and (min-width: 769px) {
  .u-2-columns\@m {
    column-count: 2;
  }
}

/*scss/utilities/_u-fill.scss*/
.u-fill-primary {
  background-color: #ce0909 !important;
}

.u-fill-secondary {
  background-color: #4a4a4a !important;
}

.u-fill-text {
  background-color: #4a4a4a !important;
}

.u-fill-shade {
  background-color: #f3f3f3 !important;
}

.u-fill-white {
  background-color: white !important;
}

.u-fill-green {
  background-color: #42b655 !important;
}

.u-fill-grey {
  background-color: #969696 !important;
}

.u-fill-site {
  background-color: white !important;
}

/*scss/utilities/_u-fractions.scss*/
/* Full Width */
.u-1 {
  width: 100% !important;
}
@media only screen and (min-width: 321px) {
  .u-1\@s {
    width: 100% !important;
  }
}
@media only screen and (max-width: 321px) {
  .u-1\@s- {
    width: 100% !important;
  }
}
@media only screen and (max-width: 769px) {
  .u-1\@m- {
    width: 100% !important;
  }
}
@media only screen and (min-width: 769px) {
  .u-1\@m {
    width: 100% !important;
  }
}
@media only screen and (min-width: 991px) {
  .u-1\@l {
    width: 100% !important;
  }
}
@media only screen and (max-width: 991px) {
  .u-1\@l- {
    width: 100% !important;
  }
}

/* 1/2 widths */
.u-1\/2 {
  width: 50% !important;
}
@media only screen and (min-width: 321px) {
  .u-1\/2\@s {
    width: 50% !important;
  }
}
@media only screen and (max-width: 321px) {
  .u-1\/2\@s- {
    width: 50% !important;
  }
}
@media only screen and (max-width: 769px) {
  .u-1\/2\@m- {
    width: 50% !important;
  }
}
@media only screen and (min-width: 769px) {
  .u-1\/2\@m {
    width: 50% !important;
  }
}
@media only screen and (min-width: 991px) {
  .u-1\/2\@l {
    width: 50% !important;
  }
}
@media only screen and (max-width: 991px) {
  .u-1\/2\@l- {
    width: 50% !important;
  }
}

/* 1/3 widths */
.u-1\/3 {
  width: 33.3333333333% !important;
}
@media only screen and (min-width: 321px) {
  .u-1\/3\@s {
    width: 33.3333333333% !important;
  }
}
@media only screen and (max-width: 321px) {
  .u-1\/3\@s- {
    width: 33.3333333333% !important;
  }
}
@media only screen and (max-width: 769px) {
  .u-1\/3\@m- {
    width: 33.3333333333% !important;
  }
}
@media only screen and (min-width: 769px) {
  .u-1\/3\@m {
    width: 33.3333333333% !important;
  }
}
@media only screen and (min-width: 991px) {
  .u-1\/3\@l {
    width: 33.3333333333% !important;
  }
}
@media only screen and (max-width: 991px) {
  .u-1\/3\@l- {
    width: 33.3333333333% !important;
  }
}

/* 1/3 widths */
.u-2\/3 {
  width: 66.6666666667% !important;
}
@media only screen and (min-width: 321px) {
  .u-2\/3\@s {
    width: 66.6666666667% !important;
  }
}
@media only screen and (max-width: 321px) {
  .u-2\/3\@s- {
    width: 66.6666666667% !important;
  }
}
@media only screen and (max-width: 769px) {
  .u-2\/3\@m- {
    width: 66.6666666667% !important;
  }
}
@media only screen and (min-width: 769px) {
  .u-2\/3\@m {
    width: 66.6666666667% !important;
  }
}
@media only screen and (min-width: 991px) {
  .u-2\/3\@l {
    width: 66.6666666667% !important;
  }
}
@media only screen and (max-width: 991px) {
  .u-2\/3\@l- {
    width: 66.6666666667% !important;
  }
}

/* 1/4 widths */
.u-1\/4 {
  width: 25% !important;
}
@media only screen and (min-width: 321px) {
  .u-1\/4\@s {
    width: 25% !important;
  }
}
@media only screen and (max-width: 321px) {
  .u-1\/4\@s- {
    width: 25% !important;
  }
}
@media only screen and (max-width: 769px) {
  .u-1\/4\@m- {
    width: 25% !important;
  }
}
@media only screen and (min-width: 769px) {
  .u-1\/4\@m {
    width: 25% !important;
  }
}
@media only screen and (min-width: 991px) {
  .u-1\/4\@l {
    width: 25% !important;
  }
}
@media only screen and (max-width: 991px) {
  .u-1\/4\@l- {
    width: 25% !important;
  }
}

/* 3/4 widths */
.u-3\/4 {
  width: 75% !important;
}
@media only screen and (min-width: 321px) {
  .u-3\/4\@s {
    width: 75% !important;
  }
}
@media only screen and (max-width: 321px) {
  .u-3\/4\@s- {
    width: 75% !important;
  }
}
@media only screen and (max-width: 769px) {
  .u-3\/4\@m- {
    width: 75% !important;
  }
}
@media only screen and (min-width: 769px) {
  .u-3\/4\@m {
    width: 75% !important;
  }
}
@media only screen and (min-width: 991px) {
  .u-3\/4\@l {
    width: 75% !important;
  }
}
@media only screen and (max-width: 991px) {
  .u-3\/4\@l- {
    width: 75% !important;
  }
}

/* 1/5 widths */
.u-1\/5 {
  width: 20% !important;
}
@media only screen and (min-width: 321px) {
  .u-1\/5\@s {
    width: 20% !important;
  }
}
@media only screen and (max-width: 321px) {
  .u-1\/5\@s- {
    width: 20% !important;
  }
}
@media only screen and (max-width: 769px) {
  .u-1\/5\@m- {
    width: 20% !important;
  }
}
@media only screen and (min-width: 769px) {
  .u-1\/5\@m {
    width: 20% !important;
  }
}
@media only screen and (min-width: 991px) {
  .u-1\/5\@l {
    width: 20% !important;
  }
}
@media only screen and (max-width: 991px) {
  .u-1\/5\@l- {
    width: 20% !important;
  }
}

/* 4/5 widths */
.u-4\/5 {
  width: 80% !important;
}
@media only screen and (min-width: 321px) {
  .u-4\/5\@s {
    width: 80% !important;
  }
}
@media only screen and (max-width: 321px) {
  .u-4\/5\@s- {
    width: 80% !important;
  }
}
@media only screen and (max-width: 769px) {
  .u-4\/5\@m- {
    width: 80% !important;
  }
}
@media only screen and (min-width: 769px) {
  .u-4\/5\@m {
    width: 80% !important;
  }
}
@media only screen and (min-width: 991px) {
  .u-4\/5\@l {
    width: 80% !important;
  }
}
@media only screen and (max-width: 991px) {
  .u-4\/5\@l- {
    width: 80% !important;
  }
}

/*scss/utilities/_u-padding.scss*/
.u-pad {
  padding: 16px !important;
}

.u-pad-top-bottom {
  padding-top: 16px !important;
  padding-bottom: 16px !important;
}

.u-pad-left-right {
  padding-left: 16px !important;
  padding-right: 16px !important;
}
@media only screen and (min-width: 769px) {
  .u-pad-left-right\@m {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }
}

.u-pad-top {
  padding-top: 16px !important;
}

.u-pad-bottom {
  padding-bottom: 16px !important;
}

.u-pad-bottom--heavy {
  padding-bottom: 32px !important;
}

.u-pad-left {
  padding-left: 16px !important;
}

.u-pad-right {
  padding-right: 16px !important;
}

.u-pad-none {
  padding: 0 !important;
}

.u-pad--heavy {
  padding: 32px !important;
}

.u-marg {
  margin: 16px !important;
}

.u-marg-top-bottom {
  margin-top: 16px !important;
  margin-bottom: 16px !important;
}

.u-marg-left-right {
  margin-left: 16px !important;
  margin-right: 16px !important;
}

.u-marg-top {
  margin-top: 16px !important;
}

.u-marg-bottom {
  margin-bottom: 16px !important;
}

.u-marg-bottom-loose {
  margin-bottom: 32px !important;
}

.u-marg-left {
  margin-left: 16px !important;
}
@media only screen and (min-width: 769px) {
  .u-marg-left\@m {
    margin-left: 16px !important;
  }
}

.u-marg-right {
  margin-right: 16px !important;
}
@media only screen and (min-width: 769px) {
  .u-marg-right\@m {
    margin-right: 16px !important;
  }
}

.u-marg-right-half {
  margin-right: 8px !important;
}
@media only screen and (min-width: 769px) {
  .u-marg-right-half\@m {
    margin-right: 8px !important;
  }
}

.u-marg-left-half {
  margin-left: 8px !important;
}
@media only screen and (min-width: 769px) {
  .u-marg-left-half\@m {
    margin-left: 8px !important;
  }
}

.u-marg-bottom-half {
  margin-bottom: 8px !important;
}

.u-marg-none {
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  margin-left: 0;
}

/*scss/utilities/_u-font-size.scss*/
.u-micro {
  font-size: 12px !important;
}

.u-milli {
  font-size: 15px !important;
}

.u-alpha {
  font-size: 17px !important;
}

.u-beta {
  font-size: 21px !important;
}

.u-gamma {
  font-size: 25px !important;
}

.u-delta {
  font-size: 30px !important;
}

.u-epsilon {
  font-size: 36px !important;
}

.u-zeta {
  font-size: 59px !important;
}

/*scss/utilities/_u-font-weight.scss*/
.u-regular {
  font-weight: 400 !important;
}

.u-bold {
  font-weight: 900 !important;
}

/*------------------------------------------*\

    full-screen-mobile.scss

    This utility will apply a full screen
    modal window on mobile

    @namespace  .u-

\*------------------------------------------*/
@media only screen and (max-width: 321px) {
  .u-full-screen-mobile {
    padding: 0;
  }
}
@media only screen and (min-width: 321px) and (max-width: 769px) {
  .u-full-screen-mobile {
    padding-top: 16px;
    padding-right: 16px;
    padding-bottom: 16px;
    padding-left: 16px;
  }
}
@media only screen and (max-width: 769px) {
  .u-full-screen-mobile {
    position: fixed;
    top: 0px;
    right: 0px;
    bottom: 0px;
    left: 0px;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
    z-index: 9000;
    border: none;
  }
}

.u-full-height {
  height: 100vh;
}

.u-list-stacked > li {
  display: list-item;
  line-height: 29.16px;
}

.u-list-lined > li:not(:last-child) {
  border-bottom: 1px solid #e8e8e8;
}

.u-list-touch-target > li {
  line-height: 44px;
}
.u-list-touch-target.small > li {
  line-height: 29.3333333333px;
}

.u-list-inline > li {
  display: inline-block;
  margin-right: 8px;
}
.u-list-inline > li:last-child {
  margin: 0;
}
.u-list-inline.tight > li {
  margin-right: 0;
}

.u-list-indent dd {
  margin-left: 16px;
}

.u-link {
  -webkit-appearance: none;
  background: none;
  border: none;
  text-decoration: underline;
}
.u-link:hover {
  cursor: pointer;
}

.u-transparent {
  opacity: 0;
}

.u-translucent {
  opacity: 0.5;
}

.u-opaque {
  opacity: 1;
}

.u-overflow-hidden {
  overflow: hidden;
}

.u-overflow-auto {
  overflow: auto;
}

/*------------------------------------------*\

    u-position.scss

    Positioning utilities

    @namespace  .u-

\*------------------------------------------*/
.u-pos-relative {
  position: relative;
}

.u-pull-left {
  float: left;
}
@media only screen and (min-width: 769px) {
  .u-pull-left\@m {
    float: left;
  }
}

.u-pull-right {
  float: right;
}
@media only screen and (min-width: 769px) {
  .u-pull-right\@m {
    float: right;
  }
}

.u-pull-center {
  margin-left: auto;
  margin-right: auto;
  display: block;
}
@media only screen and (max-width: 769px) {
  .u-pull-center\@m- {
    margin-left: auto;
    margin-right: auto;
    display: block;
  }
}

/*------------------------------------------*\

    shadow.scss

    adds box shadow

    @namespace  .u-

\*------------------------------------------*/
.u-shadow {
  box-shadow: 0px 4px 14px rgba(0, 0, 0, 0.3);
}
@media only screen and (min-width: 769px) {
  .u-shadow\@m {
    box-shadow: 0px 4px 14px rgba(0, 0, 0, 0.3);
  }
}

.u-align-left {
  text-align: left;
}

.u-align-center {
  text-align: center;
}
@media only screen and (max-width: 769px) {
  .u-align-center\@m- {
    text-align: center;
  }
}

.u-align-right {
  text-align: right;
}
@media only screen and (min-width: 769px) {
  .u-align-right\@m {
    text-align: right;
  }
}

/*scss/utilities/_u-text-color.scss*/
.u-primary {
  color: #ce0909 !important;
}

.u-secondary {
  color: #4a4a4a !important;
}

.u-tertiary {
  color: white !important;
}

.u-lighten {
  color: #969696 !important;
}

.u-text {
  color: #4a4a4a !important;
}

.u-white {
  color: white !important;
  border-color: white !important;
}
.u-white:before {
  color: white !important;
}

.u-fade-light {
  color: rgba(255, 255, 255, 0.5) !important;
}

.u-green {
  color: #42b655;
}

.u-red {
  color: #CE0909 !important;
}

.u-touch-target {
  line-height: 44px;
}

.u-uppercase {
  text-transform: uppercase;
}

.u-full-width {
  width: 100%;
}

.u-width-block {
  inline-size: 128px;
}

.u-width-block-2 {
  inline-size: 256px;
}

.u-nowrap {
  white-space: nowrap;
}

/*------------------------------------------*\

    zindex.scss

    z-index utilities

    @namespace  .u-

\*------------------------------------------*/
.u-zindex-reset {
  position: relative;
  z-index: 0;
}

.s-healthcheck {
  /**
   * Outline all classes.
   */
  /**
   * Outline all BEM Elements.
   */
  /**
   * Outline all BEM Modifiers.
   */
  /**
   * Outline all Object classes.
   */
  /**
   * Outline all Component classes.
   */
  /**
   * Outline all Responsive classes.
   */
  /**
   * Outline all Hack classes.
   */
}
.s-healthcheck [class] {
  outline: 5px solid lightgrey;
}
.s-healthcheck [class*=__] {
  outline: 5px solid grey;
}
.s-healthcheck [class*="--"] {
  outline: 5px solid darkgrey;
}
.s-healthcheck [class^=o-],
.s-healthcheck [class*=" o-"] {
  outline: 5px solid orange;
}
.s-healthcheck [class^=c-],
.s-healthcheck [class*=" c-"] {
  outline: 5px solid cyan;
}
.s-healthcheck [class*="@"] {
  outline: 5px solid rosybrown;
}
.s-healthcheck [class^=_] {
  outline: 5px solid red;
}

/*# sourceMappingURL=main.css.map */
