@charset "UTF-8";

/**
 * Version: 0.1 (Nov 13th, 2017) 
 * Ref commit SHA:(c671d8e0ca078c20d8dda503b9e71a059ceb6c6)
 * To make this dststyle.css available for vision, we have to manually redirect fonts and icon directory. put ../../ in front of assets
 * This is an example itcss-based project manifest file. DO NOT MODIFY THIS FILE DIRECTLY.
 * Instead, copy and paste it into your own CSS directory and make additions,
 * extensions, and modifications there.
 */

/**
 * CONTENTS
 *
 * SETTINGS
 * Config...............Project-level configuration and feature switches.
 * Core.................inuitcss’ core and setup settings.
 * Global...............Project-wide variables and settings.
 *
 * TOOLS
 * Font-size............A mixin which guarantees baseline-friendly line-heights.
 * Clearfix.............Micro clearfix mixin.
 * Hidden...............Mixin for hiding elements.
 * Sass MQ..............inuitcss’ default media query manager.
 *
 * GENERIC
 * Box-sizing...........Better default `box-sizing`.
 * Normalize.css........A level playing field using @necolas’ Normalize.css.
 * Reset................A tiny reset to complement Normalize.css.
 * Shared...............Sensibly and tersely share some global commonalities
 *                      (particularly useful when managing vertical rhythm).
 *
 * ELEMENTS
 * Page.................Set up our document’s default `font-size` and
 *                      `line-height`.
 * Headings.............Very minimal (i.e. only font-size information) for
 *                      headings 1 through 6.
 * Images...............Base image styles.
 * Tables...............Simple table styles.
 *
 * OBJECTS
 * Wrapper..............Page constraint object.
 * Layout...............Generic layout module.
 * Media................Image- and text-like content side by side. The
 *                      poster-child of OOCSS.
 * Flag.................Table-layout-based advancement on the Media object.
 * List-bare............Lists with no bullets or indents.
 * List-inline..........A list whose items all site in a line.
 * Box..................Simple boxing abstraction.
 * Block................Image-on-top-of-text object.
 * Ratio................A container for maintaining aspect ratio of content.
 * Crop.................Provide a cropping context for media (images, etc.).
 * Table................Classes for manipulating `table`s.
 * Pack.................Pack items into available horizontal space.
 *
 * COMPONENTS
 * Buttons..............An example button component, and how it fits into the
 *                      inuitcss framework.
 *
 * UTILITIES
 * Clearfix.............Bind our clearfix onto a utility class.
 * Widths...............Simple width helper classes.
 * Headings.............Reassigning our heading styles to helper classes.
 * Spacings.............Nudge bits of the DOM around with these spacing
 *                      classes.
 * Responsive-Spacings..Enhances the function of normal spacings for
 *                      responsive usage.
 * Print................Reset-like styles taken from the HTML5 Boilerplate.
 * Hide.................Helper classes to hide content
 */

@keyframes indeterminate {
  0% {
    left: -35%;
    right: 100%;
  }

  60% {
    left: 100%;
    right: -90%;
  }

  100% {
    left: 100%;
    right: -90%;
  }
}

@-moz-keyframes indeterminate {
  0% {
    left: -35%;
    right: 100%;
  }

  60% {
    left: 100%;
    right: -90%;
  }

  100% {
    left: 100%;
    right: -90%;
  }
}

@-webkit-keyframes indeterminate {
  0% {
    left: -35%;
    right: 100%;
  }

  60% {
    left: 100%;
    right: -90%;
  }

  100% {
    left: 100%;
    right: -90%;
  }
}

@keyframes indeterminate-short {
  0% {
    left: -200%;
    right: 100%;
  }

  60% {
    left: 107%;
    right: -8%;
  }

  100% {
    left: 107%;
    right: -8%;
  }
}

@-moz-keyframes indeterminate-short {
  0% {
    left: -200%;
    right: 100%;
  }

  60% {
    left: 107%;
    right: -8%;
  }

  100% {
    left: 107%;
    right: -8%;
  }
}

@-webkit-keyframes indeterminate-short {
  0% {
    left: -200%;
    right: 100%;
  }

  60% {
    left: 107%;
    right: -8%;
  }

  100% {
    left: 107%;
    right: -8%;
  }
}

@keyframes widthchange {
  0% {
    left: -200%;
    right: 100%;
  }

  100% {
    left: 0%;
    right: 100%;
  }
}

@keyframes indeterminate-alternate {
  0% {
    left: 100%;
    right: -90%;
  }

  60% {
    left: 100%;
    right: -90%;
  }

  100% {
    left: -35%;
    right: 100%;
  }
}

@-moz-keyframes indeterminate-alternate {
  0% {
    left: 100%;
    right: -90%;
  }

  60% {
    left: 100%;
    right: -90%;
  }

  100% {
    left: -35%;
    right: 100%;
  }
}

@-webkit-keyframes indeterminate-alternate {
  0% {
    left: 100%;
    right: -90%;
  }

  60% {
    left: 100%;
    right: -90%;
  }

  100% {
    left: -35%;
    right: 100%;
  }
}

@keyframes indeterminate-short-alternate {
  0% {
    left: 107%;
    right: -8%;
  }

  60% {
    left: 107%;
    right: -8%;
  }

  100% {
    left: -200%;
    right: 100%;
  }
}

@-moz-keyframes indeterminate-short-alternate {
  0% {
    left: 107%;
    right: -8%;
  }

  60% {
    left: 107%;
    right: -8%;
  }

  100% {
    left: -200%;
    right: 100%;
  }
}

@-webkit-keyframes indeterminate-short-alternate {
  0% {
    left: 107%;
    right: -8%;
  }

  60% {
    left: 107%;
    right: -8%;
  }

  100% {
    left: -200%;
    right: 100%;
  }
}

@-webkit-keyframes left-spin {
  from {
    -webkit-transform: rotate(130deg);
  }

  50% {
    -webkit-transform: rotate(-5deg);
  }

  to {
    -webkit-transform: rotate(130deg);
  }
}

@keyframes left-spin {
  from {
    -webkit-transform: rotate(130deg);
    transform: rotate(130deg);
  }

  50% {
    -webkit-transform: rotate(-5deg);
    transform: rotate(-5deg);
  }

  to {
    -webkit-transform: rotate(130deg);
    transform: rotate(130deg);
  }
}

@-webkit-keyframes right-spin {
  from {
    -webkit-transform: rotate(-130deg);
  }

  50% {
    -webkit-transform: rotate(5deg);
  }

  to {
    -webkit-transform: rotate(-130deg);
  }
}

@keyframes right-spin {
  from {
    -webkit-transform: rotate(-130deg);
    transform: rotate(-130deg);
  }

  50% {
    -webkit-transform: rotate(5deg);
    transform: rotate(5deg);
  }

  to {
    -webkit-transform: rotate(-130deg);
    transform: rotate(-130deg);
  }
}

@-webkit-keyframes fill-unfill-rotate {
  12.5% {
    -webkit-transform: rotate(135deg);
  }

  25% {
    -webkit-transform: rotate(270deg);
  }

  37.5% {
    -webkit-transform: rotate(405deg);
  }

  50% {
    -webkit-transform: rotate(540deg);
  }

  62.5% {
    -webkit-transform: rotate(675deg);
  }

  75% {
    -webkit-transform: rotate(810deg);
  }

  87.5% {
    -webkit-transform: rotate(945deg);
  }

  to {
    -webkit-transform: rotate(1080deg);
  }
}

@keyframes fill-unfill-rotate {
  12.5% {
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
  }

  25% {
    -webkit-transform: rotate(270deg);
    transform: rotate(270deg);
  }

  37.5% {
    -webkit-transform: rotate(405deg);
    transform: rotate(405deg);
  }

  50% {
    -webkit-transform: rotate(540deg);
    transform: rotate(540deg);
  }

  62.5% {
    -webkit-transform: rotate(675deg);
    transform: rotate(675deg);
  }

  75% {
    -webkit-transform: rotate(810deg);
    transform: rotate(810deg);
  }

  87.5% {
    -webkit-transform: rotate(945deg);
    transform: rotate(945deg);
  }

  to {
    -webkit-transform: rotate(1080deg);
    transform: rotate(1080deg);
  }
}

@-webkit-keyframes blue-fade-in-out {
  from {
    opacity: 1;
  }

  25% {
    opacity: 1;
  }

  26% {
    opacity: 0;
  }

  89% {
    opacity: 0;
  }

  90% {
    opacity: 1;
  }

  100% {
    opacity: 1;
  }
}

@keyframes blue-fade-in-out {
  from {
    opacity: 1;
  }

  25% {
    opacity: 1;
  }

  26% {
    opacity: 0;
  }

  89% {
    opacity: 0;
  }

  90% {
    opacity: 1;
  }

  100% {
    opacity: 1;
  }
}

@-webkit-keyframes container-rotate {
  to {
    -webkit-transform: rotate(360deg);
  }
}

@keyframes container-rotate {
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

html {
  box-sizing: border-box;
}

body {
  box-sizing: border-box;
  margin: 0;
}

/* roboto-100 - latin */

@font-face {
  font-family: 'Roboto Thin';
  font-style: normal;
  font-weight: 100;
  src: local("Roboto Thin"), local("Roboto-Thin"), url(../../assets/fonts/roboto/Roboto-Thin.ttf) format("truetype");
}

@font-face {
  font-family: 'Roboto Thin';
  font-style: italic;
  font-weight: 100;
  src: local("Roboto Thin Italic"), local("Roboto-ThinItalic"), url(../../assets/fonts/roboto/Roboto-ThinItalic.ttf) format("truetype");
}

/* roboto-300 - latin */

@font-face {
  font-family: 'Roboto Light';
  font-style: normal;
  font-weight: 300;
  src: local("Roboto Light"), local("Roboto-Light"), url(../../assets/fonts/roboto/Roboto-Light.ttf) format("truetype");
}

@font-face {
  font-family: 'Roboto Light';
  font-style: italic;
  font-weight: 300;
  src: local("Roboto Light Italic"), local("Roboto-LightItalic"), url(../../assets/fonts/roboto/Roboto-LightItalic.ttf) format("truetype");
}

/* roboto-regular - latin */

@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  src: local("Roboto"), local("Roboto-Regular"), url(../../assets/fonts/roboto/Roboto-Regular.ttf) format("truetype");
}

@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 400;
  src: local("Roboto Italic"), local("Roboto-Italic"), url(../../assets/fonts/roboto/Roboto-Italic.ttf) format("truetype");
}

/* roboto-regular - latin */

@font-face {
  font-family: 'Roboto Regular';
  font-style: normal;
  font-weight: 400;
  src: local("Roboto"), local("Roboto-Regular"), url(../../assets/fonts/roboto/Roboto-Regular.ttf) format("truetype");
}

@font-face {
  font-family: 'Roboto Regular';
  font-style: italic;
  font-weight: 400;
  src: local("Roboto Italic"), local("Roboto-Italic"), url(../../assets/fonts/roboto/Roboto-Italic.ttf) format("truetype");
}

/* roboto-500 - latin */

@font-face {
  font-family: 'Roboto Medium';
  font-style: normal;
  font-weight: 500;
  src: local("Roboto Medium"), local("Roboto-Medium"), url(../../assets/fonts/roboto/Roboto-Medium.ttf) format("truetype");
}

@font-face {
  font-family: 'Roboto Medium';
  font-style: italic;
  font-weight: 500;
  src: local("Roboto Medium Italic"), local("Roboto-MediumItalic"), url(../../assets/fonts/roboto/Roboto-MediumItalic.ttf) format("truetype");
}

/* roboto-700 - latin */

@font-face {
  font-family: 'Roboto Bold';
  font-style: normal;
  font-weight: 700;
  src: local("Roboto Bold"), local("Roboto-Bold"), url(../../assets/fonts/roboto/Roboto-Bold.ttf) format("truetype");
}

@font-face {
  font-family: 'Roboto Bold';
  font-style: italic;
  font-weight: 700;
  src: local("Roboto Bold Italic"), local("Roboto-BoldItalic"), url(../../assets/fonts/roboto/Roboto-BoldItalic.ttf) format("truetype");
}

/* roboto-900 - latin */

@font-face {
  font-family: 'Roboto Black';
  font-style: normal;
  font-weight: 900;
  src: local("Roboto Black"), local("Roboto-Black"), url(../../assets/fonts/roboto/Roboto-Black.ttf) format("truetype");
}

@font-face {
  font-family: 'Roboto Black';
  font-style: italic;
  font-weight: 900;
  src: local("Roboto Black Italic"), local("Roboto-BlackItalic"), url(../../assets/fonts/roboto/Roboto-BlackItalic.ttf) format("truetype");
}

@font-face {
  font-family: 'Material Icons';
  font-style: normal;
  font-weight: 400;
  src: url(../../assets/iconfont/MaterialIcons-Regular.eot);
  /* For IE6-8 */
  src: local("Material Icons"), local("MaterialIcons-Regular"), url(../../assets/iconfont/MaterialIcons-Regular.woff2) format("woff2"), url(../../assets/iconfont/MaterialIcons-Regular.woff) format("woff"), url(../../assets/iconfont/MaterialIcons-Regular.ttf) format("truetype");
}

.material-icons {
  font-family: 'Material Icons';
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  /* Preferred icon size */
  display: inline-block;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;
  /* Support for all WebKit browsers. */
  -webkit-font-smoothing: antialiased;
  /* Support for Safari and Chrome. */
  text-rendering: optimizeLegibility;
  /* Support for Firefox. */
  -moz-osx-font-smoothing: grayscale;
  /* Support for IE. */
  font-feature-settings: 'liga';
}

/* ==========================================================================
   #NORMALIZE
   ========================================================================== */

/*! normalize.css v7.0.0 | MIT License | github.com/necolas/normalize.css */

/* Document
   ========================================================================== */

/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in
 *    IE on Windows Phone and in iOS.
 */

html {
  line-height: 1.15;
  /* 1 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
}

/* Sections
     ========================================================================== */

/**
   * Remove the margin in all browsers (opinionated).
   */

/**
   * Add the correct display in IE 9-.
   */

article,
aside,
footer,
header,
nav,
section {
  display: block;
}

/**
   * Correct the font size and margin on `h1` elements within `section` and
   * `article` contexts in Chrome, Firefox, and Safari.
   */

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
     ========================================================================== */

/**
   * Add the correct display in IE 9-.
   * 1. Add the correct display in IE.
   */

figcaption,
figure,
main {
  /* 1 */
  display: block;
}

/**
   * Add the correct margin in IE 8.
   */

figure {
  margin: 1em 40px;
}

/**
   * 1. Add the correct box sizing in Firefox.
   * 2. Show the overflow in Edge and IE.
   */

hr {
  box-sizing: content-box;
  /* 1 */
  height: 0;
  /* 1 */
  overflow: visible;
  /* 2 */
}

/**
   * 1. Correct the inheritance and scaling of font size in all browsers.
   * 2. Correct the odd `em` font sizing in all browsers.
   */

pre {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
}

/* Text-level semantics
     ========================================================================== */

/**
   * 1. Remove the gray background on active links in IE 10.
   * 2. Remove gaps in links underline in iOS 8+ and Safari 8+.
   */

a {
  background-color: transparent;
  /* 1 */
  -webkit-text-decoration-skip: objects;
  /* 2 */
}


a, a:link {
  background-color: transparent;
  color: #1976D2;
  text-decoration: none;
  cursor: pointer;
  outline: none;
}

a:not(:disabled):visited {
  color: #1565C0;
}

/**
   * 1. Remove the bottom border in Chrome 57- and Firefox 39-.
   * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
   */

abbr[title] {
  border-bottom: none;
  /* 1 */
  text-decoration: underline;
  /* 2 */
  text-decoration: underline dotted;
  /* 2 */
}

/**
   * Prevent the duplicate application of `bolder` by the next rule in Safari 6.
   */

b,
strong {
  font-family: "Roboto Medium";
  font-weight: normal;
}


/**
   * 1. Correct the inheritance and scaling of font size in all browsers.
   * 2. Correct the odd `em` font sizing in all browsers.
   */

code,
kbd,
samp {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
}

/**
   * Add the correct font style in Android 4.3-.
   */

dfn {
  font-style: italic;
}

/**
   * Add the correct background and color in IE 9-.
   */

mark {
  background-color: #FF0;
  color: #000;
}

/**
   * Add the correct font size in all browsers.
   */

small {
  font-size: 80%;
}

/**
   * Prevent `sub` and `sup` elements from affecting the line height in
   * all browsers.
   */

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

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
     ========================================================================== */

/**
   * Add the correct display in IE 9-.
   */

audio,
video {
  display: inline-block;
}

/**
   * Add the correct display in iOS 4-7.
   */

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

/**
   * Remove the border on images inside links in IE 10-.
   */

img {
  border-style: none;
}

/**
   * Hide the overflow in IE.
   */

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

/* Forms
     ========================================================================== */

/**
   * 1. Change the font styles in all browsers (opinionated).
   * 2. Remove the margin in Firefox and Safari.
   */

button,
input,
optgroup,
select,
textarea {
  font-family: Roboto;
  /* 1 */
  font-size: 100%;
  /* 1 */
  line-height: 1.15;
  /* 1 */
  margin: 0;
  /* 2 */
}

/**
   * Show the overflow in IE.
   * 1. Show the overflow in Edge.
   */

button,
input {
  /* 1 */
  overflow: visible;
}

/**
   * Remove the inheritance of text transform in Edge, Firefox, and IE.
   * 1. Remove the inheritance of text transform in Firefox.
   */

button,
select {
  /* 1 */
  text-transform: none;
}

/**
   * 1. Prevent a WebKit bug where (2) destroys native `audio` and `video`
   *    controls in Android 4.
   * 2. Correct the inability to style clickable types in iOS and Safari.
   */

button,
html [type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
  /* 2 */
}

/**
   * Remove the inner border and padding in Firefox.
   */

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
   * Restore the focus styles unset by the previous rule.
   */

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
   * Correct the padding in Firefox.
   */

fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
   * 1. Correct the text wrapping in Edge and IE.
   * 2. Correct the color inheritance from `fieldset` elements in IE.
   * 3. Remove the padding so developers are not caught out when they zero out
   *    `fieldset` elements in all browsers.
   */

legend {
  box-sizing: border-box;
  /* 1 */
  color: inherit;
  /* 2 */
  display: table;
  /* 1 */
  max-width: 100%;
  /* 1 */
  padding: 0;
  /* 3 */
  white-space: normal;
  /* 1 */
}

/**
   * 1. Add the correct display in IE 9-.
   * 2. Add the correct vertical alignment in Chrome, Firefox, and Opera.
   */

progress {
  display: inline-block;
  /* 1 */
  vertical-align: baseline;
  /* 2 */
}

/**
   * Remove the default vertical scrollbar in IE.
   */

textarea {
  overflow: auto;
}

/**
   * 1. Add the correct box sizing in IE 10-.
   * 2. Remove the padding in IE 10-.
   */

[type="checkbox"],
[type="radio"] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
   * Correct the cursor style of increment and decrement buttons in Chrome.
   */

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

/**
   * 1. Correct the odd appearance in Chrome and Safari.
   * 2. Correct the outline style in Safari.
   */

[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  outline-offset: -2px;
  /* 2 */
}

/**
   * Remove the inner padding and cancel buttons in Chrome and Safari on macOS.
   */

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

/**
   * 1. Correct the inability to style clickable types in iOS and Safari.
   * 2. Change font properties to `inherit` in Safari.
   */

::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */
}

/* Interactive
     ========================================================================== */

/*
   * Add the correct display in IE 9-.
   * 1. Add the correct display in Edge, IE, and Firefox.
   */

details,
menu {
  display: block;
}

/*
   * Add the correct display in all browsers.
   */

summary {
  display: list-item;
}

/* Scripting
     ========================================================================== */

/**
   * Add the correct display in IE 9-.
   */

canvas {
  display: inline-block;
}

/**
   * Add the correct display in IE.
   */

template {
  display: none;
}

/* Hidden
     ========================================================================== */

/**
   * Add the correct display in IE 10-.
   */


/**
 * lead charts display none error
[hidden] {
  display: none;
}

*/

/* HTML5 display-role reset for older browsers */

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
button,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
sub,
sup,
tt,
var,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  border: 0;
  font-size: 100%;
  font: inherit;
  font-family: "Roboto";
}

td {
  padding: 0;
}

select {
  padding-right: 24px;
  padding-left: 6px;
  -moz-appearance: none;
  -webkit-appearance: none;
  border: 1px solid #BDBDBD;
  min-width: 90px;
  background: url(../../images/icon_arrow_down_gray.png) no-repeat scroll right center transparent;
  background-size: 24px 24px;
  line-height: 24px;
  height: 24px;
  font-size: 12px;
  vertical-align: middle;
  color: #212121;
}

select:disabled {
  background-color: #E0E0E0;
}

select::-ms-expand {
  display: none;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

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

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

html {
  height: 100%;
}

* {
  font-family: 'Roboto';
}

.clear {
  clear: both;
}

section {
  margin: 25px;
}

.style_header {
  border-left: 5px solid #F57C00;
  font-size: 30px;
  margin: 25px 0;
  padding-left: 10px;
}

p.caption {
  margin: 45px 0 25px 0;
}

hr {
  margin-top: 24px;
}

body {
  line-height: 1;
  margin: 0;
  padding: 0;
  font-size: 16px;
  overflow: auto;
  min-width: 800px;
}

.c-label--disabled {
  cursor: not-allowed !important;
}

main {
  padding-top: 1px;
}

.o-container {
  margin: auto;
}

@media (min-width: 20em) {
  .o-container--xsmall\@xsmall {
    max-width: 20em;
  }

  .o-container--small\@xsmall {
    max-width: 30em;
  }

  .o-container--medium\@xsmall {
    max-width: 48em;
  }

  .o-container--slarge\@xsmall {
    max-width: 75em;
  }

  .o-container--large\@xsmall {
    max-width: 64em;
  }

  .o-container--xlarge\@xsmall {
    max-width: 78em;
  }

  .o-container--super\@xsmall {
    max-width: 116em;
  }
}

@media (min-width: 30em) {
  .o-container--xsmall\@small {
    max-width: 20em;
  }

  .o-container--small\@small {
    max-width: 30em;
  }

  .o-container--medium\@small {
    max-width: 48em;
  }

  .o-container--slarge\@small {
    max-width: 75em;
  }

  .o-container--large\@small {
    max-width: 64em;
  }

  .o-container--xlarge\@small {
    max-width: 78em;
  }

  .o-container--super\@small {
    max-width: 116em;
  }
}

@media (min-width: 48em) {
  .o-container--xsmall\@medium {
    max-width: 20em;
  }

  .o-container--small\@medium {
    max-width: 30em;
  }

  .o-container--medium\@medium {
    max-width: 48em;
  }

  .o-container--slarge\@medium {
    max-width: 75em;
  }

  .o-container--large\@medium {
    max-width: 64em;
  }

  .o-container--xlarge\@medium {
    max-width: 78em;
  }

  .o-container--super\@medium {
    max-width: 116em;
  }
}

@media (min-width: 64em) {
  .o-container--xsmall\@large {
    max-width: 20em;
  }

  .o-container--small\@large {
    max-width: 30em;
  }

  .o-container--medium\@large {
    max-width: 48em;
  }

  .o-container--slarge\@large {
    max-width: 75em;
  }

  .o-container--large\@large {
    max-width: 64em;
  }

  .o-container--xlarge\@large {
    max-width: 78em;
  }

  .o-container--super\@large {
    max-width: 116em;
  }
}

@media (min-width: 78em) {
  .o-container--xsmall\@xlarge {
    max-width: 20em;
  }

  .o-container--small\@xlarge {
    max-width: 30em;
  }

  .o-container--medium\@xlarge {
    max-width: 48em;
  }

  .o-container--slarge\@xlarge {
    max-width: 75em;
  }

  .o-container--large\@xlarge {
    max-width: 64em;
  }

  .o-container--xlarge\@xlarge {
    max-width: 78em;
  }

  .o-container--super\@xlarge {
    max-width: 116em;
  }
}

@media (min-width: 116em) {
  .o-container--xsmall\@super {
    max-width: 20em;
  }

  .o-container--small\@super {
    max-width: 30em;
  }

  .o-container--medium\@super {
    max-width: 48em;
  }

  .o-container--slarge\@super {
    max-width: 75em;
  }

  .o-container--large\@super {
    max-width: 64em;
  }

  .o-container--xlarge\@super {
    max-width: 78em;
  }

  .o-container--super\@super {
    max-width: 116em;
  }
}

.o-container--xsmall {
  max-width: 20em;
}

.o-container--small {
  max-width: 30em;
}

.o-container--medium {
  max-width: 48em;
}

.o-container--slarge {
  max-width: 75em;
}

.o-container--large {
  max-width: 64em;
}

.o-container--xlarge {
  max-width: 78em;
}

.o-container--super {
  max-width: 116em;
}

.o-container--mask {
  width: 100%;
  height: 100%;
  background-color: #111;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99;
  opacity: .3;
  display: none;
}

.o-alignment--center {
  vertical-align: middle;
}

.o-alignment--baseline {
  vertical-align: baseline;
}

.o-text {
  color: #FFF;
  overflow: auto;
}

.o-grid {
  display: flex;
}

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

.o-grid--wrap.o-grid--margin {
  margin: 1.5em 0 0 0;
}

.o-grid--top {
  align-items: flex-start;
}

.o-grid--center {
  align-items: center;
}

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

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

.o-grid--full > .o-grid__cell {
  flex: 0 0 100%;
  max-width: 100%;
  margin-left: 0;
}

.o-grid--no-gutter > .o-grid__cell {
  padding-right: .001em;
  padding-left: .001em;
}

.o-grid__cell {
  flex: 1;
  padding-right: 0.5em;
  padding-left: 0.5em;
}

.o-grid__cell--width-5 {
  flex: 0 0 5%;
  max-width: 5%;
}

.o-grid__cell--offset-5 {
  margin-left: 5%;
  flex: 1 !important;
}

.o-grid__cell--width-10 {
  flex: 0 0 10%;
  max-width: 10%;
}

.o-grid__cell--offset-10 {
  margin-left: 10%;
  flex: 1 !important;
}

.o-grid__cell--width-15 {
  flex: 0 0 15%;
  max-width: 15%;
}

.o-grid__cell--offset-15 {
  margin-left: 15%;
  flex: 1 !important;
}

.o-grid__cell--width-20 {
  flex: 0 0 20%;
  max-width: 20%;
}

.o-grid__cell--offset-20 {
  margin-left: 20%;
  flex: 1 !important;
}

.o-grid__cell--width-25 {
  flex: 0 0 25%;
  max-width: 25%;
}

.o-grid__cell--offset-25 {
  margin-left: 25%;
  flex: 1 !important;
}

.o-grid__cell--width-30 {
  flex: 0 0 30%;
  max-width: 30%;
}

.o-grid__cell--offset-30 {
  margin-left: 30%;
  flex: 1 !important;
}

.o-grid__cell--width-33 {
  flex: 0 0 33.33333%;
  max-width: 33.33333%;
}

.o-grid__cell--offset-33 {
  margin-left: 33.33333%;
  flex: 1 !important;
}

.o-grid__cell--width-35 {
  flex: 0 0 35%;
  max-width: 35%;
}

.o-grid__cell--offset-35 {
  margin-left: 35%;
  flex: 1 !important;
}

.o-grid__cell--width-40 {
  flex: 0 0 40%;
  max-width: 40%;
}

.o-grid__cell--offset-40 {
  margin-left: 40%;
  flex: 1 !important;
}

.o-grid__cell--width-45 {
  flex: 0 0 45%;
  max-width: 45%;
}

.o-grid__cell--offset-45 {
  margin-left: 45%;
  flex: 1 !important;
}

.o-grid__cell--width-50 {
  flex: 0 0 50%;
  max-width: 50%;
}

.o-grid__cell--offset-50 {
  margin-left: 50%;
  flex: 1 !important;
}

.o-grid__cell--width-55 {
  flex: 0 0 55%;
  max-width: 55%;
}

.o-grid__cell--offset-55 {
  margin-left: 55%;
  flex: 1 !important;
}

.o-grid__cell--width-60 {
  flex: 0 0 60%;
  max-width: 60%;
}

.o-grid__cell--offset-60 {
  margin-left: 60%;
  flex: 1 !important;
}

.o-grid__cell--width-65 {
  flex: 0 0 65%;
  max-width: 65%;
}

.o-grid__cell--offset-65 {
  margin-left: 65%;
  flex: 1 !important;
}

.o-grid__cell--width-66 {
  flex: 0 0 66.66667%;
  max-width: 66.66667%;
}

.o-grid__cell--offset-66 {
  margin-left: 66.66667%;
  flex: 1 !important;
}

.o-grid__cell--width-70 {
  flex: 0 0 70%;
  max-width: 70%;
}

.o-grid__cell--offset-70 {
  margin-left: 70%;
  flex: 1 !important;
}

.o-grid__cell--width-75 {
  flex: 0 0 75%;
  max-width: 75%;
}

.o-grid__cell--offset-75 {
  margin-left: 75%;
  flex: 1 !important;
}

.o-grid__cell--width-80 {
  flex: 0 0 80%;
  max-width: 80%;
}

.o-grid__cell--offset-80 {
  margin-left: 80%;
  flex: 1 !important;
}

.o-grid__cell--width-85 {
  flex: 0 0 85%;
  max-width: 85%;
}

.o-grid__cell--offset-85 {
  margin-left: 85%;
  flex: 1 !important;
}

.o-grid__cell--width-90 {
  flex: 0 0 90%;
  max-width: 90%;
}

.o-grid__cell--offset-90 {
  margin-left: 90%;
  flex: 1 !important;
}

.o-grid__cell--width-95 {
  flex: 0 0 95%;
  max-width: 95%;
}

.o-grid__cell--offset-95 {
  margin-left: 95%;
  flex: 1 !important;
}

.o-grid__cell--width-100 {
  flex: 0 0 100%;
  max-width: 100%;
}

.o-grid__cell--offset-100 {
  margin-left: 100%;
  flex: 1 !important;
}

.o-grid__cell--top {
  align-self: flex-start;
}

.o-grid__cell--center {
  align-self: center;
}

.o-grid__cell--bottom {
  align-self: flex-end;
}

.o-grid__cell--no-gutter {
  padding-right: .001em;
  padding-left: .001em;
}

.o-grid__cell--width-fixed {
  flex: 0 1 auto;
}

.o-grid__cell--hidden {
  display: none;
}

.o-grid__cell--visible {
  display: inline-block;
}

.o-grid__cell--content {
  max-width: 1200px;
}

@media (max-width: 19.99em) {
  .o-grid.o-grid--xsmall-fit > .o-grid__cell:not([class*="o-grid__cell--width"]) {
    flex: 1;
  }

  .o-grid.o-grid--xsmall-full {
    flex-wrap: wrap;
  }

  .o-grid.o-grid--xsmall-full > .o-grid__cell {
    flex: 0 0 100%;
    max-width: 100%;
    margin-left: 0;
  }
}

@media (min-width: 20em) and (max-width: 29.99em) {
  .o-grid.o-grid--small-fit > .o-grid__cell:not([class*="o-grid__cell--width"]) {
    flex: 1;
  }

  .o-grid.o-grid--small-full {
    flex-wrap: wrap;
  }

  .o-grid.o-grid--small-full > .o-grid__cell {
    flex: 0 0 100%;
    max-width: 100%;
    margin-left: 0;
  }
}

@media (min-width: 30em) and (max-width: 47.99em) {
  .o-grid.o-grid--medium-fit > .o-grid__cell:not([class*="o-grid__cell--width"]) {
    flex: 1;
  }

  .o-grid.o-grid--medium-full {
    flex-wrap: wrap;
  }

  .o-grid.o-grid--medium-full > .o-grid__cell {
    flex: 0 0 100%;
    max-width: 100%;
    margin-left: 0;
  }
}

@media (min-width: 48em) and (max-width: 63.99em) {
  .o-grid.o-grid--large-fit > .o-grid__cell:not([class*="o-grid__cell--width"]) {
    flex: 1;
  }

  .o-grid.o-grid--large-full {
    flex-wrap: wrap;
  }

  .o-grid.o-grid--large-full > .o-grid__cell {
    flex: 0 0 100%;
    max-width: 100%;
    margin-left: 0;
  }
}

@media (min-width: 64em) and (max-width: 77.99em) {
  .o-grid.o-grid--xlarge-fit > .o-grid__cell:not([class*="o-grid__cell--width"]) {
    flex: 1;
  }

  .o-grid.o-grid--xlarge-full {
    flex-wrap: wrap;
  }

  .o-grid.o-grid--xlarge-full > .o-grid__cell {
    flex: 0 0 100%;
    max-width: 100%;
    margin-left: 0;
  }
}

@media (min-width: 64em) {
  .o-grid.o-grid--super-fit > .o-grid__cell:not([class*="o-grid__cell--width"]) {
    flex: 1;
  }

  .o-grid.o-grid--super-full {
    flex-wrap: wrap;
  }

  .o-grid.o-grid--super-full > .o-grid__cell {
    flex: 0 0 100%;
    max-width: 100%;
    margin-left: 0;
  }
}

@media (min-width: 20em) {
  .o-grid__cell--hidden\@xsmall {
    display: none;
  }

  .o-grid__cell--visible\@xsmall {
    display: inline-block;
  }

  .o-grid__cell--width-5\@xsmall {
    flex: 0 0 5%;
    max-width: 5%;
  }

  .o-grid__cell--offset-5\@xsmall {
    margin-left: 5%;
  }

  .o-grid__cell--width-fixed\@xsmall {
    flex: 0 1 auto;
  }

  .o-grid__cell--hidden\@xsmall {
    display: none;
  }

  .o-grid__cell--visible\@xsmall {
    display: inline-block;
  }

  .o-grid__cell--width-10\@xsmall {
    flex: 0 0 10%;
    max-width: 10%;
  }

  .o-grid__cell--offset-10\@xsmall {
    margin-left: 10%;
  }

  .o-grid__cell--width-fixed\@xsmall {
    flex: 0 1 auto;
  }

  .o-grid__cell--hidden\@xsmall {
    display: none;
  }

  .o-grid__cell--visible\@xsmall {
    display: inline-block;
  }

  .o-grid__cell--width-15\@xsmall {
    flex: 0 0 15%;
    max-width: 15%;
  }

  .o-grid__cell--offset-15\@xsmall {
    margin-left: 15%;
  }

  .o-grid__cell--width-fixed\@xsmall {
    flex: 0 1 auto;
  }

  .o-grid__cell--hidden\@xsmall {
    display: none;
  }

  .o-grid__cell--visible\@xsmall {
    display: inline-block;
  }

  .o-grid__cell--width-20\@xsmall {
    flex: 0 0 20%;
    max-width: 20%;
  }

  .o-grid__cell--offset-20\@xsmall {
    margin-left: 20%;
  }

  .o-grid__cell--width-fixed\@xsmall {
    flex: 0 1 auto;
  }

  .o-grid__cell--hidden\@xsmall {
    display: none;
  }

  .o-grid__cell--visible\@xsmall {
    display: inline-block;
  }

  .o-grid__cell--width-25\@xsmall {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .o-grid__cell--offset-25\@xsmall {
    margin-left: 25%;
  }

  .o-grid__cell--width-fixed\@xsmall {
    flex: 0 1 auto;
  }

  .o-grid__cell--hidden\@xsmall {
    display: none;
  }

  .o-grid__cell--visible\@xsmall {
    display: inline-block;
  }

  .o-grid__cell--width-30\@xsmall {
    flex: 0 0 30%;
    max-width: 30%;
  }

  .o-grid__cell--offset-30\@xsmall {
    margin-left: 30%;
  }

  .o-grid__cell--width-fixed\@xsmall {
    flex: 0 1 auto;
  }

  .o-grid__cell--hidden\@xsmall {
    display: none;
  }

  .o-grid__cell--visible\@xsmall {
    display: inline-block;
  }

  .o-grid__cell--width-33\@xsmall {
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }

  .o-grid__cell--offset-33\@xsmall {
    margin-left: 33.33333%;
  }

  .o-grid__cell--width-fixed\@xsmall {
    flex: 0 1 auto;
  }

  .o-grid__cell--hidden\@xsmall {
    display: none;
  }

  .o-grid__cell--visible\@xsmall {
    display: inline-block;
  }

  .o-grid__cell--width-35\@xsmall {
    flex: 0 0 35%;
    max-width: 35%;
  }

  .o-grid__cell--offset-35\@xsmall {
    margin-left: 35%;
  }

  .o-grid__cell--width-fixed\@xsmall {
    flex: 0 1 auto;
  }

  .o-grid__cell--hidden\@xsmall {
    display: none;
  }

  .o-grid__cell--visible\@xsmall {
    display: inline-block;
  }

  .o-grid__cell--width-40\@xsmall {
    flex: 0 0 40%;
    max-width: 40%;
  }

  .o-grid__cell--offset-40\@xsmall {
    margin-left: 40%;
  }

  .o-grid__cell--width-fixed\@xsmall {
    flex: 0 1 auto;
  }

  .o-grid__cell--hidden\@xsmall {
    display: none;
  }

  .o-grid__cell--visible\@xsmall {
    display: inline-block;
  }

  .o-grid__cell--width-45\@xsmall {
    flex: 0 0 45%;
    max-width: 45%;
  }

  .o-grid__cell--offset-45\@xsmall {
    margin-left: 45%;
  }

  .o-grid__cell--width-fixed\@xsmall {
    flex: 0 1 auto;
  }

  .o-grid__cell--hidden\@xsmall {
    display: none;
  }

  .o-grid__cell--visible\@xsmall {
    display: inline-block;
  }

  .o-grid__cell--width-50\@xsmall {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .o-grid__cell--offset-50\@xsmall {
    margin-left: 50%;
  }

  .o-grid__cell--width-fixed\@xsmall {
    flex: 0 1 auto;
  }

  .o-grid__cell--hidden\@xsmall {
    display: none;
  }

  .o-grid__cell--visible\@xsmall {
    display: inline-block;
  }

  .o-grid__cell--width-55\@xsmall {
    flex: 0 0 55%;
    max-width: 55%;
  }

  .o-grid__cell--offset-55\@xsmall {
    margin-left: 55%;
  }

  .o-grid__cell--width-fixed\@xsmall {
    flex: 0 1 auto;
  }

  .o-grid__cell--hidden\@xsmall {
    display: none;
  }

  .o-grid__cell--visible\@xsmall {
    display: inline-block;
  }

  .o-grid__cell--width-60\@xsmall {
    flex: 0 0 60%;
    max-width: 60%;
  }

  .o-grid__cell--offset-60\@xsmall {
    margin-left: 60%;
  }

  .o-grid__cell--width-fixed\@xsmall {
    flex: 0 1 auto;
  }

  .o-grid__cell--hidden\@xsmall {
    display: none;
  }

  .o-grid__cell--visible\@xsmall {
    display: inline-block;
  }

  .o-grid__cell--width-65\@xsmall {
    flex: 0 0 65%;
    max-width: 65%;
  }

  .o-grid__cell--offset-65\@xsmall {
    margin-left: 65%;
  }

  .o-grid__cell--width-fixed\@xsmall {
    flex: 0 1 auto;
  }

  .o-grid__cell--hidden\@xsmall {
    display: none;
  }

  .o-grid__cell--visible\@xsmall {
    display: inline-block;
  }

  .o-grid__cell--width-66\@xsmall {
    flex: 0 0 66.66667%;
    max-width: 66.66667%;
  }

  .o-grid__cell--offset-66\@xsmall {
    margin-left: 66.66667%;
  }

  .o-grid__cell--width-fixed\@xsmall {
    flex: 0 1 auto;
  }

  .o-grid__cell--hidden\@xsmall {
    display: none;
  }

  .o-grid__cell--visible\@xsmall {
    display: inline-block;
  }

  .o-grid__cell--width-70\@xsmall {
    flex: 0 0 70%;
    max-width: 70%;
  }

  .o-grid__cell--offset-70\@xsmall {
    margin-left: 70%;
  }

  .o-grid__cell--width-fixed\@xsmall {
    flex: 0 1 auto;
  }

  .o-grid__cell--hidden\@xsmall {
    display: none;
  }

  .o-grid__cell--visible\@xsmall {
    display: inline-block;
  }

  .o-grid__cell--width-75\@xsmall {
    flex: 0 0 75%;
    max-width: 75%;
  }

  .o-grid__cell--offset-75\@xsmall {
    margin-left: 75%;
  }

  .o-grid__cell--width-fixed\@xsmall {
    flex: 0 1 auto;
  }

  .o-grid__cell--hidden\@xsmall {
    display: none;
  }

  .o-grid__cell--visible\@xsmall {
    display: inline-block;
  }

  .o-grid__cell--width-80\@xsmall {
    flex: 0 0 80%;
    max-width: 80%;
  }

  .o-grid__cell--offset-80\@xsmall {
    margin-left: 80%;
  }

  .o-grid__cell--width-fixed\@xsmall {
    flex: 0 1 auto;
  }

  .o-grid__cell--hidden\@xsmall {
    display: none;
  }

  .o-grid__cell--visible\@xsmall {
    display: inline-block;
  }

  .o-grid__cell--width-85\@xsmall {
    flex: 0 0 85%;
    max-width: 85%;
  }

  .o-grid__cell--offset-85\@xsmall {
    margin-left: 85%;
  }

  .o-grid__cell--width-fixed\@xsmall {
    flex: 0 1 auto;
  }

  .o-grid__cell--hidden\@xsmall {
    display: none;
  }

  .o-grid__cell--visible\@xsmall {
    display: inline-block;
  }

  .o-grid__cell--width-90\@xsmall {
    flex: 0 0 90%;
    max-width: 90%;
  }

  .o-grid__cell--offset-90\@xsmall {
    margin-left: 90%;
  }

  .o-grid__cell--width-fixed\@xsmall {
    flex: 0 1 auto;
  }

  .o-grid__cell--hidden\@xsmall {
    display: none;
  }

  .o-grid__cell--visible\@xsmall {
    display: inline-block;
  }

  .o-grid__cell--width-95\@xsmall {
    flex: 0 0 95%;
    max-width: 95%;
  }

  .o-grid__cell--offset-95\@xsmall {
    margin-left: 95%;
  }

  .o-grid__cell--width-fixed\@xsmall {
    flex: 0 1 auto;
  }

  .o-grid__cell--hidden\@xsmall {
    display: none;
  }

  .o-grid__cell--visible\@xsmall {
    display: inline-block;
  }

  .o-grid__cell--width-100\@xsmall {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .o-grid__cell--offset-100\@xsmall {
    margin-left: 100%;
  }

  .o-grid__cell--width-fixed\@xsmall {
    flex: 0 1 auto;
  }
}

@media (min-width: 30em) {
  .o-grid__cell--hidden\@small {
    display: none;
  }

  .o-grid__cell--visible\@small {
    display: inline-block;
  }

  .o-grid__cell--width-5\@small {
    flex: 0 0 5%;
    max-width: 5%;
  }

  .o-grid__cell--offset-5\@small {
    margin-left: 5%;
  }

  .o-grid__cell--width-fixed\@small {
    flex: 0 1 auto;
  }

  .o-grid__cell--hidden\@small {
    display: none;
  }

  .o-grid__cell--visible\@small {
    display: inline-block;
  }

  .o-grid__cell--width-10\@small {
    flex: 0 0 10%;
    max-width: 10%;
  }

  .o-grid__cell--offset-10\@small {
    margin-left: 10%;
  }

  .o-grid__cell--width-fixed\@small {
    flex: 0 1 auto;
  }

  .o-grid__cell--hidden\@small {
    display: none;
  }

  .o-grid__cell--visible\@small {
    display: inline-block;
  }

  .o-grid__cell--width-15\@small {
    flex: 0 0 15%;
    max-width: 15%;
  }

  .o-grid__cell--offset-15\@small {
    margin-left: 15%;
  }

  .o-grid__cell--width-fixed\@small {
    flex: 0 1 auto;
  }

  .o-grid__cell--hidden\@small {
    display: none;
  }

  .o-grid__cell--visible\@small {
    display: inline-block;
  }

  .o-grid__cell--width-20\@small {
    flex: 0 0 20%;
    max-width: 20%;
  }

  .o-grid__cell--offset-20\@small {
    margin-left: 20%;
  }

  .o-grid__cell--width-fixed\@small {
    flex: 0 1 auto;
  }

  .o-grid__cell--hidden\@small {
    display: none;
  }

  .o-grid__cell--visible\@small {
    display: inline-block;
  }

  .o-grid__cell--width-25\@small {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .o-grid__cell--offset-25\@small {
    margin-left: 25%;
  }

  .o-grid__cell--width-fixed\@small {
    flex: 0 1 auto;
  }

  .o-grid__cell--hidden\@small {
    display: none;
  }

  .o-grid__cell--visible\@small {
    display: inline-block;
  }

  .o-grid__cell--width-30\@small {
    flex: 0 0 30%;
    max-width: 30%;
  }

  .o-grid__cell--offset-30\@small {
    margin-left: 30%;
  }

  .o-grid__cell--width-fixed\@small {
    flex: 0 1 auto;
  }

  .o-grid__cell--hidden\@small {
    display: none;
  }

  .o-grid__cell--visible\@small {
    display: inline-block;
  }

  .o-grid__cell--width-33\@small {
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }

  .o-grid__cell--offset-33\@small {
    margin-left: 33.33333%;
  }

  .o-grid__cell--width-fixed\@small {
    flex: 0 1 auto;
  }

  .o-grid__cell--hidden\@small {
    display: none;
  }

  .o-grid__cell--visible\@small {
    display: inline-block;
  }

  .o-grid__cell--width-35\@small {
    flex: 0 0 35%;
    max-width: 35%;
  }

  .o-grid__cell--offset-35\@small {
    margin-left: 35%;
  }

  .o-grid__cell--width-fixed\@small {
    flex: 0 1 auto;
  }

  .o-grid__cell--hidden\@small {
    display: none;
  }

  .o-grid__cell--visible\@small {
    display: inline-block;
  }

  .o-grid__cell--width-40\@small {
    flex: 0 0 40%;
    max-width: 40%;
  }

  .o-grid__cell--offset-40\@small {
    margin-left: 40%;
  }

  .o-grid__cell--width-fixed\@small {
    flex: 0 1 auto;
  }

  .o-grid__cell--hidden\@small {
    display: none;
  }

  .o-grid__cell--visible\@small {
    display: inline-block;
  }

  .o-grid__cell--width-45\@small {
    flex: 0 0 45%;
    max-width: 45%;
  }

  .o-grid__cell--offset-45\@small {
    margin-left: 45%;
  }

  .o-grid__cell--width-fixed\@small {
    flex: 0 1 auto;
  }

  .o-grid__cell--hidden\@small {
    display: none;
  }

  .o-grid__cell--visible\@small {
    display: inline-block;
  }

  .o-grid__cell--width-50\@small {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .o-grid__cell--offset-50\@small {
    margin-left: 50%;
  }

  .o-grid__cell--width-fixed\@small {
    flex: 0 1 auto;
  }

  .o-grid__cell--hidden\@small {
    display: none;
  }

  .o-grid__cell--visible\@small {
    display: inline-block;
  }

  .o-grid__cell--width-55\@small {
    flex: 0 0 55%;
    max-width: 55%;
  }

  .o-grid__cell--offset-55\@small {
    margin-left: 55%;
  }

  .o-grid__cell--width-fixed\@small {
    flex: 0 1 auto;
  }

  .o-grid__cell--hidden\@small {
    display: none;
  }

  .o-grid__cell--visible\@small {
    display: inline-block;
  }

  .o-grid__cell--width-60\@small {
    flex: 0 0 60%;
    max-width: 60%;
  }

  .o-grid__cell--offset-60\@small {
    margin-left: 60%;
  }

  .o-grid__cell--width-fixed\@small {
    flex: 0 1 auto;
  }

  .o-grid__cell--hidden\@small {
    display: none;
  }

  .o-grid__cell--visible\@small {
    display: inline-block;
  }

  .o-grid__cell--width-65\@small {
    flex: 0 0 65%;
    max-width: 65%;
  }

  .o-grid__cell--offset-65\@small {
    margin-left: 65%;
  }

  .o-grid__cell--width-fixed\@small {
    flex: 0 1 auto;
  }

  .o-grid__cell--hidden\@small {
    display: none;
  }

  .o-grid__cell--visible\@small {
    display: inline-block;
  }

  .o-grid__cell--width-66\@small {
    flex: 0 0 66.66667%;
    max-width: 66.66667%;
  }

  .o-grid__cell--offset-66\@small {
    margin-left: 66.66667%;
  }

  .o-grid__cell--width-fixed\@small {
    flex: 0 1 auto;
  }

  .o-grid__cell--hidden\@small {
    display: none;
  }

  .o-grid__cell--visible\@small {
    display: inline-block;
  }

  .o-grid__cell--width-70\@small {
    flex: 0 0 70%;
    max-width: 70%;
  }

  .o-grid__cell--offset-70\@small {
    margin-left: 70%;
  }

  .o-grid__cell--width-fixed\@small {
    flex: 0 1 auto;
  }

  .o-grid__cell--hidden\@small {
    display: none;
  }

  .o-grid__cell--visible\@small {
    display: inline-block;
  }

  .o-grid__cell--width-75\@small {
    flex: 0 0 75%;
    max-width: 75%;
  }

  .o-grid__cell--offset-75\@small {
    margin-left: 75%;
  }

  .o-grid__cell--width-fixed\@small {
    flex: 0 1 auto;
  }

  .o-grid__cell--hidden\@small {
    display: none;
  }

  .o-grid__cell--visible\@small {
    display: inline-block;
  }

  .o-grid__cell--width-80\@small {
    flex: 0 0 80%;
    max-width: 80%;
  }

  .o-grid__cell--offset-80\@small {
    margin-left: 80%;
  }

  .o-grid__cell--width-fixed\@small {
    flex: 0 1 auto;
  }

  .o-grid__cell--hidden\@small {
    display: none;
  }

  .o-grid__cell--visible\@small {
    display: inline-block;
  }

  .o-grid__cell--width-85\@small {
    flex: 0 0 85%;
    max-width: 85%;
  }

  .o-grid__cell--offset-85\@small {
    margin-left: 85%;
  }

  .o-grid__cell--width-fixed\@small {
    flex: 0 1 auto;
  }

  .o-grid__cell--hidden\@small {
    display: none;
  }

  .o-grid__cell--visible\@small {
    display: inline-block;
  }

  .o-grid__cell--width-90\@small {
    flex: 0 0 90%;
    max-width: 90%;
  }

  .o-grid__cell--offset-90\@small {
    margin-left: 90%;
  }

  .o-grid__cell--width-fixed\@small {
    flex: 0 1 auto;
  }

  .o-grid__cell--hidden\@small {
    display: none;
  }

  .o-grid__cell--visible\@small {
    display: inline-block;
  }

  .o-grid__cell--width-95\@small {
    flex: 0 0 95%;
    max-width: 95%;
  }

  .o-grid__cell--offset-95\@small {
    margin-left: 95%;
  }

  .o-grid__cell--width-fixed\@small {
    flex: 0 1 auto;
  }

  .o-grid__cell--hidden\@small {
    display: none;
  }

  .o-grid__cell--visible\@small {
    display: inline-block;
  }

  .o-grid__cell--width-100\@small {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .o-grid__cell--offset-100\@small {
    margin-left: 100%;
  }

  .o-grid__cell--width-fixed\@small {
    flex: 0 1 auto;
  }
}

@media (min-width: 48em) {
  .o-grid__cell--hidden\@medium {
    display: none;
  }

  .o-grid__cell--visible\@medium {
    display: inline-block;
  }

  .o-grid__cell--width-5\@medium {
    flex: 0 0 5%;
    max-width: 5%;
  }

  .o-grid__cell--offset-5\@medium {
    margin-left: 5%;
  }

  .o-grid__cell--width-fixed\@medium {
    flex: 0 1 auto;
  }

  .o-grid__cell--hidden\@medium {
    display: none;
  }

  .o-grid__cell--visible\@medium {
    display: inline-block;
  }

  .o-grid__cell--width-10\@medium {
    flex: 0 0 10%;
    max-width: 10%;
  }

  .o-grid__cell--offset-10\@medium {
    margin-left: 10%;
  }

  .o-grid__cell--width-fixed\@medium {
    flex: 0 1 auto;
  }

  .o-grid__cell--hidden\@medium {
    display: none;
  }

  .o-grid__cell--visible\@medium {
    display: inline-block;
  }

  .o-grid__cell--width-15\@medium {
    flex: 0 0 15%;
    max-width: 15%;
  }

  .o-grid__cell--offset-15\@medium {
    margin-left: 15%;
  }

  .o-grid__cell--width-fixed\@medium {
    flex: 0 1 auto;
  }

  .o-grid__cell--hidden\@medium {
    display: none;
  }

  .o-grid__cell--visible\@medium {
    display: inline-block;
  }

  .o-grid__cell--width-20\@medium {
    flex: 0 0 20%;
    max-width: 20%;
  }

  .o-grid__cell--offset-20\@medium {
    margin-left: 20%;
  }

  .o-grid__cell--width-fixed\@medium {
    flex: 0 1 auto;
  }

  .o-grid__cell--hidden\@medium {
    display: none;
  }

  .o-grid__cell--visible\@medium {
    display: inline-block;
  }

  .o-grid__cell--width-25\@medium {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .o-grid__cell--offset-25\@medium {
    margin-left: 25%;
  }

  .o-grid__cell--width-fixed\@medium {
    flex: 0 1 auto;
  }

  .o-grid__cell--hidden\@medium {
    display: none;
  }

  .o-grid__cell--visible\@medium {
    display: inline-block;
  }

  .o-grid__cell--width-30\@medium {
    flex: 0 0 30%;
    max-width: 30%;
  }

  .o-grid__cell--offset-30\@medium {
    margin-left: 30%;
  }

  .o-grid__cell--width-fixed\@medium {
    flex: 0 1 auto;
  }

  .o-grid__cell--hidden\@medium {
    display: none;
  }

  .o-grid__cell--visible\@medium {
    display: inline-block;
  }

  .o-grid__cell--width-33\@medium {
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }

  .o-grid__cell--offset-33\@medium {
    margin-left: 33.33333%;
  }

  .o-grid__cell--width-fixed\@medium {
    flex: 0 1 auto;
  }

  .o-grid__cell--hidden\@medium {
    display: none;
  }

  .o-grid__cell--visible\@medium {
    display: inline-block;
  }

  .o-grid__cell--width-35\@medium {
    flex: 0 0 35%;
    max-width: 35%;
  }

  .o-grid__cell--offset-35\@medium {
    margin-left: 35%;
  }

  .o-grid__cell--width-fixed\@medium {
    flex: 0 1 auto;
  }

  .o-grid__cell--hidden\@medium {
    display: none;
  }

  .o-grid__cell--visible\@medium {
    display: inline-block;
  }

  .o-grid__cell--width-40\@medium {
    flex: 0 0 40%;
    max-width: 40%;
  }

  .o-grid__cell--offset-40\@medium {
    margin-left: 40%;
  }

  .o-grid__cell--width-fixed\@medium {
    flex: 0 1 auto;
  }

  .o-grid__cell--hidden\@medium {
    display: none;
  }

  .o-grid__cell--visible\@medium {
    display: inline-block;
  }

  .o-grid__cell--width-45\@medium {
    flex: 0 0 45%;
    max-width: 45%;
  }

  .o-grid__cell--offset-45\@medium {
    margin-left: 45%;
  }

  .o-grid__cell--width-fixed\@medium {
    flex: 0 1 auto;
  }

  .o-grid__cell--hidden\@medium {
    display: none;
  }

  .o-grid__cell--visible\@medium {
    display: inline-block;
  }

  .o-grid__cell--width-50\@medium {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .o-grid__cell--offset-50\@medium {
    margin-left: 50%;
  }

  .o-grid__cell--width-fixed\@medium {
    flex: 0 1 auto;
  }

  .o-grid__cell--hidden\@medium {
    display: none;
  }

  .o-grid__cell--visible\@medium {
    display: inline-block;
  }

  .o-grid__cell--width-55\@medium {
    flex: 0 0 55%;
    max-width: 55%;
  }

  .o-grid__cell--offset-55\@medium {
    margin-left: 55%;
  }

  .o-grid__cell--width-fixed\@medium {
    flex: 0 1 auto;
  }

  .o-grid__cell--hidden\@medium {
    display: none;
  }

  .o-grid__cell--visible\@medium {
    display: inline-block;
  }

  .o-grid__cell--width-60\@medium {
    flex: 0 0 60%;
    max-width: 60%;
  }

  .o-grid__cell--offset-60\@medium {
    margin-left: 60%;
  }

  .o-grid__cell--width-fixed\@medium {
    flex: 0 1 auto;
  }

  .o-grid__cell--hidden\@medium {
    display: none;
  }

  .o-grid__cell--visible\@medium {
    display: inline-block;
  }

  .o-grid__cell--width-65\@medium {
    flex: 0 0 65%;
    max-width: 65%;
  }

  .o-grid__cell--offset-65\@medium {
    margin-left: 65%;
  }

  .o-grid__cell--width-fixed\@medium {
    flex: 0 1 auto;
  }

  .o-grid__cell--hidden\@medium {
    display: none;
  }

  .o-grid__cell--visible\@medium {
    display: inline-block;
  }

  .o-grid__cell--width-66\@medium {
    flex: 0 0 66.66667%;
    max-width: 66.66667%;
  }

  .o-grid__cell--offset-66\@medium {
    margin-left: 66.66667%;
  }

  .o-grid__cell--width-fixed\@medium {
    flex: 0 1 auto;
  }

  .o-grid__cell--hidden\@medium {
    display: none;
  }

  .o-grid__cell--visible\@medium {
    display: inline-block;
  }

  .o-grid__cell--width-70\@medium {
    flex: 0 0 70%;
    max-width: 70%;
  }

  .o-grid__cell--offset-70\@medium {
    margin-left: 70%;
  }

  .o-grid__cell--width-fixed\@medium {
    flex: 0 1 auto;
  }

  .o-grid__cell--hidden\@medium {
    display: none;
  }

  .o-grid__cell--visible\@medium {
    display: inline-block;
  }

  .o-grid__cell--width-75\@medium {
    flex: 0 0 75%;
    max-width: 75%;
  }

  .o-grid__cell--offset-75\@medium {
    margin-left: 75%;
  }

  .o-grid__cell--width-fixed\@medium {
    flex: 0 1 auto;
  }

  .o-grid__cell--hidden\@medium {
    display: none;
  }

  .o-grid__cell--visible\@medium {
    display: inline-block;
  }

  .o-grid__cell--width-80\@medium {
    flex: 0 0 80%;
    max-width: 80%;
  }

  .o-grid__cell--offset-80\@medium {
    margin-left: 80%;
  }

  .o-grid__cell--width-fixed\@medium {
    flex: 0 1 auto;
  }

  .o-grid__cell--hidden\@medium {
    display: none;
  }

  .o-grid__cell--visible\@medium {
    display: inline-block;
  }

  .o-grid__cell--width-85\@medium {
    flex: 0 0 85%;
    max-width: 85%;
  }

  .o-grid__cell--offset-85\@medium {
    margin-left: 85%;
  }

  .o-grid__cell--width-fixed\@medium {
    flex: 0 1 auto;
  }

  .o-grid__cell--hidden\@medium {
    display: none;
  }

  .o-grid__cell--visible\@medium {
    display: inline-block;
  }

  .o-grid__cell--width-90\@medium {
    flex: 0 0 90%;
    max-width: 90%;
  }

  .o-grid__cell--offset-90\@medium {
    margin-left: 90%;
  }

  .o-grid__cell--width-fixed\@medium {
    flex: 0 1 auto;
  }

  .o-grid__cell--hidden\@medium {
    display: none;
  }

  .o-grid__cell--visible\@medium {
    display: inline-block;
  }

  .o-grid__cell--width-95\@medium {
    flex: 0 0 95%;
    max-width: 95%;
  }

  .o-grid__cell--offset-95\@medium {
    margin-left: 95%;
  }

  .o-grid__cell--width-fixed\@medium {
    flex: 0 1 auto;
  }

  .o-grid__cell--hidden\@medium {
    display: none;
  }

  .o-grid__cell--visible\@medium {
    display: inline-block;
  }

  .o-grid__cell--width-100\@medium {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .o-grid__cell--offset-100\@medium {
    margin-left: 100%;
  }

  .o-grid__cell--width-fixed\@medium {
    flex: 0 1 auto;
  }
}

@media (min-width: 64em) {
  .o-grid__cell--hidden\@large {
    display: none;
  }

  .o-grid__cell--visible\@large {
    display: inline-block;
  }

  .o-grid__cell--width-5\@large {
    flex: 0 0 5%;
    max-width: 5%;
  }

  .o-grid__cell--offset-5\@large {
    margin-left: 5%;
  }

  .o-grid__cell--width-fixed\@large {
    flex: 0 1 auto;
  }

  .o-grid__cell--hidden\@large {
    display: none;
  }

  .o-grid__cell--visible\@large {
    display: inline-block;
  }

  .o-grid__cell--width-10\@large {
    flex: 0 0 10%;
    max-width: 10%;
  }

  .o-grid__cell--offset-10\@large {
    margin-left: 10%;
  }

  .o-grid__cell--width-fixed\@large {
    flex: 0 1 auto;
  }

  .o-grid__cell--hidden\@large {
    display: none;
  }

  .o-grid__cell--visible\@large {
    display: inline-block;
  }

  .o-grid__cell--width-15\@large {
    flex: 0 0 15%;
    max-width: 15%;
  }

  .o-grid__cell--offset-15\@large {
    margin-left: 15%;
  }

  .o-grid__cell--width-fixed\@large {
    flex: 0 1 auto;
  }

  .o-grid__cell--hidden\@large {
    display: none;
  }

  .o-grid__cell--visible\@large {
    display: inline-block;
  }

  .o-grid__cell--width-20\@large {
    flex: 0 0 20%;
    max-width: 20%;
  }

  .o-grid__cell--offset-20\@large {
    margin-left: 20%;
  }

  .o-grid__cell--width-fixed\@large {
    flex: 0 1 auto;
  }

  .o-grid__cell--hidden\@large {
    display: none;
  }

  .o-grid__cell--visible\@large {
    display: inline-block;
  }

  .o-grid__cell--width-25\@large {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .o-grid__cell--offset-25\@large {
    margin-left: 25%;
  }

  .o-grid__cell--width-fixed\@large {
    flex: 0 1 auto;
  }

  .o-grid__cell--hidden\@large {
    display: none;
  }

  .o-grid__cell--visible\@large {
    display: inline-block;
  }

  .o-grid__cell--width-30\@large {
    flex: 0 0 30%;
    max-width: 30%;
  }

  .o-grid__cell--offset-30\@large {
    margin-left: 30%;
  }

  .o-grid__cell--width-fixed\@large {
    flex: 0 1 auto;
  }

  .o-grid__cell--hidden\@large {
    display: none;
  }

  .o-grid__cell--visible\@large {
    display: inline-block;
  }

  .o-grid__cell--width-33\@large {
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }

  .o-grid__cell--offset-33\@large {
    margin-left: 33.33333%;
  }

  .o-grid__cell--width-fixed\@large {
    flex: 0 1 auto;
  }

  .o-grid__cell--hidden\@large {
    display: none;
  }

  .o-grid__cell--visible\@large {
    display: inline-block;
  }

  .o-grid__cell--width-35\@large {
    flex: 0 0 35%;
    max-width: 35%;
  }

  .o-grid__cell--offset-35\@large {
    margin-left: 35%;
  }

  .o-grid__cell--width-fixed\@large {
    flex: 0 1 auto;
  }

  .o-grid__cell--hidden\@large {
    display: none;
  }

  .o-grid__cell--visible\@large {
    display: inline-block;
  }

  .o-grid__cell--width-40\@large {
    flex: 0 0 40%;
    max-width: 40%;
  }

  .o-grid__cell--offset-40\@large {
    margin-left: 40%;
  }

  .o-grid__cell--width-fixed\@large {
    flex: 0 1 auto;
  }

  .o-grid__cell--hidden\@large {
    display: none;
  }

  .o-grid__cell--visible\@large {
    display: inline-block;
  }

  .o-grid__cell--width-45\@large {
    flex: 0 0 45%;
    max-width: 45%;
  }

  .o-grid__cell--offset-45\@large {
    margin-left: 45%;
  }

  .o-grid__cell--width-fixed\@large {
    flex: 0 1 auto;
  }

  .o-grid__cell--hidden\@large {
    display: none;
  }

  .o-grid__cell--visible\@large {
    display: inline-block;
  }

  .o-grid__cell--width-50\@large {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .o-grid__cell--offset-50\@large {
    margin-left: 50%;
  }

  .o-grid__cell--width-fixed\@large {
    flex: 0 1 auto;
  }

  .o-grid__cell--hidden\@large {
    display: none;
  }

  .o-grid__cell--visible\@large {
    display: inline-block;
  }

  .o-grid__cell--width-55\@large {
    flex: 0 0 55%;
    max-width: 55%;
  }

  .o-grid__cell--offset-55\@large {
    margin-left: 55%;
  }

  .o-grid__cell--width-fixed\@large {
    flex: 0 1 auto;
  }

  .o-grid__cell--hidden\@large {
    display: none;
  }

  .o-grid__cell--visible\@large {
    display: inline-block;
  }

  .o-grid__cell--width-60\@large {
    flex: 0 0 60%;
    max-width: 60%;
  }

  .o-grid__cell--offset-60\@large {
    margin-left: 60%;
  }

  .o-grid__cell--width-fixed\@large {
    flex: 0 1 auto;
  }

  .o-grid__cell--hidden\@large {
    display: none;
  }

  .o-grid__cell--visible\@large {
    display: inline-block;
  }

  .o-grid__cell--width-65\@large {
    flex: 0 0 65%;
    max-width: 65%;
  }

  .o-grid__cell--offset-65\@large {
    margin-left: 65%;
  }

  .o-grid__cell--width-fixed\@large {
    flex: 0 1 auto;
  }

  .o-grid__cell--hidden\@large {
    display: none;
  }

  .o-grid__cell--visible\@large {
    display: inline-block;
  }

  .o-grid__cell--width-66\@large {
    flex: 0 0 66.66667%;
    max-width: 66.66667%;
  }

  .o-grid__cell--offset-66\@large {
    margin-left: 66.66667%;
  }

  .o-grid__cell--width-fixed\@large {
    flex: 0 1 auto;
  }

  .o-grid__cell--hidden\@large {
    display: none;
  }

  .o-grid__cell--visible\@large {
    display: inline-block;
  }

  .o-grid__cell--width-70\@large {
    flex: 0 0 70%;
    max-width: 70%;
  }

  .o-grid__cell--offset-70\@large {
    margin-left: 70%;
  }

  .o-grid__cell--width-fixed\@large {
    flex: 0 1 auto;
  }

  .o-grid__cell--hidden\@large {
    display: none;
  }

  .o-grid__cell--visible\@large {
    display: inline-block;
  }

  .o-grid__cell--width-75\@large {
    flex: 0 0 75%;
    max-width: 75%;
  }

  .o-grid__cell--offset-75\@large {
    margin-left: 75%;
  }

  .o-grid__cell--width-fixed\@large {
    flex: 0 1 auto;
  }

  .o-grid__cell--hidden\@large {
    display: none;
  }

  .o-grid__cell--visible\@large {
    display: inline-block;
  }

  .o-grid__cell--width-80\@large {
    flex: 0 0 80%;
    max-width: 80%;
  }

  .o-grid__cell--offset-80\@large {
    margin-left: 80%;
  }

  .o-grid__cell--width-fixed\@large {
    flex: 0 1 auto;
  }

  .o-grid__cell--hidden\@large {
    display: none;
  }

  .o-grid__cell--visible\@large {
    display: inline-block;
  }

  .o-grid__cell--width-85\@large {
    flex: 0 0 85%;
    max-width: 85%;
  }

  .o-grid__cell--offset-85\@large {
    margin-left: 85%;
  }

  .o-grid__cell--width-fixed\@large {
    flex: 0 1 auto;
  }

  .o-grid__cell--hidden\@large {
    display: none;
  }

  .o-grid__cell--visible\@large {
    display: inline-block;
  }

  .o-grid__cell--width-90\@large {
    flex: 0 0 90%;
    max-width: 90%;
  }

  .o-grid__cell--offset-90\@large {
    margin-left: 90%;
  }

  .o-grid__cell--width-fixed\@large {
    flex: 0 1 auto;
  }

  .o-grid__cell--hidden\@large {
    display: none;
  }

  .o-grid__cell--visible\@large {
    display: inline-block;
  }

  .o-grid__cell--width-95\@large {
    flex: 0 0 95%;
    max-width: 95%;
  }

  .o-grid__cell--offset-95\@large {
    margin-left: 95%;
  }

  .o-grid__cell--width-fixed\@large {
    flex: 0 1 auto;
  }

  .o-grid__cell--hidden\@large {
    display: none;
  }

  .o-grid__cell--visible\@large {
    display: inline-block;
  }

  .o-grid__cell--width-100\@large {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .o-grid__cell--offset-100\@large {
    margin-left: 100%;
  }

  .o-grid__cell--width-fixed\@large {
    flex: 0 1 auto;
  }
}

@media (min-width: 78em) {
  .o-grid__cell--hidden\@xlarge {
    display: none;
  }

  .o-grid__cell--visible\@xlarge {
    display: inline-block;
  }

  .o-grid__cell--width-5\@xlarge {
    flex: 0 0 5%;
    max-width: 5%;
  }

  .o-grid__cell--offset-5\@xlarge {
    margin-left: 5%;
  }

  .o-grid__cell--width-fixed\@xlarge {
    flex: 0 1 auto;
  }

  .o-grid__cell--hidden\@xlarge {
    display: none;
  }

  .o-grid__cell--visible\@xlarge {
    display: inline-block;
  }

  .o-grid__cell--width-10\@xlarge {
    flex: 0 0 10%;
    max-width: 10%;
  }

  .o-grid__cell--offset-10\@xlarge {
    margin-left: 10%;
  }

  .o-grid__cell--width-fixed\@xlarge {
    flex: 0 1 auto;
  }

  .o-grid__cell--hidden\@xlarge {
    display: none;
  }

  .o-grid__cell--visible\@xlarge {
    display: inline-block;
  }

  .o-grid__cell--width-15\@xlarge {
    flex: 0 0 15%;
    max-width: 15%;
  }

  .o-grid__cell--offset-15\@xlarge {
    margin-left: 15%;
  }

  .o-grid__cell--width-fixed\@xlarge {
    flex: 0 1 auto;
  }

  .o-grid__cell--hidden\@xlarge {
    display: none;
  }

  .o-grid__cell--visible\@xlarge {
    display: inline-block;
  }

  .o-grid__cell--width-20\@xlarge {
    flex: 0 0 20%;
    max-width: 20%;
  }

  .o-grid__cell--offset-20\@xlarge {
    margin-left: 20%;
  }

  .o-grid__cell--width-fixed\@xlarge {
    flex: 0 1 auto;
  }

  .o-grid__cell--hidden\@xlarge {
    display: none;
  }

  .o-grid__cell--visible\@xlarge {
    display: inline-block;
  }

  .o-grid__cell--width-25\@xlarge {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .o-grid__cell--offset-25\@xlarge {
    margin-left: 25%;
  }

  .o-grid__cell--width-fixed\@xlarge {
    flex: 0 1 auto;
  }

  .o-grid__cell--hidden\@xlarge {
    display: none;
  }

  .o-grid__cell--visible\@xlarge {
    display: inline-block;
  }

  .o-grid__cell--width-30\@xlarge {
    flex: 0 0 30%;
    max-width: 30%;
  }

  .o-grid__cell--offset-30\@xlarge {
    margin-left: 30%;
  }

  .o-grid__cell--width-fixed\@xlarge {
    flex: 0 1 auto;
  }

  .o-grid__cell--hidden\@xlarge {
    display: none;
  }

  .o-grid__cell--visible\@xlarge {
    display: inline-block;
  }

  .o-grid__cell--width-33\@xlarge {
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }

  .o-grid__cell--offset-33\@xlarge {
    margin-left: 33.33333%;
  }

  .o-grid__cell--width-fixed\@xlarge {
    flex: 0 1 auto;
  }

  .o-grid__cell--hidden\@xlarge {
    display: none;
  }

  .o-grid__cell--visible\@xlarge {
    display: inline-block;
  }

  .o-grid__cell--width-35\@xlarge {
    flex: 0 0 35%;
    max-width: 35%;
  }

  .o-grid__cell--offset-35\@xlarge {
    margin-left: 35%;
  }

  .o-grid__cell--width-fixed\@xlarge {
    flex: 0 1 auto;
  }

  .o-grid__cell--hidden\@xlarge {
    display: none;
  }

  .o-grid__cell--visible\@xlarge {
    display: inline-block;
  }

  .o-grid__cell--width-40\@xlarge {
    flex: 0 0 40%;
    max-width: 40%;
  }

  .o-grid__cell--offset-40\@xlarge {
    margin-left: 40%;
  }

  .o-grid__cell--width-fixed\@xlarge {
    flex: 0 1 auto;
  }

  .o-grid__cell--hidden\@xlarge {
    display: none;
  }

  .o-grid__cell--visible\@xlarge {
    display: inline-block;
  }

  .o-grid__cell--width-45\@xlarge {
    flex: 0 0 45%;
    max-width: 45%;
  }

  .o-grid__cell--offset-45\@xlarge {
    margin-left: 45%;
  }

  .o-grid__cell--width-fixed\@xlarge {
    flex: 0 1 auto;
  }

  .o-grid__cell--hidden\@xlarge {
    display: none;
  }

  .o-grid__cell--visible\@xlarge {
    display: inline-block;
  }

  .o-grid__cell--width-50\@xlarge {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .o-grid__cell--offset-50\@xlarge {
    margin-left: 50%;
  }

  .o-grid__cell--width-fixed\@xlarge {
    flex: 0 1 auto;
  }

  .o-grid__cell--hidden\@xlarge {
    display: none;
  }

  .o-grid__cell--visible\@xlarge {
    display: inline-block;
  }

  .o-grid__cell--width-55\@xlarge {
    flex: 0 0 55%;
    max-width: 55%;
  }

  .o-grid__cell--offset-55\@xlarge {
    margin-left: 55%;
  }

  .o-grid__cell--width-fixed\@xlarge {
    flex: 0 1 auto;
  }

  .o-grid__cell--hidden\@xlarge {
    display: none;
  }

  .o-grid__cell--visible\@xlarge {
    display: inline-block;
  }

  .o-grid__cell--width-60\@xlarge {
    flex: 0 0 60%;
    max-width: 60%;
  }

  .o-grid__cell--offset-60\@xlarge {
    margin-left: 60%;
  }

  .o-grid__cell--width-fixed\@xlarge {
    flex: 0 1 auto;
  }

  .o-grid__cell--hidden\@xlarge {
    display: none;
  }

  .o-grid__cell--visible\@xlarge {
    display: inline-block;
  }

  .o-grid__cell--width-65\@xlarge {
    flex: 0 0 65%;
    max-width: 65%;
  }

  .o-grid__cell--offset-65\@xlarge {
    margin-left: 65%;
  }

  .o-grid__cell--width-fixed\@xlarge {
    flex: 0 1 auto;
  }

  .o-grid__cell--hidden\@xlarge {
    display: none;
  }

  .o-grid__cell--visible\@xlarge {
    display: inline-block;
  }

  .o-grid__cell--width-66\@xlarge {
    flex: 0 0 66.66667%;
    max-width: 66.66667%;
  }

  .o-grid__cell--offset-66\@xlarge {
    margin-left: 66.66667%;
  }

  .o-grid__cell--width-fixed\@xlarge {
    flex: 0 1 auto;
  }

  .o-grid__cell--hidden\@xlarge {
    display: none;
  }

  .o-grid__cell--visible\@xlarge {
    display: inline-block;
  }

  .o-grid__cell--width-70\@xlarge {
    flex: 0 0 70%;
    max-width: 70%;
  }

  .o-grid__cell--offset-70\@xlarge {
    margin-left: 70%;
  }

  .o-grid__cell--width-fixed\@xlarge {
    flex: 0 1 auto;
  }

  .o-grid__cell--hidden\@xlarge {
    display: none;
  }

  .o-grid__cell--visible\@xlarge {
    display: inline-block;
  }

  .o-grid__cell--width-75\@xlarge {
    flex: 0 0 75%;
    max-width: 75%;
  }

  .o-grid__cell--offset-75\@xlarge {
    margin-left: 75%;
  }

  .o-grid__cell--width-fixed\@xlarge {
    flex: 0 1 auto;
  }

  .o-grid__cell--hidden\@xlarge {
    display: none;
  }

  .o-grid__cell--visible\@xlarge {
    display: inline-block;
  }

  .o-grid__cell--width-80\@xlarge {
    flex: 0 0 80%;
    max-width: 80%;
  }

  .o-grid__cell--offset-80\@xlarge {
    margin-left: 80%;
  }

  .o-grid__cell--width-fixed\@xlarge {
    flex: 0 1 auto;
  }

  .o-grid__cell--hidden\@xlarge {
    display: none;
  }

  .o-grid__cell--visible\@xlarge {
    display: inline-block;
  }

  .o-grid__cell--width-85\@xlarge {
    flex: 0 0 85%;
    max-width: 85%;
  }

  .o-grid__cell--offset-85\@xlarge {
    margin-left: 85%;
  }

  .o-grid__cell--width-fixed\@xlarge {
    flex: 0 1 auto;
  }

  .o-grid__cell--hidden\@xlarge {
    display: none;
  }

  .o-grid__cell--visible\@xlarge {
    display: inline-block;
  }

  .o-grid__cell--width-90\@xlarge {
    flex: 0 0 90%;
    max-width: 90%;
  }

  .o-grid__cell--offset-90\@xlarge {
    margin-left: 90%;
  }

  .o-grid__cell--width-fixed\@xlarge {
    flex: 0 1 auto;
  }

  .o-grid__cell--hidden\@xlarge {
    display: none;
  }

  .o-grid__cell--visible\@xlarge {
    display: inline-block;
  }

  .o-grid__cell--width-95\@xlarge {
    flex: 0 0 95%;
    max-width: 95%;
  }

  .o-grid__cell--offset-95\@xlarge {
    margin-left: 95%;
  }

  .o-grid__cell--width-fixed\@xlarge {
    flex: 0 1 auto;
  }

  .o-grid__cell--hidden\@xlarge {
    display: none;
  }

  .o-grid__cell--visible\@xlarge {
    display: inline-block;
  }

  .o-grid__cell--width-100\@xlarge {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .o-grid__cell--offset-100\@xlarge {
    margin-left: 100%;
  }

  .o-grid__cell--width-fixed\@xlarge {
    flex: 0 1 auto;
  }
}

@media (min-width: 116em) {
  .o-grid__cell--hidden\@super {
    display: none;
  }

  .o-grid__cell--visible\@super {
    display: inline-block;
  }

  .o-grid__cell--width-5\@super {
    flex: 0 0 5%;
    max-width: 5%;
  }

  .o-grid__cell--offset-5\@super {
    margin-left: 5%;
  }

  .o-grid__cell--width-fixed\@super {
    flex: 0 1 auto;
  }

  .o-grid__cell--hidden\@super {
    display: none;
  }

  .o-grid__cell--visible\@super {
    display: inline-block;
  }

  .o-grid__cell--width-10\@super {
    flex: 0 0 10%;
    max-width: 10%;
  }

  .o-grid__cell--offset-10\@super {
    margin-left: 10%;
  }

  .o-grid__cell--width-fixed\@super {
    flex: 0 1 auto;
  }

  .o-grid__cell--hidden\@super {
    display: none;
  }

  .o-grid__cell--visible\@super {
    display: inline-block;
  }

  .o-grid__cell--width-15\@super {
    flex: 0 0 15%;
    max-width: 15%;
  }

  .o-grid__cell--offset-15\@super {
    margin-left: 15%;
  }

  .o-grid__cell--width-fixed\@super {
    flex: 0 1 auto;
  }

  .o-grid__cell--hidden\@super {
    display: none;
  }

  .o-grid__cell--visible\@super {
    display: inline-block;
  }

  .o-grid__cell--width-20\@super {
    flex: 0 0 20%;
    max-width: 20%;
  }

  .o-grid__cell--offset-20\@super {
    margin-left: 20%;
  }

  .o-grid__cell--width-fixed\@super {
    flex: 0 1 auto;
  }

  .o-grid__cell--hidden\@super {
    display: none;
  }

  .o-grid__cell--visible\@super {
    display: inline-block;
  }

  .o-grid__cell--width-25\@super {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .o-grid__cell--offset-25\@super {
    margin-left: 25%;
  }

  .o-grid__cell--width-fixed\@super {
    flex: 0 1 auto;
  }

  .o-grid__cell--hidden\@super {
    display: none;
  }

  .o-grid__cell--visible\@super {
    display: inline-block;
  }

  .o-grid__cell--width-30\@super {
    flex: 0 0 30%;
    max-width: 30%;
  }

  .o-grid__cell--offset-30\@super {
    margin-left: 30%;
  }

  .o-grid__cell--width-fixed\@super {
    flex: 0 1 auto;
  }

  .o-grid__cell--hidden\@super {
    display: none;
  }

  .o-grid__cell--visible\@super {
    display: inline-block;
  }

  .o-grid__cell--width-33\@super {
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }

  .o-grid__cell--offset-33\@super {
    margin-left: 33.33333%;
  }

  .o-grid__cell--width-fixed\@super {
    flex: 0 1 auto;
  }

  .o-grid__cell--hidden\@super {
    display: none;
  }

  .o-grid__cell--visible\@super {
    display: inline-block;
  }

  .o-grid__cell--width-35\@super {
    flex: 0 0 35%;
    max-width: 35%;
  }

  .o-grid__cell--offset-35\@super {
    margin-left: 35%;
  }

  .o-grid__cell--width-fixed\@super {
    flex: 0 1 auto;
  }

  .o-grid__cell--hidden\@super {
    display: none;
  }

  .o-grid__cell--visible\@super {
    display: inline-block;
  }

  .o-grid__cell--width-40\@super {
    flex: 0 0 40%;
    max-width: 40%;
  }

  .o-grid__cell--offset-40\@super {
    margin-left: 40%;
  }

  .o-grid__cell--width-fixed\@super {
    flex: 0 1 auto;
  }

  .o-grid__cell--hidden\@super {
    display: none;
  }

  .o-grid__cell--visible\@super {
    display: inline-block;
  }

  .o-grid__cell--width-45\@super {
    flex: 0 0 45%;
    max-width: 45%;
  }

  .o-grid__cell--offset-45\@super {
    margin-left: 45%;
  }

  .o-grid__cell--width-fixed\@super {
    flex: 0 1 auto;
  }

  .o-grid__cell--hidden\@super {
    display: none;
  }

  .o-grid__cell--visible\@super {
    display: inline-block;
  }

  .o-grid__cell--width-50\@super {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .o-grid__cell--offset-50\@super {
    margin-left: 50%;
  }

  .o-grid__cell--width-fixed\@super {
    flex: 0 1 auto;
  }

  .o-grid__cell--hidden\@super {
    display: none;
  }

  .o-grid__cell--visible\@super {
    display: inline-block;
  }

  .o-grid__cell--width-55\@super {
    flex: 0 0 55%;
    max-width: 55%;
  }

  .o-grid__cell--offset-55\@super {
    margin-left: 55%;
  }

  .o-grid__cell--width-fixed\@super {
    flex: 0 1 auto;
  }

  .o-grid__cell--hidden\@super {
    display: none;
  }

  .o-grid__cell--visible\@super {
    display: inline-block;
  }

  .o-grid__cell--width-60\@super {
    flex: 0 0 60%;
    max-width: 60%;
  }

  .o-grid__cell--offset-60\@super {
    margin-left: 60%;
  }

  .o-grid__cell--width-fixed\@super {
    flex: 0 1 auto;
  }

  .o-grid__cell--hidden\@super {
    display: none;
  }

  .o-grid__cell--visible\@super {
    display: inline-block;
  }

  .o-grid__cell--width-65\@super {
    flex: 0 0 65%;
    max-width: 65%;
  }

  .o-grid__cell--offset-65\@super {
    margin-left: 65%;
  }

  .o-grid__cell--width-fixed\@super {
    flex: 0 1 auto;
  }

  .o-grid__cell--hidden\@super {
    display: none;
  }

  .o-grid__cell--visible\@super {
    display: inline-block;
  }

  .o-grid__cell--width-66\@super {
    flex: 0 0 66.66667%;
    max-width: 66.66667%;
  }

  .o-grid__cell--offset-66\@super {
    margin-left: 66.66667%;
  }

  .o-grid__cell--width-fixed\@super {
    flex: 0 1 auto;
  }

  .o-grid__cell--hidden\@super {
    display: none;
  }

  .o-grid__cell--visible\@super {
    display: inline-block;
  }

  .o-grid__cell--width-70\@super {
    flex: 0 0 70%;
    max-width: 70%;
  }

  .o-grid__cell--offset-70\@super {
    margin-left: 70%;
  }

  .o-grid__cell--width-fixed\@super {
    flex: 0 1 auto;
  }

  .o-grid__cell--hidden\@super {
    display: none;
  }

  .o-grid__cell--visible\@super {
    display: inline-block;
  }

  .o-grid__cell--width-75\@super {
    flex: 0 0 75%;
    max-width: 75%;
  }

  .o-grid__cell--offset-75\@super {
    margin-left: 75%;
  }

  .o-grid__cell--width-fixed\@super {
    flex: 0 1 auto;
  }

  .o-grid__cell--hidden\@super {
    display: none;
  }

  .o-grid__cell--visible\@super {
    display: inline-block;
  }

  .o-grid__cell--width-80\@super {
    flex: 0 0 80%;
    max-width: 80%;
  }

  .o-grid__cell--offset-80\@super {
    margin-left: 80%;
  }

  .o-grid__cell--width-fixed\@super {
    flex: 0 1 auto;
  }

  .o-grid__cell--hidden\@super {
    display: none;
  }

  .o-grid__cell--visible\@super {
    display: inline-block;
  }

  .o-grid__cell--width-85\@super {
    flex: 0 0 85%;
    max-width: 85%;
  }

  .o-grid__cell--offset-85\@super {
    margin-left: 85%;
  }

  .o-grid__cell--width-fixed\@super {
    flex: 0 1 auto;
  }

  .o-grid__cell--hidden\@super {
    display: none;
  }

  .o-grid__cell--visible\@super {
    display: inline-block;
  }

  .o-grid__cell--width-90\@super {
    flex: 0 0 90%;
    max-width: 90%;
  }

  .o-grid__cell--offset-90\@super {
    margin-left: 90%;
  }

  .o-grid__cell--width-fixed\@super {
    flex: 0 1 auto;
  }

  .o-grid__cell--hidden\@super {
    display: none;
  }

  .o-grid__cell--visible\@super {
    display: inline-block;
  }

  .o-grid__cell--width-95\@super {
    flex: 0 0 95%;
    max-width: 95%;
  }

  .o-grid__cell--offset-95\@super {
    margin-left: 95%;
  }

  .o-grid__cell--width-fixed\@super {
    flex: 0 1 auto;
  }

  .o-grid__cell--hidden\@super {
    display: none;
  }

  .o-grid__cell--visible\@super {
    display: inline-block;
  }

  .o-grid__cell--width-100\@super {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .o-grid__cell--offset-100\@super {
    margin-left: 100%;
  }

  .o-grid__cell--width-fixed\@super {
    flex: 0 1 auto;
  }
}

.o-hr--margin {
  margin: 10px 0;
}

.o-layout-flex__container {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-around;
}

.o-layout-flex--spacer {
  flex: 1;
}

.o-links {
  color: #2196F3;
}

@media only screen and (max-width: 768px) {
  footer {
    height: 220px;
  }

  footer ul {
    margin: auto;
  }

  footer .f-logo {
    float: none;
    text-align: center;
  }

  footer .copyright {
    text-align: center;
  }
}

.o-nav {
  display: block;
  width: 100%;
}

.o-nav__tab-bar {
  list-style: none;
}

.o-nav__tab-bar ul {
  display: flex;
  flex-flow: row wrap;
  font-size: 16px;
}

.o-nav__tab-bar ul li {
  color: #FFF;
}

.o-nav__tab-bar ul li a {
  color: #FFF;
}

.font-thin {
  font-family: "Roboto Thin";
}

.font-light {
  font-family: "Roboto Light";
}

.font-regular {
  font-family: "Roboto";
}

.font-medium {
  font-family: "Roboto Medium";
}

.font-bold {
  font-family: "Roboto Bold";
}

.font-black {
  font-family: "Roboto Black";
}

.c-alerts {
  background-color: #96a8b2;
  color: #FFF;
  position: relative;
  margin: 0 0 1em 0;
  padding: 1em 3em 1em 1em;
  border-radius: 4px;
  line-height: 2.29;
}

.c-alert,
.c-msg {
  background-color: #96a8b2;
  color: #FFF;
  display: none;
  position: fixed;
  width: 250px;
  height: 250px;
  z-index: 999;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  padding: 1em;
  border-radius: 4px;
  line-height: 2.29;
}

.c-alert--brand {
  background-color: #2C3E50;
  color: #FFF;
}

.c-alert--info {
  background-color: #2196F3;
  color: #FFF;
}

.c-alert--warning {
  background-color: #F57C00;
  color: #FFF;
}

.c-alert--success {
  background-color: #388E3C;
  color: #FFF;
}

.c-alert--error {
  background-color: #C62828;
  color: #FFF;
}

.c-alert-title {
  color: #FFF;
}

.c-alert-title span {
  color: #FFF;
}

.c-msg {
  height: 80px;
}

.c-msg .c-alert-title span {
  line-height: 2.29;
}

.c-button {
  display: inline-block;
  max-width: 100%;
  line-height: 36px;
  margin: 6px;
  font-family: "Roboto Medium";
  font-size: 14px;
  font-weight: 500;
  text-overflow: ellipsis;
  vertical-align: middle;
  user-select: none;
  text-transform: uppercase;
  cursor: pointer;
  outline: none;
  border: none;
  background:#fff;
}

.c-button--primary {
  font-family: "Roboto Medium";
  color: #FFF;
  background-color: #1976D2;
  padding: 0 16px;
  min-height: 36px;
  border-radius: 2px;
}

.c-button--primary:not(:disabled):hover {
  background-color: #1565C0;
}

.c-button--primary:disabled {
  color: #9E9E9E;
  background-color: #E0E0E0;
  cursor: not-allowed;
}

.c-button--secondary {
  border: 1px solid #1976D2;
  color: #1976D2;
  background-color: #FFF;
  padding: 0 16px;
  height: 36px;
  border-radius: 2px;
}

.c-button--secondary:not(:disabled):hover {
  color: #1565C0;
  background-color: #E2F1FC;
  border-color: #1565C0;
}

.c-button--secondary:disabled {
  color: #9E9E9E;
  background-color: #FFF;
  border-color: #9E9E9E;
  cursor: not-allowed;
}

.c-button--flat {
  color: #1976D2;
  background-color: #FFF;
  padding: 0 16px;
  min-height: 36px;
  border-radius: 2px;
}

.c-button--flat:not(:disabled):hover {
  color: #1565C0;
  background-color: #E2F1FC;
}

.c-button--flat:disabled {
  color: #9E9E9E;
  background-color: #FFF;
  cursor: not-allowed;
}

.c-button__icon {
  color: #1976D2;
  background-color: transparent;
  font-size: 24px;
  position: relative;
  overflow: hidden;
  z-index: 1;
  height: 36px;
  padding:0px 6px;
}

.c-button__icon i {
  color: #1976D2;
}

.c-button__icon:not(:disabled):hover i {
  color: #1565C0;
}

.c-button__icon:disabled {
  background-color: #FFF;
  cursor: not-allowed;
}

.c-button__icon:disabled i {
  color: #E0E0E0;
}

.c-button__icon i {
  line-height: 36px;
}

.c-button__icon--floating {
  z-index: 1;
  padding: 0;
  border-radius: 50%;
  vertical-align: middle;
}

.c-button__icon--floating:not(:disabled):hover {
  background-color: #E2F1FC;
}

.c-button__icon--floating:disabled {
  background-color: #E0E0E0;
  cursor: not-allowed;
}

.c-button__icon--floating:disabled i {
  color: #FFF;
}

.c-button__icon--small {
  font-size: 18px;
  width: 30px;
  height: 30px;
}

.c-button__icon--small i {
  font-size: 18px;
  line-height: 30px;
}

.c-button__icon--medium {
  font-size: 24px;
  width: 36px;
  height: 36px;
}

.c-button__icon--medium i {
  font-size: 24px;
  line-height: 36px;
}

.c-button__icon--large {
  font-size: 30px;
  width: 50px;
  height: 50px;
}

.c-button__icon--large i {
  font-size: 30px;
  line-height: 50px;
}

.c-button__icon--left {
  padding-left: 0.5em;
}

.c-button__icon--left i {
  display: inline-block;
  line-height: 36px;
  color: #FFF;
  text-align: center;
  vertical-align: middle;
  margin-right: 6px;
  margin-left: 6px;
}

.c-button__icon--left i:hover {
  color: #FFF;
}

.c-button__icon--right {
  padding-right: 0.5em;
}

.c-button__icon--right i {
  display: inline-block;
  line-height: 36px;
  color: #FFF;
  text-align: center;
  vertical-align: middle;
  margin-right: 6px;
  margin-left: 6px;
}

.c-button__icon--right i:hover {
  color: #FFF;
}

.c-button--close {
  border: 1px solid transparent;
  background-color: transparent;
  color: inherit;
  position: absolute;
  right: 0.5em;
  padding: 0;
  outline: 0;
  font-size: 1.4em;
  font-weight: bold;
  line-height: 1;
}

.c-button--close.c-button--active {
  background-color: transparent;
}

.c-button--close:not(:disabled):hover {
  background-color: rgba(23, 23, 23, 0);
}

.c-button--close:not(:disabled):focus {
  border-color: #2196F3;
  box-shadow: inset 0 0 0 2px #4dabf5;
}

.c-button--close:not(:disabled):active {
  background-color: transparent;
}

.c-button--noleft{
	margin-left:-6px;
}

.c-button--noright{
	margin-right:-6px;
}

.c-card {
  border-radius: 2px;
  background-color: #FFF;
  box-sizing: border-box;
  border: 1px solid #212121;
}

.c-card > .o-image:not(:first-child) {
  padding: 24px 0 0;
}

.c-card--shadow {
  border: none;
  box-shadow: 0 1px 5px #212121;
}

.c-card__content {
  padding: 24px 0;
}

.c-card__content:after {
  content: '' !important;
  display: block !important;
  clear: both !important;
}

.c-card__item {
  padding: 0 24px;
}

.c-card__item:after {
  content: '' !important;
  display: block !important;
  clear: both !important;
}

.c-card__item--block {
  padding: 0;
}

.c-card__item--divider {
  background-color: #546E7A;
  color: #FFF;
}

.c-card__item--title {
  font-family: "Roboto Medium";	
  margin-bottom: 10px;
  height: 50px;
  line-height: 28px;
}

.c-card__item--topmargin {
  margin-top: 10px;
}

.c-card__content--menu {
  display: block;
  width: 100%;
  max-height: 100%;
  z-index: 100;
  overflow-y: hidden;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
}

.c-card__item--menu {
  padding: 10px 12px;
}

.c-card__item--menu a:link {
  color: #1976D2;
  text-decoration: none;
}

.c-card__item--menu a:visited {
  color: #212121;
  text-decoration: none;
}

.c-card__item--group {
  margin: 20px 0 0 0;
  color: #212121;
}

.c-card__item--brand {
  background-color: #2C3E50;
  color: #FFF;
}

.c-card__item--info {
  background-color: #2196F3;
  color: #FFF;
}

.c-card__item--warning {
  background-color: #F57C00;
  color: #FFF;
}

.c-card__item--success {
  background-color: #388E3C;
  color: #FFF;
}

.c-card__item--error {
  background-color: #C62828;
  color: #FFF;
}

.c-card__item--disabled {
  cursor: not-allowed;
  opacity: 0.6;
}

.c-card__content--menu .c-card__item--menu:not(.c-card__item--disabled):not(.c-card__item--group):not(.c-card__item--active):not(.c-card__item--divider):hover,
.c-card--accordion label.c-card__item--menu:not(.c-card__item--disabled):not(.c-card__item--group):not(.c-card__item--active):not(.c-card__item--divider):hover {
  background-color: #E2F1FC;
  cursor: pointer;
}

.c-card__content--menu .c-card__item--menu:not(.c-card__item--disabled):not(.c-card__item--group):not(.c-card__item--active):not(.c-card__item--divider):hover.c-card__item--brand,
.c-card--accordion label.c-card__item--menu:not(.c-card__item--disabled):not(.c-card__item--group):not(.c-card__item--active):not(.c-card__item--divider):hover.c-card__item--brand {
  background-color: #3c556e;
}

.c-card__content--menu .c-card__item--menu:not(.c-card__item--disabled):not(.c-card__item--group):not(.c-card__item--active):not(.c-card__item--divider):hover.c-card__item--info,
.c-card--accordion label.c-card__item--menu:not(.c-card__item--disabled):not(.c-card__item--group):not(.c-card__item--active):not(.c-card__item--divider):hover.c-card__item--info {
  background-color: #4dabf5;
}

.c-card__content--menu .c-card__item--menu:not(.c-card__item--disabled):not(.c-card__item--group):not(.c-card__item--active):not(.c-card__item--divider):hover.c-card__item--warning,
.c-card--accordion label.c-card__item--menu:not(.c-card__item--disabled):not(.c-card__item--group):not(.c-card__item--active):not(.c-card__item--divider):hover.c-card__item--warning {
  background-color: #ff9324;
}

.c-card__content--menu .c-card__item--menu:not(.c-card__item--disabled):not(.c-card__item--group):not(.c-card__item--active):not(.c-card__item--divider):hover.c-card__item--success,
.c-card--accordion label.c-card__item--menu:not(.c-card__item--disabled):not(.c-card__item--group):not(.c-card__item--active):not(.c-card__item--divider):hover.c-card__item--success {
  background-color: #45af4a;
}

.c-card__content--menu .c-card__item--menu:not(.c-card__item--disabled):not(.c-card__item--group):not(.c-card__item--active):not(.c-card__item--divider):hover.c-card__item--error,
.c-card--accordion label.c-card__item--menu:not(.c-card__item--disabled):not(.c-card__item--group):not(.c-card__item--active):not(.c-card__item--divider):hover.c-card__item--error {
  background-color: #d94343;
}

.c-card__item--active,
.c-card--accordion > input:checked + .c-card-item {
  background-color: #E2F1FC;
}

.c-card__item--active.c-card__item--brand,
.c-card--accordion > input:checked + .c-card-item.c-card__item--brand {
  background-color: #1c2732;
}

.c-card__item--active.c-card__item--info,
.c-card--accordion > input:checked + .c-card-item.c-card__item--info {
  background-color: #0c7fda;
}

.c-card__item--active.c-card__item--warning,
.c-card--accordion > input:checked + .c-card-item.c-card__item--warning {
  background-color: #c76500;
}

.c-card__item--active.c-card__item--success,
.c-card--accordion > input:checked + .c-card-item.c-card__item--success {
  background-color: #2b6d2e;
}

.c-card__item--active.c-card__item--error,
.c-card--accordion > input:checked + .c-card-item.c-card__item--error {
  background-color: #a02020;
}

.c-whiteframe {
  width: 100%;
  background: #FFF;
  border-radius: 2px;
}

.c-whiteframe__item {
  -moz-box-shadow: 0 2px 5px #9E9E9E;
  -webkit-box-shadow: 0 2px 5px #9E9E9E;
  box-shadow: 0 2px 5px #9E9E9E;
  overflow: hidden;
}

.c-whiteframe__title {
  padding: 24px;
}

.c-whiteframe__title .c-whiteframe__title--h4 {
  display: inline-block;
}

.c-whiteframe__content {
  height: 0;
  transition: height .3s linear;
}

.c-whiteframe__item--open .c-whiteframe__icon {
  transform: rotate(180deg);
}

.c-whiteframe__item--open .c-whiteframe__content {
  height: auto;
  margin: 0 24px 24px;
  display: block;
  background: #FFF;
  padding: 24px;
}

.c-whiteframe__item--open .c-whiteframe__title {
  padding: 10px 24px;
}

.c-dialog {
  background-color: #FFF;
  box-shadow: 0 1px 4px rgba(17, 17, 17, 0.3);
  max-width: 40%;
  position: relative;
}

.c-dialog__header {
  height: 60px;
  padding-top: 24px;
  padding-left: 24px;
  padding-bottom: 20px;
  background-color: #546E7A;
}

.c-dialog__header .c-dialog__title {
  color: #FFF;
  font-size: 16px;
  font-family: "Roboto Medium";
}

.c-dialog__content {
  padding: 24px;
  font-size: 12px;
  overflow: auto;
}

.c-dialog__footer {
  padding: 25px 24px 24px;
  text-align: right;
}

.c-dialog__button--close {
  background-color: #546E7A;
  border: 1px solid transparent;
  color: #FFF;
  position: absolute;
  right: 24px;
  top: 20px;
  padding: 0;
  outline: 0;
  font-size: 20px;
  line-height: 1;
}

.c-dropdown {
  display: inline-block;
  position: relative;
}

.c-dropdown .c-dropdown__button input {
  width: 100%;
  height: 3rem;
  line-height: 3rem;
  border: none;
  border-bottom: 1px solid #212121;
  outline: none;
  font-size: 1rem;
  background-color: #FFFFFF;
  cursor: pointer;
}

.c-dropdown .c-dropdown__button span {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto 0;
  height: 10px;
  line-height: 10px;
  font-size: 10px;
}

.c-dropdown ul.c-dropdown__content {
  display: none;
  width: 100%;
  background-color: #FFFFFF;
  position: absolute;
  z-index: 999;
  box-shadow: 5px 5px 5px #CBCBCB;
  opacity: 0;
  transition: opacity .5s ease-in-out;
}

.c-dropdown ul.c-dropdown__content li {
  width: 100%;
  min-height: 50px;
  line-height: 1.5rem;
  cursor: pointer;
}

.c-dropdown ul.c-dropdown__content li span {
  display: block;
  line-height: 22px;
  padding: 14px 16px;
  font-size: 16px;
}

.c-dropdown ul.c-dropdown__content li:hover {
  background-color: #E2F1FC;
}

.c-dropdown.active ul.c-dropdown__content {
  display: block;
  opacity: 1;
}
.c-dropdownmenu {
  position: absolute;
  line-height: 18px;
  z-index: 100;
  border: 0;
  box-shadow: 0 1px 5px #212121;
  border-radius: 2px;
  background-color: #FFF;  
  width:100%; 
}
.c-dropdownmenu__text{
  border: 0;
  width: 100%;
  display: block;
  text-indent: 5px;
  padding: 1px 0;
  text-decoration: none;
  color: #212121 !important;
  background-color: #FFF;
  white-space: nowrap;
  height: 35px;
  line-height: 35px;
  font-size: 12px
}
.c-dropdownmenu__text:hover{
  background-color: #e2f1fc;
}

.c-inputfield {
  position: relative;
}

.c-inputfield input[type=text],
.c-inputfield input[type=password],
.c-inputfield input[type=email],
.c-inputfield input[type=tel] {
  height: 3rem;
}

.c-inputfield input[type=text]:disabled,
.c-inputfield input[type=password]:disabled,
.c-inputfield input[type=email]:disabled,
.c-inputfield input[type=tel]:disabled {
  color: rgba(0, 0, 0, 0.42);
  border-bottom: 1px dotted rgba(0, 0, 0, 0.42);
}

.c-inputfield__label {
  color: #212121;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  font-size: 1rem;
  cursor: text;
  -webkit-transition: -webkit-transform 0.2s ease-out;
  transition: -webkit-transform 0.2s ease-out;
  transition: transform 0.2s ease-out;
  transition: transform 0.2s ease-out, -webkit-transform 0.2s ease-out;
  -webkit-transform-origin: 0% 100%;
  transform-origin: 0% 100%;
  text-align: initial;
  -webkit-transform: translateY(12px);
  transform: translateY(12px);
  pointer-events: none;
}

.c-inputfield__label.c-inputfield__label--active {
  -webkit-transform: translateY(-14px) scale(0.8);
  transform: translateY(-14px) scale(0.8);
  -webkit-transform-origin: 0 0;
  transform-origin: 0 0;
}

.c-inputfield__label.c-inputfield__label--colorchange {
  color: #1976D2;
}

.c-inputfield--inline {
  display: inline-block;
  vertical-align: middle;
}


.c-inputfield__item {
  background-color: transparent;
  border: none;
  border-radius: 0;
  outline: none;
  width: 100%;
  font-size: 14px;
  padding: 0;
  -webkit-box-shadow: 0 1px 0 #9E9E9E;
  -ms-box-shadow: 0 1px 0 #9E9E9E;
  box-shadow: 0 1px 0 #9E9E9E;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.c-inputfield__item--idppassword {
  background-color: transparent;
  border: none;
  border-radius: 0;
  outline: none;
  width: 150%;
  font-size: 14px;
  padding: 0;
  -webkit-box-shadow: 0 1px 0 #9E9E9E;
  -ms-box-shadow: 0 1px 0 #9E9E9E;
  box-shadow: 0 1px 0 #9E9E9E;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.c-inputfield__item:focus,
.c-inputfield__item--idppassword:focus{
  box-shadow: 0 2px 0 #1976D2;
}

/*
  rules: input field placeholder
 */
.c-inputfield__item::-webkit-input-placeholder,
.c-inputfield__item--idppassword::-webkit-input-placeholder,
.c-inputfield--placeholder {
  color: #999;
  font-family: Roboto,Arial,Helvetica,sans-serif;
  font-size: 14px;
  font-weight: normal;
}

.c-inputfield__item--search {
	height: 26px!important;
	transition: .3s;
	padding: 3px;
	border:1px solid #9e9e9e;
	vertical-align:  middle;
}
.c-inputfield__item--search:disabled{
    cursor: not-allowed;
}

.c-inputfield__radio:not(:checked),
.c-inputfield__radio:checked {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.c-inputfield__radio:not(:checked) + label,
.c-inputfield__radio:checked + label {
  position: relative;
  padding-left: 24px;
  display: inline-block;
  height: 25px;
  line-height: 25px;
  font-size: 14px;
  color: #000000;
}

.c-inputfield__radio:not(:checked) + label:not(.c-label--disabled),
.c-inputfield__radio:checked + label:not(.c-label--disabled) {
  cursor: pointer;
}

.c-inputfield__radio + label:before,
.c-inputfield__radio + label:after,
.c-inputfield__radio + label:before,
.c-inputfield__radio + label:after {
  border-radius: 50%;
}

.c-inputfield__radio + label:after {
  transform: scale(0);
}

.c-inputfield__radio + label:before,
.c-inputfield__radio + label:after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  margin: 4.4px 5px;
  width: 12px;
  height: 12px;
  z-index: 0;
  border: 2px solid #E0E0E0;
  transition: .35s ease;
}

.c-inputfield__radio:not(:checked) + label:before,
.c-inputfield__radio:not(:checked) + label:after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  margin: 4.4px 5px;
  width: 12px;
  height: 12px;
  z-index: 0;
  border: 2px solid #1976d2;
  transition: .35s ease;
}

.c-inputfield__radio:disabled + label:before,
.c-inputfield__radio:disabled + label:after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  margin: 4.4px 5px;
  width: 12px;
  height: 12px;
  z-index: 0;
  border: 2px solid #E0E0E0;
  transition: .35s ease;
}

.c-inputfield__radio--withgap + label:before,
.c-inputfield__radio--withgap + label:after {
  transition: .28s ease;
}

.c-inputfield__radio:checked + label:before,
.c-inputfield__radio:checked + label:after {
  border: 2px solid #1976D2;
}

.c-inputfield__radio:checked + label:after {
  background-color: #1976D2;
  transform: scale(1);
  -webkit-transform: scale(1);
}

.c-inputfield__radio--withgap:checked + label:after {
  transform: scale(0.5);
  -webkit-transform: scale(0.5);
}

.c-inputfield__radio:checked:disabled + label:before,
.c-inputfield__radio:checked:disabled + label:after {
    border: 2px solid #E0E0E0;
}
.c-inputfield__radio--withgap:checked:disabled + label:after{
    transform: scale(0.5);
     -webkit-transform: scale(0.5);
}
.c-inputfield__radio:checked:disabled + label:after{
    background-color: #E0E0E0;
}

.c-inputfield__chk {
  opacity: 0;
  display: none;
}

.c-inputfield__chk + label {
  position: relative;
  display: inline-block;
  padding-left: 35px;
  height: 25px;
  line-height: 25px;
  font-size: 1rem;
  vertical-align: middle;
  user-select: none;
  color: #9E9E9E;
}

.c-inputfield__chk + label:not(.c-label--disabled) {
  cursor: pointer;
}

.c-inputfield__chk + .c-label--disabled {
  cursor: not-allowed;
}

.c-inputfield__chk + label:after {
  border: 0;
  -webkit-transform: scale(0);
  transform: scale(0);
}

.c-inputfield__chk + label:before,
.c-inputfield__chk + label:after {
  content: '';
  position: absolute;
  top: 0;
  bottom: auto;
  left: 0;
  right: auto;
  width: 18px;
  height: 18px;
  z-index: 0;
  border: 2px solid #9E9E9E;
  border-radius: 1px;
  margin-top: 2px;
  -webkit-transition: .2s;
  transition: .2s;
}

.c-inputfield__chk:checked + label:before {
  position: absolute;
  top: -4px;
  bottom: auto;
  left: -5px;
  right: auto;
  width: 12px;
  height: 22px;
  border-top: 2px solid transparent;
  border-left: 2px solid transparent;
  border-right: 2px solid #1976D2;
  border-bottom: 2px solid #1976D2;
  -webkit-transform: rotate(40deg);
  transform: rotate(40deg);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform-origin: 100% 100%;
  transform-origin: 100% 100%;
  transition: 0;
  margin-top: 5px;
}

.c-inputfield__chk:indeterminate + label:before {
  content: '';
  width: 20px;
  height: 20px;
  position: absolute;
  top: 0;
  bottom: auto;
  left: 0;
  right: auto;
  border: 2px solid #1976D2;
}

.c-inputfield__chk:indeterminate + label:after {
  content: '';
  width: 6px;
  height: 13px;
  position: absolute;
  top: -2px;
  bottom: auto;
  left: -3px;
  right: auto;
  border: none;
  border-right: 2px solid #1976D2;
  transform: rotateZ(90deg);
  transform-origin: 100% 100%;
  z-index: 1;
  transition: 0;
}

.c-inputfield__chk:checked:disabled + label:before {
  border-right: 2px solid rgba(0, 0, 0, 0.42);
  border-bottom: 2px solid rgba(0, 0, 0, 0.42);
}

.c-inputfield__chk--filledin {
  opacity: 0;
  display: none;
}

.c-inputfield__chk--filledin + label {
  position: relative;
  display: inline-block;
  padding-left: 35px;
  height: 25px;
  line-height: 25px;
  font-size: 1rem;
  vertical-align: middle;
  user-select: none;
  color: #212121;
}

.c-inputfield__chk--filledin + label:not(.c-label--disabled) {
  cursor: pointer;
}

.c-inputfield__chk--filledin + label:after,
.c-inputfield__chk--filledin:not(:checked) + label:before {
  content: '';
  width: 18px;
  height: 18px;
  position: absolute;
  top: 0;
  bottom: auto;
  left: 0;
  right: auto;
  border: 2px solid #1976D2;
  margin-top: 3px;
}

.c-inputfield__chk--filledin:checked + label:after {
  background-color: #1976D2;
  z-index: 0;
  transition: .2s;
}

.c-inputfield__chk--filledin:checked + label:before {
  content: '';
  width: 6px;
  height: 12px;
  position: absolute;
  top: 3px;
  bottom: auto;
  left: 1px;
  right: auto;
  border-top: 0px solid transparent;
  border-left: 0px solid transparent;
  border-right: 3px solid #FFFFFF;
  border-bottom: 3px solid #FFFFFF;
  transform: rotateZ(37deg);
  transform-origin: 100% 100%;
  z-index: 1;
  margin-top: 3px;
  border-radius: 2px 3px 3px 3px;
}

.c-inputfield__chk--filledin:disabled + label:after {
  border-color: #9E9E9E;
}

.c-inputfield__chk--filledin:disabled:checked + label:after {
  background: #9E9E9E;
}

.c-inputfield__chk--filledin:disabled + label {
  cursor: not-allowed;
}

.c-inputfield__textarea{
  transition: .3s;
  padding:3px;
  border:1px solid #9e9e9e;
  margin-top: 5px;
}

.c-inputfield__textarea:focus {
  box-shadow: 0 0 0 2px #1976d2;
  border:1px solid transparent;
}

.c-heading {
  margin: 0;
  padding: 1em 0 0.5em;
}

.c-link {
  background-color: transparent;
  color: #1976D2;
  text-decoration: none;
  cursor: pointer;
  outline: none;
}

.c-link:not(:disabled):visited {
  color: #1565C0;
}

.c-link:not(:disabled):hover {
  background-color: transparent;
  color: #1565C0;
}

.c-link:not(:disabled):active {
  background-color: transparent;
  color: #1565C0;
}

.c-link--disabled {
  color: #999;
  height: 35px;
  line-height: 35px;
  padding: 0 12px;
  text-decoration: none;
  cursor: not-allowed;
  outline: 0;
  background-color: transparent;
}

.c-list {
  display: block;
  margin: 0;
  padding: 0 0 0 1em;
  list-style-position: outside;
}

.c-list .c-list {
  padding: 0 0 0 1em;
}

.c-list__item {
  padding: 0;
}

.c-list__item--unstyled {
  list-style: none;
}

.c-list--unstyled {
  padding: 1em;
  list-style: none;
}

.c-list--ordered {
  padding: 1em;
  list-style: none;
  counter-reset: ordered;
}

.c-list--ordered .c-list__item:before {
  padding: 0 0.5em 0 0;
  content: counters(ordered, ".") " ";
  counter-increment: ordered;
}

.c-list--inline {
  padding: 0;
}

.c-list--inline .c-list--inline {
  padding: 0;
}

.c-list--inline .c-list__item {
  display: inline-block;
  width: auto;
  padding-right: 1em;
}

.c-list--inline:not(.c-list--unstyled) .c-list__item:before {
  padding: 0 0.5em 0 0;
  content: "\2022";
}

.c-loading--center {
  width: 100px;
  height: 100px;
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  background: #FFF;
  z-index: 999;
}

.c-loading--progress {
  width: 400px;
  height: 80px;
  border: 1px solid #9E9E9E;
  background: #546E7A;
  border-radius: 4px;
}

.c-loading--progress__word {
  background: #FFF;
  height: 40px;
  line-height: 40px;
  font-size: 14px;
  color: #212121;
  padding: 0 8px;
}

.c-loading--progress__img {
  margin: 14px;
  width: 376px;
  height: 12px;
}

.c-loading--flower {
  text-align: center;
  width: 200px;
  height: 100px;
  padding: 12px;
  border: 1px solid #9E9E9E;
}

.c-loading--flower__img {
  width: 40px;
  height: 40px;
}

.c-loading--flower__word {
  height: 30px;
  line-height: 30px;
}

.c-loading__bar {
  background-color: #1976D2;
  width: 0;
  height: 4px;
}

.c-loading--circle {
  background: none;
}

.c-loading__linear {
  position: relative;
  height: 4px;
  display: block;
  width: 100%;
  background-color: #E2F1FC;
  border-radius: 2px;
  overflow: hidden;
}

.c-loading__linear--determinate > .c-loading__bar {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  -webkit-transition: width .3s linear;
  transition: width .3s linear;
}

.c-loading__linear--indeterminate > .c-loading__bar:before {
  content: '';
  position: absolute;
  background-color: inherit;
  top: 0;
  left: 0;
  bottom: 0;
  will-change: left, right;
  -webkit-animation: indeterminate 2.1s cubic-bezier(0.65, 0.815, 0.735, 0.395) infinite;
  animation: indeterminate 2.1s cubic-bezier(0.65, 0.815, 0.735, 0.395) infinite;
}

.c-loading__linear--indeterminate > .c-loading__bar:after {
  content: '';
  position: absolute;
  background-color: inherit;
  top: 0;
  left: 0;
  bottom: 0;
  will-change: left, right;
  -webkit-animation: indeterminate-short 2.1s cubic-bezier(0.165, 0.84, 0.44, 1) infinite;
  animation: indeterminate-short 2.1s cubic-bezier(0.165, 0.84, 0.44, 1) infinite;
  -webkit-animation-delay: 1.15s;
  animation-delay: 1.15s;
}

.c-loading__linear--query > .c-loading__bar {
  -webkit-animation: widthchange 2.1s linear 10s 1;
  animation: widthchange 2.1s linear 10s 1;
}

.c-loading__linear--query > .c-loading__bar:before {
  content: '';
  position: absolute;
  background-color: inherit;
  top: 0;
  left: 0;
  bottom: 0;
  will-change: left, right;
  -webkit-animation: indeterminate-alternate 2.1s cubic-bezier(0.65, 0.815, 0.735, 0.395) 2;
  animation: indeterminate-alternate 2.1s cubic-bezier(0.65, 0.815, 0.735, 0.395) 2;
}

.c-loading__linear--query > .c-loading__bar:after {
  content: '';
  position: absolute;
  background-color: inherit;
  top: 0;
  left: 0;
  bottom: 0;
  will-change: left, right;
  -webkit-animation: indeterminate-short-alternate 2.1s cubic-bezier(0.165, 0.84, 0.44, 1) 2;
  animation: indeterminate-short-alternate 2.1s cubic-bezier(0.165, 0.84, 0.44, 1) 2;
  -webkit-animation-delay: 1.15s;
  animation-delay: 1.15s;
}

.c-loading__wrapper {
  display: inline-block;
  position: relative;
  width: 50px;
  height: 50px;
}

.c-loading__wrapper.c-loading--small {
  width: 36px;
  height: 36px;
}

.c-loading__wrapper.c-loading--big {
  width: 64px;
  height: 64px;
}

.c-loading__wrapper.c-loading--active {
  -webkit-animation: container-rotate 1568ms linear infinite;
  animation: container-rotate 1568ms linear infinite;
}

.c-loading__layer {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  border-color: #1976D2;
}

.c-loading__layer--blue {
  border-color: #1976D2;
}

.c-loading--active .c-loading__layer,
.c-loading--active .c-loading__layer.c-loading__layer--blue {
  opacity: 1;
  -webkit-animation: fill-unfill-rotate 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both;
  animation: fill-unfill-rotate 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both;
}

.c-loading__gap-patch {
  position: absolute;
  top: 0;
  left: 45%;
  width: 10%;
  height: 100%;
  overflow: hidden;
  border-color: inherit;
}

.c-loading__gap-patch .c-loading__circle {
  width: 1000%;
  left: -450%;
}

.c-loading__circle-clipper {
  display: inline-block;
  position: relative;
  width: 50%;
  height: 100%;
  overflow: hidden;
  border-color: inherit;
}

.c-loading__circle-clipper .c-loading__circle {
  width: 200%;
  height: 100%;
  border-width: 3px;
  border-style: solid;
  border-color: inherit;
  border-bottom-color: transparent !important;
  border-radius: 50%;
  -webkit-animation: none;
  animation: none;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
}

.c-loading__circle-clipper.c-loading__circle--left .c-loading__circle {
  left: 0;
  border-right-color: transparent !important;
  -webkit-transform: rotate(129deg);
  transform: rotate(129deg);
}

.c-loading__circle-clipper.c-loading__circle--right .c-loading__circle {
  left: -100%;
  border-left-color: transparent !important;
  -webkit-transform: rotate(-129deg);
  transform: rotate(-129deg);
}

.c-loading--active .c-loading__circle-clipper.c-loading__circle--left .c-loading__circle {
  -webkit-animation: left-spin 1333ms cubic-bezier(0.4, 0, 0.2, 1) infinite both;
  animation: left-spin 1333ms cubic-bezier(0.4, 0, 0.2, 1) infinite both;
}

.c-loading--active .c-loading__circle-clipper.c-loading__circle--right .c-loading__circle {
  -webkit-animation: right-spin 1333ms cubic-bezier(0.4, 0, 0.2, 1) infinite both;
  animation: right-spin 1333ms cubic-bezier(0.4, 0, 0.2, 1) infinite both;
}

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

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

.c-nav {
  background-color: #FFF;
  color: #546E7A;
  width: 100%;
  margin: 0;
  padding: 0;
  z-index: 300;
}

.c-nav__item,
.c-nav__content {
  display: block;
  padding: 5px 12px;
  color: inherit;
  vertical-align: middle;
}

.c-nav__item a,
.c-nav__content a {
  color: inherit;
}

.c-nav__item {
  text-decoration: none;
  cursor: pointer;
}

.c-nav__item:not(:disabled):hover {
  background-color: #FFF;
  color: #546E7A;
}

.c-nav__item:not(:disabled):focus {
  box-shadow: inset 0 0 0 2px #4dabf5;
}

.c-nav__item:not(:disabled):active {
  background-color: #FFFFFF;
  color: #546E7A;
}

.c-nav--inner-border.c-nav--inline li + li {
  border-left: 2px solid #E0E0E0;
}

.c-nav--inline {
  display: inline-flex;
  flex-direction: row;
  justify-content: flex-start;
  align-content: center;
  align-items: center;
}

.c-nav--inline .c-nav__item,
.c-nav--inline .c-nav__content {
  align-self: flex-start;
}

.c-nav--inline.c-nav--inline--right {
  justify-content: flex-end;
}

.c-nav--light {
  background-color: #F2F2EA;
  color: #3f2d26;
}

.c-nav--top {
  position: absolute;
  top: 0;
  right: 0;
  bottom: auto;
  left: 0;
}

.c-nav--bottom {
  position: absolute;
  top: auto;
  right: 0;
  bottom: 0;
  left: 0;
}

.c-nav--left {
  position: absolute;
  top: 0;
  right: auto;
  bottom: 0;
  left: 0;
}

.c-nav--right {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: auto;
}

.c-nav--fixed {
  position: fixed;
}

.c-nav__item--active {
  background-color: #FFF;
  color: #546E7A;
}

.c-nav__item--brand:not(:disabled):hover {
  background-color: #2C3E50;
  color: #FFF;
}

.c-nav__item--brand:not(:disabled):focus {
  box-shadow: inset 0 0 0 2px #4dabf5;
}

.c-nav__item--brand:not(:disabled):active {
  background-color: background-color;
  color: #FFF;
}

.c-nav__item--brand.c-nav__item--active {
  background-color: #2C3E50;
  color: #FFF;
}

.c-progress {
  display: block;
  border: 0;
  border-radius: 4px;
  background-color: #9E9E9E;
  color: #FFF;
  text-align: center;
  overflow: hidden;
}

.c-progress--rounded {
  border-radius: 30em;
}

.c-progress__bar {
  display: block;
  height: 100%;
  float: left;
  border-radius: 0;
  background-color: #1976D2;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

.c-progress__bar:after {
  color: transparent !important;
  content: "-";
}

.c-progress__bar--warning {
  background-color: #F57C00;
}

.c-progress__bar--error {
  background-color: #C62828;
}

.c-select {
  position: relative;
  cursor: pointer;
  display: inline-block;
  text-align: left;
  padding: 0;
  line-height: 14px;
}

.c-select-selected {
  background: rgba(17, 17, 17, 0);
  padding: 0.25em 1.5em;
  border-bottom: 1px solid #111;
  box-sizing: border-box;
}

.c-select--ellipsis,
.c-selected--option,
.c-select__item {
  max-width: 200px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.c-selected--option {
  min-width: 100px;
  display: inline-block;
}

.c-select--icon {
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid #000000;
  display: inline-block;
  vertical-align: text-top;
}

.c-select--menu,
.c-select--drop,
.c-select--content {
  background: #FFFFFF;
  position: absolute;
  z-index: 11;
  box-shadow: 0 2px 3px 0 rgba(17, 17, 17, 0.2);
  overflow: hidden;
  overflow-y: auto;
  max-height: 200px;
}

.c-select--drop {
  min-width: 100px;
  max-width: 150px;
  margin-top: 18px;
  margin-left: 56px;
}

.c-select--content {
  top: 100%;
  left: 0;
  min-width: 100%;
}

.c-select__item {
  padding: 0.5em 1em;
  display: block;
}

.c-select__item:hover {
  background: #E2F1FC;
}

.c-select--hide {
  display: none;
}

.c-select--show {
  display: inline-block;
}

.c-slider__field {
  position: relative;
}

.c-slider__range {
  line-height: 50px;
  vertical-align: top;
}

input[type=range],
input[type=range] + .c-slider__thumb {
  cursor: pointer;
}

input[type=range] {
  position: relative;
  background-color: transparent;
  border: none;
  outline: none;
  width: 100%;
  margin: 15px 0;
  padding: 0;
}

input[type="range"] + .c-slider__thumb.active .c-slider__thumb--triangle {
  margin: 0 0 0 5px;
  position: absolute;
  z-index: -1;
  border: 25px solid;
  border-color: transparent transparent transparent #1976D2;
}

input[type=range]:focus {
  outline: none;
}

input[type=range] + .c-slider__thumb {
  position: absolute;
  top: 10px;
  left: 0;
  border: none;
  height: 0;
  width: 0;
  border-radius: 50%;
  background-color: #1976D2;
  margin-left: 7px;
  -webkit-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

input[type="range"] + .c-slider__thumb.active {
  border-radius: 0 0 0 0;
  height: 50px;
  width: 22px;
  top: -45px;
  margin-left: 10px;
  transform: rotate(90deg);
}

input[type=range] + .c-slider__thumb .c-slider__thumb--value {
  display: block;
  width: 30px;
  text-align: center;
  color: white;
  font-size: 0;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

input[type=range] + .c-slider__thumb.active {
  border-radius: 0 0 0 0;
  height: 50px;
  width: 22px;
  top: -45px;
  margin-left: 10px;
  transform: rotate(90deg);
}

input[type=range] + .c-slider__thumb.active .c-slider__thumb--value {
  font-size: 15px;
  transform: rotate(270deg);
  margin: 18px 0 0 -5.2px;
  position: absolute;
}

input[type=range] {
  -webkit-appearance: none;
}

input[type=range]::-webkit-slider-runnable-track {
  height: 3px;
  background: #C2C0C2;
  border: none;
}

input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  border: none;
  height: 14px;
  width: 14px;
  border-radius: 50%;
  background-color: #1976D2;
  -webkit-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
  margin: -5px 0 0 0;
  -webkit-transition: .3s;
  transition: .3s;
}

input[type=range]:focus::-webkit-slider-runnable-track {
  background: #CCC;
}

input[type=range] {
  border: 1px solid white;
}

input[type=range]::-moz-range-track {
  height: 3px;
  background: #DDD;
  border: none;
}

input[type=range]::-moz-range-thumb {
  border: none;
  height: 14px;
  width: 14px;
  border-radius: 50%;
  background: #1976D2;
  margin-top: -5px;
}

input[type=range]:-moz-focusring {
  outline: 1px solid white;
  outline-offset: -1px;
}

input[type=range]:focus::-moz-range-track {
  background: #CCC;
}

input[type=range]::-ms-track {
  height: 3px;
  background: transparent;
  border-color: transparent;
  border-width: 6px 0;
  color: transparent;
}

input[type=range]::-ms-fill-lower {
  background: #777;
}

input[type=range]::-ms-fill-upper {
  background: #DDD;
}

input[type=range]::-ms-thumb {
  border: none;
  height: 14px;
  width: 14px;
  border-radius: 50%;
  background: #1976D2;
}

input[type=range]:focus::-ms-fill-lower {
  background: #888;
}

input[type=range]:focus::-ms-fill-upper {
  background: #CCC;
}

input[type="range"]::-ms-tooltip {
  display: none;
}

.c-table {
  width: 100%;
  margin: 0;
  padding: 0;
  border: 1px solid #212121;
  border-collapse: collapse;
  border-spacing: 0;
}

.c-table__caption {
  max-width: 100%;
  padding: 0.5em 0;
  color: #96a8b2;
  font-size: 0.8em;
  text-align: left;
}

.c-table-self tr td:first-child {
  overflow: visible;
}

.c-table__row,
.c-table__head,
.c-table__body {
  max-width: 100%;
}

.c-table__body {
  border: .5px solid #212121;
}

.c-table__head.borderSeparatorLeft .c-table__cell {
  border-left: 1px solid #B0BEC5;
}

.c-table__head.borderSeparatorLeft .c-table__cell:first-child {
  border-left: 1px solid #212121;
}

.c-table__body .c-table__row {
  border-top: .5px solid #212121;
}

.c-table__body .c-table__row_total {
  border-top: 1px solid #212121;
}

.c-table-align-left {
  justify-content: flex-start;
}

.c-table-align-right {
  justify-content: flex-end;
}

.c-table-align-center {
  justify-content: center;
}

.c-table--striped :not(.c-table__row--heading).c-table__row:nth-of-type(odd), tbody.c-table__rowBody:nth-of-type(odd) {
  background-color: #EEEEEE;
  color: initial;
}

tbody.c-table__rowBody{
  border-top: .5px solid #212121;
}

.c-table__cell {
  padding: 6px;
  overflow: auto;
  font-size: 12px;
  font-family: "Roboto";
}

.c-table__cell_no_top {
  padding: 0px 6px 6px 6px;
  overflow: auto;
  font-size: 12px;
  font-family: "Roboto";
}

.c-table__cell_font_family {
  font-family: "Roboto Medium";
}

.c-table__row--heading .c-table__cell {
  background-color: #546E7A;
  color: #FFFFFF;
  font-size: 14px;
  padding: 6px;
  font-family: "Roboto Medium";
}

.c-table__row--heading .c-table__cell >a {
  background-color: #546E7A;
  color: #FFFFFF;
  font-size: 14px;
  font-family: "Roboto Medium";
}

.c-table__row--clickable,
tbody.c-table__rowBody:hover,
.c-table--clickable .c-table__row:not(.c-table__row--heading):hover,
.c-table-flex .c-table--clickable .c-table__row:not(.c-table__row--heading):hover {
  background-color: #E2F1FC;
  color: initial;
  border-top: .5px solid #1976D2;
  border-bottom: .5px solid #1976D2;
}

.c-table__row--clickable + .c-table__row,
.c-table--clickable .c-table__row:not(.c-table__row--heading):hover + .c-table__row {
  border-top: 0.5px solid #1976D2;
}

.c-table__row--disabled {
  background-color: initial;
  color: #E0E0E0;
  cursor: default;
}

.c-table--clickable :not(.c-table__row--heading).c-table__row--disabled:hover .c-table__cell,
.c-table__row--disabled:hover .c-table__cell {
  background-color: initial;
  color: #E0E0E0;
  cursor: not-allowed;
}

.c-table--condensed {
  font-size: 0.8em;
}

.c-table--condensed .c-table__cell {
  padding: 0.25em;
}

.c-tab__wrapper {
  display: block;
  box-sizing: content-box;
}

.c-tab__item {
  display: inline-block;
  font-size: 16px;
  box-sizing: content-box;
}

.c-tab__wrapper--primary {
  height: 48px;
  border-top: 2px solid #E0E0E0;
  border-bottom: 2px solid #E0E0E0;
}

.c-tab__item--primary {
  padding: 24px 18px 6px 18px;
  text-transform: uppercase;
}

.c-tab__item--primary .c-link {
  color: #546E7A;
}

.c-tab__item--primary .c-link .c-tab__icon {
  font-size: 24px;
  color: #546E7A;
  display: inline-block;
  vertical-align: top;
  margin-top: -8px;
}

.c-tab__item--primary.c-tab__item--active,
.c-tab__item--primary:hover {
  border-bottom: 4px solid #1976D2;
  cursor: pointer;
}

.c-tab__item--primary.c-tab__item--active .c-link,
.c-tab__item--primary:hover .c-link {
  color: #1976D2;
}

.c-tab__item--primary.c-tab__item--active .c-link .c-tab__icon,
.c-tab__item--primary:hover .c-link .c-tab__icon {
  color: #1976D2;
}

.c-tab__item--primary.c-tab__item--ignore {
  text-transform: none;
}

.c-tab__wrapper--secondary {
  border: none;
  border-bottom: 2px solid #1976D2;
  margin-top: 12px;
}

.c-tab__item--secondary {
  padding: 10px 12px;
}

.c-tab__item--secondary .c-link {
  color: #546E7A;
}

.c-tab__item--secondary.c-tab__item--active,
.c-tab__item--secondary:hover {
  background-color: #1976D2;
  text-decoration: none;
  outline: none;
}

.c-tab__item--secondary.c-tab__item--active .c-link,
.c-tab__item--secondary:hover .c-link {
  color: #FFF !important;
  text-decoration: none;
}

.c-tab__wrapper--tertiary {
  border: none;
  border-bottom: 1px solid #BDBDBD;
}

.c-tab__item--tertiary {
  height: 35px;
  background: #FFF;
  font-size: 14px;
}

.c-tab__item--tertiary .c-link {
  color: #546E7A;
  height: 35px;
  line-height: 35px;
  padding: 0 12px;
}

.c-tab__item--tertiary.c-tab__item--active {
  border-left: 1px solid #BDBDBD;
  border-right: 1px solid #BDBDBD;
  border-top: 4px solid #1976D2;
  padding-bottom: 1px;
  margin-bottom: -1px;
}

.c-tab__item--tertiary.c-tab__item--active .c-link {
  color: #1976D2;
}

.c-tab__item--tiny {
  color: #212121;
  padding: 6px 6px 6px 6px;
  text-transform: uppercase;
}

.c-tab__item--tiny.c-tab__item--active, .c-tab__item--tiny:hover {
  color: #1976d2;
  border-bottom: 3px solid #1976d2;
  cursor: pointer;
}

/* TOOLTIPS */

.c-tooltip {
  position: relative;
  display: inline-block;
}

.c-tooltip:hover > .c-tooltip__content {
  visibility: visible;
}

.c-tooltip__content {
  border-radius: 2px;
  padding: 10px;
  position: absolute;
  text-align: center;
  visibility: hidden;
  width: 220px;
  z-index: 1;
  box-sizing: border-box;
  box-shadow: 5px 5px 5px #CBCBCB;
}

.c-tooltip__content:after {
  border-width: 10px;
  border-style: solid;
  content: "";
  position: absolute;
}

.c-tooltip__content.c-tooltip__content--dark {
  background-color: #9E9E9E;
  color: #FFF;
}

.c-tooltip__content.c-tooltip__content--light {
  background-color: #FFF;
  color: #9E9E9E;
  box-shadow: -5px 0 20px 2px #CBCBCB;
}

.c-tooltip__content.c-tooltip__content--darkBlue {
    background-color: #546e7a;
}

.c-tooltip__content--top {
  left: 50%;
  bottom: 150%;
  margin-left: -100px;
}

.c-tooltip__content--top:after {
  left: 48%;
  top: 100%;
  margin-left: -5px;
}

.c-tooltip__content--top.c-tooltip__content--light:after {
  border-color: #FFF transparent transparent transparent;
  transform: rotate(0deg);
}

.c-tooltip__content--top.c-tooltip__content--dark:after {
  border-color: #9E9E9E transparent transparent transparent;
  transform: rotate(0deg);
}

.c-tooltip__content--top.c-tooltip__content--darkBlue:after {
  border-color: #546e7a transparent transparent transparent;
  transform: rotate(0deg);
}

.c-tooltip__content--bottom {
  left: 50%;
  top: 150%;
  margin-left: -100px;
}

.c-tooltip__content--bottom:after {
  left: 48%;
  bottom: 99.6%;
  margin-left: -5px;
}

.c-tooltip__content--bottom.c-tooltip__content--light:after {
  border-color: #FFF transparent transparent transparent;
  transform: rotate(180deg);
}

.c-tooltip__content--bottom.c-tooltip__content--dark:after {
  border-color: #9E9E9E transparent transparent transparent;
  transform: rotate(180deg);
}

.c-tooltip__content--bottom.c-tooltip__content--darkBlue:after {
  border-color: #546e7a transparent transparent transparent;
  transform: rotate(180deg);
}

.c-tooltip__content--left {
  right: 110%;
  top: -148%;
  margin-left: 0px;
}

.c-tooltip__content--left:after {
  left: 99.8%;
  top: 40%;
  margin-top: -5px;
}

.c-tooltip__content--left.c-tooltip__content--light:after {
  border-color: #FFF transparent transparent transparent;
  transform: rotate(270deg);
}

.c-tooltip__content--left.c-tooltip__content--dark:after {
  border-color: #9E9E9E transparent transparent transparent;
  transform: rotate(270deg);
}

.c-tooltip__content--left.c-tooltip__content--darkBlue:after {
  border-color: #546e7a transparent transparent transparent;
  transform: rotate(270deg);
}

.c-tooltip__content--right {
  left: 110%;
  top: -109%;
  margin-left: 0px;
}

.c-tooltip__content--right:after {
  right: 99.8%;
  top: 40%;
  margin-top: -5px;
}

.c-tooltip__content--right.c-tooltip__content--light:after {
  border-color: #FFF transparent transparent transparent;
  transform: rotate(90deg);
}

.c-tooltip__content--right.c-tooltip__content--dark:after {
  border-color: #9E9E9E transparent transparent transparent;
  transform: rotate(90deg);
}

.c-tooltip__content--right.c-tooltip__content--darkBlue:after {
  border-color: #546e7a transparent transparent transparent;
  transform: rotate(90deg);
}

.c-tree {
  display: block;
  margin: 0;
  padding: 0;
  list-style: none;
}

.c-tree .c-tree {
  padding: 0 0 0 1em;
}

.c-tree__item {
  padding: 0.25em 0;
}

.c-tree__item:before {
  display: inline-block;
  padding: 0 0.5em 0 0;
  transform-origin: 30% 50%;
  color: #cad4d8;
  content: "\2013";
}

.c-tree__item--expandable:before {
  color: #B0BEC5;
  content: "\276F";
}

.c-tree__item--expandable .c-tree {
  display: none;
}

.c-tree__item--expanded:before {
  transform: rotate(90deg);
  color: #7b929e;
  content: "\276F";
}

.c-tree__item--expanded .c-tree {
  display: block;
}

.c-text {
  font-weight: normal;
  line-height: 1.55;
  color: #212121;
}

.c-text--mono {
  font-family: Consolas, "Andale Mono WT", "Andale Mono", "Lucida Console", "Lucida Sans Typewriter", "DejaVu Sans Mono", "Bitstream Vera Sans Mono", "Liberation Mono", "Nimbus Mono L", Monaco, "Courier New", Courier, monospace;
}

.c-paragraph {
  font-size: 12px;
  display: block;
  margin: 0;
  padding: 0.5em 0;
}

.c-code {
  font-family: Consolas, "Andale Mono WT", "Andale Mono", "Lucida Console", "Lucida Sans Typewriter", "DejaVu Sans Mono", "Bitstream Vera Sans Mono", "Liberation Mono", "Nimbus Mono L", Monaco, "Courier New", Courier, monospace;
  font-weight: normal;
  display: inline;
}

.c-code--multiline {
  display: block;
  padding: 0.5em 1em;
  border-radius: 4px;
  white-space: pre;
  overflow-x: auto;
}

.c-pre {
  margin: 0;
}

.c-breadcrumbs {
  display: block;
  margin: 0;
  padding: 1em;
  list-style: none;
}

.c-breadcrumbs__crumb {
  display: inline-block;
  width: auto;
  padding: 0;
  color: #212121;
}

.c-breadcrumbs__crumb:not(:last-child):after {
  padding: 0 3px;
  color: #1976D2;
  content: ">";
}

.c-table-flex .c-table {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin: 0;
  padding: 0;
  border: 1px solid #212121;
  border-collapse: collapse;
  border-spacing: 0;
}

.c-table-flex .c-table__caption {
  display: flex;
  flex: 0 0 100%;
  max-width: 100%;
  margin-left: 0;
  max-width: 100%;
  padding: 6px;
  color: #96a8b2;
  font-size: 14px;
  text-align: left;
}

.c-table-flex .c-table-self tr td:first-child {
  overflow: visible;
}

.c-table-flex .c-table__row,
.c-table-flex .c-table__head,
.c-table-flex .c-table__body {
  display: flex;
  flex: 0 0 100%;
  flex-wrap: wrap;
  max-width: 100%;
}

.c-table-flex .c-table__body .c-table__row {
  border-top: .5px solid #212121;
}

.c-table-flex .c-table-align-left {
  justify-content: flex-start;
}

.c-table-flex .c-table-align-right {
  justify-content: flex-end;
}

.c-table-flex .c-table-align-center {
  justify-content: center;
}

.c-table-flex .c-table--striped :not(.c-table__row--heading).c-table__row:nth-of-type(odd) {
  background-color: #EEEEEE;
  color: initial;
}

.c-table-flex .c-table__cell {
  display: flex;
  flex: 1;
  padding: 6px;
  text-align: left;
  overflow: auto;
  font-size: 12px;
}

.c-table-flex .c-table__row--heading .c-table__cell {
  display: flex;
  flex: 1;
  border-bottom: 1px solid #B0BEC5;
  background-color: #546E7A;
  color: #FFFFFF;
  font-size: 14px;
  padding: 6px;
}

.c-table-flex .c-table__row--clickable,
.c-table--clickable .c-table-flex .c-table__row:not(.c-table__row--heading):hover,
.c-table-flex .c-table--clickable .c-table__row:not(.c-table__row--heading):hover {
  background-color: #E2F1FC;
  color: initial;
  cursor: pointer;
  border-top: 0.5px solid #1976D2;
}

.c-table-flex .c-table__row--clickable + .c-table__row,
.c-table--clickable .c-table-flex .c-table__row:not(.c-table__row--heading):hover + .c-table__row,
.c-table-flex .c-table--clickable .c-table__row:not(.c-table__row--heading):hover + .c-table__row {
  border-top: 0.5px solid #1976D2;
}

.c-table-flex .c-table__row--disabled {
  background-color: initial;
  color: #E0E0E0;
  cursor: default;
}

.c-table-flex .c-table--clickable :not(.c-table__row--heading).c-table__row--disabled:hover .c-table__cell,
.c-table-flex .c-table__row--disabled:hover .c-table__cell {
  background-color: initial;
  color: #E0E0E0;
  cursor: not-allowed;
}

.c-table-flex .c-table--condensed {
  font-size: 0.8em;
}

.c-table-flex .c-table--condensed .c-table__cell {
  padding: 0.25em;
}

/*
 filter
 */
.c-filter, 
.c-filter:link {
  color: #212121;
  cursor: pointer;
  font-family: 'Roboto Medium',Verdana,Arial,Helvetica,sans-serif;
  font-size: 12px;
}

.c-filter:hover {
  color: #1976d2;
  cursor: pointer;
  font-family: 'Roboto Medium',Verdana,Arial,Helvetica,sans-serif;
  font-size: 12px;
  border-bottom: 2px solid;
}

.c-filter:focus {
  outline: none;
}

.c-filter--active {
  color: #1976d2;
  cursor: pointer;
  font-family: 'Roboto Medium',Verdana,Arial,Helvetica,sans-serif;
  font-size: 12px;
  outline: none;
  border-bottom: 2px solid;
}

.c-filter--inactive {
  color: #999;
  cursor: default;
  font-family: 'Roboto Medium',Verdana,Arial,Helvetica,sans-serif;
  font-size: 12px;
  text-decoration: none;
}

/*
  icon
 */

.c-icon {
  color: #1976d2;
  cursor: pointer;
}

.c-icon:hover {
  color: #1565C0;
  cursor: pointer;
}

.c-icon--24 {
  font-size: 24px;
}

.c-icon--20 {
  font-size: 20px;
}

.c-icon--16 {
  font-size: 16px;
}

.c-icon--6 {
  font-size: 6px;
}
.c-icon--noevent {
  color: #000;
}

.u-text--center {
  text-align: center !important;
}

.u-text--right {
  text-align: right !important;
}

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

.u-centered {
  text-align: center;
}

.u-center-block {
  position: relative;
}

.u-center-block__content,
.u-absolute-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.u-center-block__content--vertical {
  left: auto;
  transform: translateY(-50%);
}

.u-center-block__content--horizontal {
  top: auto;
  transform: translateX(-50%);
}

.u-background-fill {
  background: #FFFFFF;
}

.u-super {
  font-size: 20px;
}

.u-xlarge {
  font-size: 18px;
}

.u-large {
  font-size: 16px;
}

.u-medium {
  font-size: 14px;
}

.u-small {
  font-size: 12px;
}

.u-superB {
  font-size: 20px;
  font-family: 'Roboto Medium',Verdana,Arial,Helvetica,sans-serif;
}

.u-xlargeB {
  font-size: 18px;
  font-family: 'Roboto Medium',Verdana,Arial,Helvetica,sans-serif;
}

.u-largeB {
  font-size: 16px;
  font-family: 'Roboto Medium',Verdana,Arial,Helvetica,sans-serif;
}

.u-mediumB {
  font-size: 14px;
  font-family: 'Roboto Medium',Verdana,Arial,Helvetica,sans-serif;
}

.u-smallB {
  font-size: 12px;
  font-family: 'Roboto Medium',Verdana,Arial,Helvetica,sans-serif;
}

.u-xsmall {
  font-size: 0.67em;
}

.c-display--inline {
  display: inline;
}

.c-display--inline-block {
  display: inline-block;
}
.new-household-select {
  min-width: 350px;
}

.new-household-input-height{
  height: 50px;
}
.InitLineHeight {
  line-height: normal;
}
.rightAlignButton {
	margin-right: 0;
}
.textAreaNoResize {
	resize:none;
}
.tableBorderLeft{
  border-left: 1px solid #b0bec5;
}

.c-list--disc {
	list-style: disc;
}

.c-list--circle {
	list-style: circle;
}

.c-list--decimal {
	list-style: decimal;
}

.ScrollbarHorizontalHidden {
	overflow-x: hidden;
}