@charset "UTF-8";
/* ==========================================================================
  Components
   ========================================================================== */
/* Fixes an issue where Ruby locale is not set properly*/
/* See https://github.com/sass-mq/sass-mq/pull/10*/
/*/ Base font size on the `<body>` element*/
/*/ @type Number (unit)*/
/*/ Responsive mode*/
/*/*/
/*/ Set to `false` to enable support for browsers that do not support @media queries,*/
/*/ (IE <= 8, Firefox <= 3, Opera <= 9)*/
/*/*/
/*/ You could create a stylesheet served exclusively to older browsers,*/
/*/ where @media queries are rasterized*/
/*/*/
/*/ @example scss*/
/*/  // old-ie.scss*/
/*/  $mq-responsive: false;*/
/*/  @import 'main'; // @media queries in this file will be rasterized up to $mq-static-breakpoint*/
/*/                   // larger breakpoints will be ignored*/
/*/*/
/*/ @type Boolean*/
/*/ @link https://github.com/sass-mq/sass-mq#responsive-mode-off Disabled responsive mode documentation*/
/*/ Breakpoint list*/
/*/*/
/*/ Name your breakpoints in a way that creates a ubiquitous language*/
/*/ across team members. It will improve communication between*/
/*/ stakeholders, designers, developers, and testers.*/
/*/*/
/*/ @type Map*/
/*/ @link https://github.com/sass-mq/sass-mq#seeing-the-currently-active-breakpoint Full documentation and examples*/
/*/ Static breakpoint (for fixed-width layouts)*/
/*/*/
/*/ Define the breakpoint from $mq-breakpoints that should*/
/*/ be used as the target width for the fixed-width layout*/
/*/ (i.e. when $mq-responsive is set to 'false') in a old-ie.scss*/
/*/*/
/*/ @example scss*/
/*/  // tablet-only.scss*/
/*/  //*/
/*/  // Ignore all styles above tablet breakpoint,*/
/*/  // and fix the styles (e.g. layout) at tablet width*/
/*/  $mq-responsive: false;*/
/*/  $mq-static-breakpoint: tablet;*/
/*/  @import 'main'; // @media queries in this file will be rasterized up to tablet*/
/*/                   // larger breakpoints will be ignored*/
/*/*/
/*/ @type String*/
/*/ @link https://github.com/sass-mq/sass-mq#adding-custom-breakpoints Full documentation and examples*/
/*/ Show breakpoints in the top right corner*/
/*/*/
/*/ If you want to display the currently active breakpoint in the top*/
/*/ right corner of your site during development, add the breakpoints*/
/*/ to this list, ordered by width, e.g. (mobile, tablet, desktop).*/
/*/*/
/*/ @type map*/
/*/ Customize the media type (e.g. `@media screen` or `@media print`)*/
/*/ By default sass-mq uses an "all" media type (`@media all and …`)*/
/*/*/
/*/ @type String*/
/*/ @link https://github.com/sass-mq/sass-mq#changing-media-type Full documentation and examples*/
/*/ Convert pixels to ems*/
/*/*/
/*/ @param {Number} $px - value to convert*/
/*/ @param {Number} $base-font-size ($mq-base-font-size) - `<body>` font size*/
/*/*/
/*/ @example scss*/
/*/  $font-size-in-ems: mq-px2em(16px);*/
/*/  p { font-size: mq-px2em(16px); }*/
/*/*/
/*/ @requires $mq-base-font-size*/
/*/ @returns {Number}*/
/*/ Get a breakpoint's width*/
/*/*/
/*/ @param {String} $name - Name of the breakpoint. One of $mq-breakpoints*/
/*/*/
/*/ @example scss*/
/*/  $tablet-width: mq-get-breakpoint-width(tablet);*/
/*/  @media (min-width: mq-get-breakpoint-width(desktop)) {}*/
/*/*/
/*/ @requires {Variable} $mq-breakpoints*/
/*/*/
/*/ @returns {Number} Value in pixels*/
/*/ Media Query mixin*/
/*/*/
/*/ @param {String | Boolean} $from (false) - One of $mq-breakpoints*/
/*/ @param {String | Boolean} $until (false) - One of $mq-breakpoints*/
/*/ @param {String | Boolean} $and (false) - Additional media query parameters*/
/*/ @param {String} $media-type ($mq-media-type) - Media type: screen, print…*/
/*/*/
/*/ @ignore Undocumented API, for advanced use only:*/
/*/ @ignore @param {Map} $breakpoints ($mq-breakpoints)*/
/*/ @ignore @param {String} $static-breakpoint ($mq-static-breakpoint)*/
/*/*/
/*/ @content styling rules, wrapped into a @media query when $responsive is true*/
/*/*/
/*/ @requires {Variable} $mq-media-type*/
/*/ @requires {Variable} $mq-breakpoints*/
/*/ @requires {Variable} $mq-static-breakpoint*/
/*/ @requires {function} mq-px2em*/
/*/ @requires {function} mq-get-breakpoint-width*/
/*/*/
/*/ @link https://github.com/sass-mq/sass-mq#responsive-mode-on-default Full documentation and examples*/
/*/*/
/*/ @example scss*/
/*/  .element {*/
/*/    @include mq($from: mobile) {*/
/*/      color: red;*/
/*/    }*/
/*/    @include mq($until: tablet) {*/
/*/      color: blue;*/
/*/    }*/
/*/    @include mq(mobile, tablet) {*/
/*/      color: green;*/
/*/    }*/
/*/    @include mq($from: tablet, $and: '(orientation: landscape)') {*/
/*/      color: teal;*/
/*/    }*/
/*/    @include mq(950px) {*/
/*/      color: hotpink;*/
/*/    }*/
/*/    @include mq(tablet, $media-type: screen) {*/
/*/      color: hotpink;*/
/*/    }*/
/*/    // Advanced use:*/
/*/    $my-breakpoints: (L: 900px, XL: 1200px);*/
/*/    @include mq(L, $breakpoints: $my-breakpoints, $static-breakpoint: L) {*/
/*/      color: hotpink;*/
/*/    }*/
/*/  }*/
/*/ Add a breakpoint*/
/*/*/
/*/ @param {String} $name - Name of the breakpoint*/
/*/ @param {Number} $width - Width of the breakpoint*/
/*/*/
/*/ @requires {Variable} $mq-breakpoints*/
/*/*/
/*/ @example scss*/
/*/  @include mq-add-breakpoint(tvscreen, 1920px);*/
/*/  @include mq(tvscreen) {}*/
/*/ Show the active breakpoint in the top right corner of the viewport*/
/*/ @link https://github.com/sass-mq/sass-mq#seeing-the-currently-active-breakpoint*/
/*/*/
/*/ @param {List} $show-breakpoints ($mq-show-breakpoints) - List of breakpoints to show in the top right corner*/
/*/ @param {Map} $breakpoints ($mq-breakpoints) - Breakpoint names and sizes*/
/*/*/
/*/ @requires {Variable} $mq-breakpoints*/
/*/ @requires {Variable} $mq-show-breakpoints*/
/*/*/
/*/ @example scss*/
/*/  // Show breakpoints using global settings*/
/*/  @include mq-show-breakpoints;*/
/*/*/
/*/  // Show breakpoints using custom settings*/
/*/  @include mq-show-breakpoints((L, XL), (S: 300px, L: 800px, XL: 1200px));*/
@import url("https://fonts.googleapis.com/css?family=Roboto:100,300,400,500,700");
@import url("https://fonts.googleapis.com/icon?family=Material+Icons");
@import url("https://use.fontawesome.com/releases/v5.8.1/css/all.css");
.grid {
  display: grid;
  grid-gap: 20px;
}

.grid--site-layout {
  min-height: 100%;
  display: grid;
  grid-template-rows: auto 1fr auto;
  grid-template-columns: 100%;
  grid-gap: 0;
}

.grid--one {
  grid-template-columns: 1fr;
}

.grid--two {
  grid-template-columns: 1fr;
  /* From: this breakpoint (inclusive)*/
  /* Until: that breakpoint (exclusive)*/
  /* Responsive support is disabled, rasterize the output outside @media blocks*/
  /* The browser will rely on the cascade itself.*/
  /* Remove unnecessary media query prefix 'all and '*/
}

@media (min-width: 48em) {
  .grid--two {
    grid-template-columns: repeat(2, 1fr);
  }
}

.grid--three {
  grid-template-columns: 1fr;
  grid-gap: 10px;
  /* From: this breakpoint (inclusive)*/
  /* Until: that breakpoint (exclusive)*/
  /* Responsive support is disabled, rasterize the output outside @media blocks*/
  /* The browser will rely on the cascade itself.*/
  /* Remove unnecessary media query prefix 'all and '*/
}

@media (min-width: 41.25em) {
  .grid--three {
    grid-template-columns: repeat(3, 1fr);
  }
}

.grid--four {
  grid-template-columns: 1fr;
  grid-gap: 10px;
  /* From: this breakpoint (inclusive)*/
  /* Until: that breakpoint (exclusive)*/
  /* Responsive support is disabled, rasterize the output outside @media blocks*/
  /* The browser will rely on the cascade itself.*/
  /* Remove unnecessary media query prefix 'all and '*/
  /* From: this breakpoint (inclusive)*/
  /* Until: that breakpoint (exclusive)*/
  /* Responsive support is disabled, rasterize the output outside @media blocks*/
  /* The browser will rely on the cascade itself.*/
  /* Remove unnecessary media query prefix 'all and '*/
}

@media (min-width: 48em) {
  .grid--four {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 64em) {
  .grid--four {
    grid-template-columns: repeat(4, 1fr);
  }
}

.grid--five {
  grid-template-columns: 1fr;
  grid-gap: 10px;
  /* From: this breakpoint (inclusive)*/
  /* Until: that breakpoint (exclusive)*/
  /* Responsive support is disabled, rasterize the output outside @media blocks*/
  /* The browser will rely on the cascade itself.*/
  /* Remove unnecessary media query prefix 'all and '*/
  /* From: this breakpoint (inclusive)*/
  /* Until: that breakpoint (exclusive)*/
  /* Responsive support is disabled, rasterize the output outside @media blocks*/
  /* The browser will rely on the cascade itself.*/
  /* Remove unnecessary media query prefix 'all and '*/
}

@media (min-width: 48em) {
  .grid--five {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 64em) {
  .grid--five {
    grid-template-columns: repeat(5, 1fr);
  }
}

.grid--six {
  grid-template-columns: 1fr;
  grid-gap: 10px;
  /* From: this breakpoint (inclusive)*/
  /* Until: that breakpoint (exclusive)*/
  /* Responsive support is disabled, rasterize the output outside @media blocks*/
  /* The browser will rely on the cascade itself.*/
  /* Remove unnecessary media query prefix 'all and '*/
  /* From: this breakpoint (inclusive)*/
  /* Until: that breakpoint (exclusive)*/
  /* Responsive support is disabled, rasterize the output outside @media blocks*/
  /* The browser will rely on the cascade itself.*/
  /* Remove unnecessary media query prefix 'all and '*/
  /* From: this breakpoint (inclusive)*/
  /* Until: that breakpoint (exclusive)*/
  /* Responsive support is disabled, rasterize the output outside @media blocks*/
  /* The browser will rely on the cascade itself.*/
  /* Remove unnecessary media query prefix 'all and '*/
}

@media (min-width: 30em) {
  .grid--six {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 48em) {
  .grid--six {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 64em) {
  .grid--six {
    grid-template-columns: repeat(6, 1fr);
  }
}

/*IE 11*/
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .grid {
    display: flex;
    flex-direction: column;
  }
  .grid--layout {
    min-height: 100%;
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }
  .grid--layout main {
    flex-grow: 1;
  }
  .grid--layout header,
  .grid--layout footer {
    flex-shrink: 0;
  }
  .grid--two {
    flex-wrap: wrap;
    flex-direction: row;
    /* From: this breakpoint (inclusive)*/
    /* Until: that breakpoint (exclusive)*/
    /* Responsive support is disabled, rasterize the output outside @media blocks*/
    /* The browser will rely on the cascade itself.*/
    /* Remove unnecessary media query prefix 'all and '*/
  }
}

@media screen and (-ms-high-contrast: active) and (min-width: 30em), (-ms-high-contrast: none) and (min-width: 30em) {
  .grid--two .card {
    flex: 0 0 48%;
    margin: 1%;
  }
}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .grid--three {
    flex-wrap: wrap;
    flex-direction: row;
    /* From: this breakpoint (inclusive)*/
    /* Until: that breakpoint (exclusive)*/
    /* Responsive support is disabled, rasterize the output outside @media blocks*/
    /* The browser will rely on the cascade itself.*/
    /* Remove unnecessary media query prefix 'all and '*/
  }
}

@media screen and (-ms-high-contrast: active) and (min-width: 41.25em), (-ms-high-contrast: none) and (min-width: 41.25em) {
  .grid--three .card {
    flex: 0 0 32%;
    margin: 1% .5%;
  }
}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .grid--four {
    flex-wrap: wrap;
    flex-direction: row;
    /* From: this breakpoint (inclusive)*/
    /* Until: that breakpoint (exclusive)*/
    /* Responsive support is disabled, rasterize the output outside @media blocks*/
    /* The browser will rely on the cascade itself.*/
    /* Remove unnecessary media query prefix 'all and '*/
    /* From: this breakpoint (inclusive)*/
    /* Until: that breakpoint (exclusive)*/
    /* Responsive support is disabled, rasterize the output outside @media blocks*/
    /* The browser will rely on the cascade itself.*/
    /* Remove unnecessary media query prefix 'all and '*/
  }
}

@media screen and (-ms-high-contrast: active) and (min-width: 30em), (-ms-high-contrast: none) and (min-width: 30em) {
  .grid--four .card {
    flex: 0 0 49%;
    margin: 1% .5%;
  }
}

@media screen and (-ms-high-contrast: active) and (min-width: 48em), (-ms-high-contrast: none) and (min-width: 48em) {
  .grid--four .card {
    flex: 0 0 24%;
  }
}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .grid--five {
    flex-wrap: wrap;
    flex-direction: row;
    /* From: this breakpoint (inclusive)*/
    /* Until: that breakpoint (exclusive)*/
    /* Responsive support is disabled, rasterize the output outside @media blocks*/
    /* The browser will rely on the cascade itself.*/
    /* Remove unnecessary media query prefix 'all and '*/
    /* From: this breakpoint (inclusive)*/
    /* Until: that breakpoint (exclusive)*/
    /* Responsive support is disabled, rasterize the output outside @media blocks*/
    /* The browser will rely on the cascade itself.*/
    /* Remove unnecessary media query prefix 'all and '*/
  }
}

@media screen and (-ms-high-contrast: active) and (min-width: 48em), (-ms-high-contrast: none) and (min-width: 48em) {
  .grid--five .card {
    flex: 0 0 49%;
    margin: 1% .5%;
  }
}

@media screen and (-ms-high-contrast: active) and (min-width: 64em), (-ms-high-contrast: none) and (min-width: 64em) {
  .grid--five .card {
    flex: 0 0 19%;
  }
}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .grid--six {
    flex-wrap: wrap;
    flex-direction: row;
    /* From: this breakpoint (inclusive)*/
    /* Until: that breakpoint (exclusive)*/
    /* Responsive support is disabled, rasterize the output outside @media blocks*/
    /* The browser will rely on the cascade itself.*/
    /* Remove unnecessary media query prefix 'all and '*/
    /* From: this breakpoint (inclusive)*/
    /* Until: that breakpoint (exclusive)*/
    /* Responsive support is disabled, rasterize the output outside @media blocks*/
    /* The browser will rely on the cascade itself.*/
    /* Remove unnecessary media query prefix 'all and '*/
    /* From: this breakpoint (inclusive)*/
    /* Until: that breakpoint (exclusive)*/
    /* Responsive support is disabled, rasterize the output outside @media blocks*/
    /* The browser will rely on the cascade itself.*/
    /* Remove unnecessary media query prefix 'all and '*/
  }
}

@media screen and (-ms-high-contrast: active) and (min-width: 30em), (-ms-high-contrast: none) and (min-width: 30em) {
  .grid--six .card {
    flex: 0 0 49%;
    margin: 1% .5%;
  }
}

@media screen and (-ms-high-contrast: active) and (min-width: 48em), (-ms-high-contrast: none) and (min-width: 48em) {
  .grid--six .card {
    flex: 0 0 32%;
  }
}

@media screen and (-ms-high-contrast: active) and (min-width: 64em), (-ms-high-contrast: none) and (min-width: 64em) {
  .grid--six .card {
    flex: 0 0 15.5%;
  }
}

/*PLACEHOLDERS use ''@extend %placeholder' in css above all other styles in the class*/
.breadcrumb, .menu__list, .side-menu__list, .submenu__list, .more-menu__list, .pagination__list, .progress-bar__list, .social__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* ==========================================================================
   Variables and mixins
   ========================================================================== */
/* ==========================================================================
   Breakpoints
   ========================================================================== */
/* Add breakpoints and tweakpoints here*/
/* To add custom breakpoints directly inside of a component,*/
/* see https://github.com/guardian/sass-mq#adding-custom-breakpoints*/
/* Name your breakpoints in a way that creates a ubiquitous language*/
/* across team members. It will improve communication between*/
/* stakeholders, designers, developers, and testers.*/
/* Show the current breakpoint in the top right corner of the viewport:*/
/* see https://github.com/guardian/sass-mq#seeing-the-currently-active-breakpoint*/
/* Uncomment to activate during development*/
/*$mq-show-breakpoints: (mobile, mobileLandscape, phablet, tablet, desktop, wide);*/
/* ==========================================================================
   Colours
   ========================================================================== */
/*blue*/
/*red*/
/*green*/
/*blue*/
/*red*/
/*green light*/
/*UI colours*/
/*Greyscale colours*/
/*blue*/
/*green*/
/*red*/
/*grey medium*/
/*grey darkest*/
/*blue*/
/*purple*/
/*red*/
/*green*/
/*cyan*/
/*grey light*/
/*grey dark*/
/*pale blue*/
/*pale yellow*/
/*pale red*/
/*pale green*/
/*pale cyan*/
/*grey light*/
/*grey*/
/* ==========================================================================
  BUTTONS
   ========================================================================== */
/* ==========================================================================
  ANIMATION
   ========================================================================== */
/* ==========================================================================
  MISC
   ========================================================================== */
/* ==========================================================================
   Fonts
   ========================================================================== */
/* PROJECT PATHS */
/*$project-path: '/project';*/
/* USE EXAMPLE: background: url('../images/sprites.png') -459px -396px no-repeat; */
/* ==========================================================================
   Base
   ========================================================================== */
body,
html {
  width: 100%;
  height: 100%;
}

body {
  margin: 0;
  padding: 0;
  text-align: center;
  height: 100%;
  color: #333333;
  font-family: "Roboto", Helvetica, Arial, sans-serif;
  background-color: #e2e9ea;
}

a {
  color: #333333;
  text-decoration: none;
  transition: all 0.5s ease;
}

* {
  box-sizing: border-box;
}

img {
  max-width: 100%;
  height: auto;
}

legend {
  display: none;
}

fieldset {
  border: 0;
  padding: 0;
  margin: 0;
}

h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 20px;
}

p {
  margin: 0 0 20px;
}

/*! normalize.css v4.1.1 | MIT License | github.com/necolas/normalize.css */
/**
 * 2. Prevent adjustments of font size after orientation changes in IE and iOS.
 */
html {
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
}

/**
 * Remove the margin in all browsers (opinionated).
 */
body {
  margin: 0;
}

/* HTML5 display definitions
   ========================================================================== */
/**
 * 1. Add the correct display in Edge, IE, and Firefox.
 * 2. Add the correct display in IE.
 */
/* 1 */
figcaption, figure, footer, header, main,
menu,
nav,
section,
summary {
  /* 1 */
  display: block;
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Add the correct display in IE 10-.
 * 1. Add the correct display in IE.
 */
template,
[hidden] {
  display: none;
}

/* Links
   ========================================================================== */
/**
 * 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 */
}

/**
 * Remove the outline on focused links when they are also active or hovered
 * in all browsers (opinionated).
 */
a:active,
a:hover {
  outline-width: 0;
}

/* Text-level semantics
   ========================================================================== */
/**
 * 1. Remove the bottom border in Firefox 39-.
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: 0;
  /* 1 */
  text-decoration: underline;
  /* 2 */
}

/**
 * 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: baseline;
}

sub {
  bottom: -.25em;
}

sup {
  top: -.5em;
}

/* Embedded content
   ========================================================================== */
/**
 * Remove the border on images inside links in IE 10-.
 */
img {
  border-style: none;
}

/**
 * Hide the overflow in IE.
 */
svg:not(:root) {
  overflow: hidden;
}

/* Grouping content
   ========================================================================== */
/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
pre,
samp {
  font-family: monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
}

/**
 * 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 */
}

/* Forms
   ========================================================================== */
/**
 * 1. Change font properties to `inherit` in all browsers (opinionated).
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
select,
textarea {
  font: inherit;
  /* 1 */
  margin: 0;
  /* 2 */
}

/**
 * Restore the font weight unset by the previous rule.
 */
optgroup {
  font-weight: bold;
}

/**
 * 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.
 */
[type='button']::-moz-focus-inner,
[type='reset']::-moz-focus-inner,
[type='submit']::-moz-focus-inner,
button::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
[type='button']:-moz-focusring,
[type='reset']:-moz-focusring,
[type='submit']:-moz-focusring,
button:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * 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 OS X.
 */
[type='search']::-webkit-search-cancel-button,
[type='search']::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * Correct the text style of placeholders in Chrome, Edge, and Safari.
 */
::-webkit-input-placeholder {
  color: inherit;
  opacity: .54;
}

/**
 * 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 */
}

/* ==========================================================================
   Layout
   ========================================================================== */
.header {
  position: fixed;
  width: 100%;
  z-index: 100;
  min-height: 50px;
  /* From: this breakpoint (inclusive)*/
  /* Until: that breakpoint (exclusive)*/
  /* Responsive support is disabled, rasterize the output outside @media blocks*/
  /* The browser will rely on the cascade itself.*/
  /* Remove unnecessary media query prefix 'all and '*/
}

@media (min-width: 64em) {
  .header {
    position: relative;
    min-height: 60px;
  }
}

.header__wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #ffffff;
}

.header__row {
  display: none;
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  /* From: this breakpoint (inclusive)*/
  /* Until: that breakpoint (exclusive)*/
  /* Responsive support is disabled, rasterize the output outside @media blocks*/
  /* The browser will rely on the cascade itself.*/
  /* Remove unnecessary media query prefix 'all and '*/
}

@media (min-width: 64em) {
  .header__row {
    display: flex;
  }
}

.header__row--user-menu {
  background: #f5f5f5;
  max-width: 100%;
}

.header__row--main-menu {
  border-bottom: 1px solid #e2e9ea;
  max-width: 100%;
}

.header__row--mobile {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  /* From: this breakpoint (inclusive)*/
  /* Until: that breakpoint (exclusive)*/
  /* Responsive support is disabled, rasterize the output outside @media blocks*/
  /* The browser will rely on the cascade itself.*/
  /* Remove unnecessary media query prefix 'all and '*/
}

@media (min-width: 64em) {
  .header__row--mobile {
    display: none;
  }
}

.header__column {
  flex: 1 1 auto;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 10px;
  /* From: this breakpoint (inclusive)*/
  /* Until: that breakpoint (exclusive)*/
  /* Responsive support is disabled, rasterize the output outside @media blocks*/
  /* The browser will rely on the cascade itself.*/
  /* Remove unnecessary media query prefix 'all and '*/
}

@media (min-width: 85.375em) {
  .header__column {
    padding: 10px 0;
  }
}

.logo {
  padding: 10px 20px;
}

.logo__desktop {
  display: none;
  /* From: this breakpoint (inclusive)*/
  /* Until: that breakpoint (exclusive)*/
  /* Responsive support is disabled, rasterize the output outside @media blocks*/
  /* The browser will rely on the cascade itself.*/
  /* Remove unnecessary media query prefix 'all and '*/
}

@media (min-width: 64em) {
  .logo__desktop {
    display: block;
  }
}

.logo__mobile {
  padding: 5px 10px;
  /* From: this breakpoint (inclusive)*/
  /* Until: that breakpoint (exclusive)*/
  /* Responsive support is disabled, rasterize the output outside @media blocks*/
  /* The browser will rely on the cascade itself.*/
  /* Remove unnecessary media query prefix 'all and '*/
}

@media (min-width: 64em) {
  .logo__mobile {
    display: none;
  }
}

.footer {
  border-top: 1px solid #bdbdbd;
  width: 100%;
  font-size: .875rem;
}

.footer__wrapper {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
}

.footer__row {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 10px;
  border-bottom: 1px solid #f5f5f5;
  /* From: this breakpoint (inclusive)*/
  /* Until: that breakpoint (exclusive)*/
  /* Responsive support is disabled, rasterize the output outside @media blocks*/
  /* The browser will rely on the cascade itself.*/
  /* Remove unnecessary media query prefix 'all and '*/
  /* From: this breakpoint (inclusive)*/
  /* Until: that breakpoint (exclusive)*/
  /* Responsive support is disabled, rasterize the output outside @media blocks*/
  /* The browser will rely on the cascade itself.*/
  /* Remove unnecessary media query prefix 'all and '*/
}

.footer__row:first-child {
  background: #f5f5f5;
}

.footer__row:last-child {
  border: 0;
}

@media (min-width: 48em) {
  .footer__row {
    flex-direction: row;
  }
}

@media (min-width: 85.375em) {
  .footer__row {
    padding: 10px 0;
  }
}

.footer__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
}

.footer__list-item {
  margin-right: 10px;
}

.footer__list-item:last-child {
  margin-right: 0;
}

.footer a:hover {
  text-decoration: underline;
}

.site-container {
  width: 100%;
  background-color: #ffffff;
  position: relative;
}

.site-container--template {
  padding: 10px;
}

.page-content {
  padding: 10px;
  flex: 1 1 auto;
  margin: 0 20px;
  /* From: this breakpoint (inclusive)*/
  /* Until: that breakpoint (exclusive)*/
  /* Responsive support is disabled, rasterize the output outside @media blocks*/
  /* The browser will rely on the cascade itself.*/
  /* Remove unnecessary media query prefix 'all and '*/
}

@media (min-width: 48em) {
  .page-content {
    padding: 20px;
  }
}

.main--page-layout {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  background: #f4f5f5;
  /* From: this breakpoint (inclusive)*/
  /* Until: that breakpoint (exclusive)*/
  /* Responsive support is disabled, rasterize the output outside @media blocks*/
  /* The browser will rely on the cascade itself.*/
  /* Remove unnecessary media query prefix 'all and '*/
}

@media (min-width: 48em) {
  .main--page-layout {
    flex-direction: row;
  }
}

.hidden {
  /*hidden but accesible*/
  position: absolute !important;
  clip: rect(1px, 1px, 1px, 1px);
  height: 1px;
  width: 0;
  overflow: hidden;
  opacity: 0;
}

.item-heading {
  display: inline-block;
  width: 100%;
  text-align: left;
  margin: 0 0 30px;
  padding-bottom: 5px;
  border-bottom: 1px solid #bdbdbd;
}

.group-heading {
  display: inline-block;
  width: 100%;
  text-align: left;
  margin: 0 0 10px;
  font-weight: 400;
  padding-bottom: 5px;
  border-bottom: 1px solid #bdbdbd;
}

.note {
  display: inline-block;
  width: 100%;
  text-align: left;
  margin: 0 0 30px;
  font-size: .875rem;
  line-height: 1.75em;
}

.component-wrapper {
  width: 100%;
  max-width: 760px;
  margin: 20px auto;
  padding: 30px;
  background-color: #ffffff;
  text-align: left;
  /* From: this breakpoint (inclusive)*/
  /* Until: that breakpoint (exclusive)*/
  /* Responsive support is disabled, rasterize the output outside @media blocks*/
  /* The browser will rely on the cascade itself.*/
  /* Remove unnecessary media query prefix 'all and '*/
}

@media (min-width: 48em) {
  .component-wrapper {
    padding: 50px;
  }
}

.component-wrapper--full-width {
  max-width: 100%;
}

pre {
  width: 100%;
  margin: 10px auto;
  padding: 20px;
  background-color: #f4f5f5;
  border: 1px solid #bdbdbd;
  text-align: left;
  overflow: scroll;
  font-size: .75rem;
  word-break: normal;
  word-wrap: normal;
  color: #9e9e9e;
}

pre .tag {
  color: #03a9f4;
}

pre .class {
  color: #f44336;
}

pre .text {
  color: #000000;
}

/* ==========================================================================
  Vendor
   ========================================================================== */
/*@import 'sass/vendor/_jcf';*/
/* ==========================================================================
  Module
   ========================================================================== */
.alert {
  width: 100%;
  padding: 20px;
  margin: 10px 0;
  border-radius: 5px;
  border-width: 1px;
  border-style: solid;
  position: relative;
  font-size: .875rem;
  font-weight: 400;
}

.alert {
  border-color: #e2e9ea;
}

.alert--primary {
  color: #033247;
  background-color: #b3e5fc;
  border-color: #82d4fa;
}

.alert--secondary {
  color: #5e5400;
  background-color: #fff9c4;
  border-color: #fff491;
}

.alert--success {
  color: #173218;
  background-color: #c8e6c9;
  border-color: #a5d6a7;
}

.alert--warning {
  color: #67000a;
  background-color: #ffcdd2;
  border-color: #ff9aa4;
}

.alert--info {
  color: #105962;
  background-color: #b2ebf2;
  border-color: #86e0eb;
}

.alert--light {
  color: #3c3c3c;
  background-color: #eeeeee;
  border-color: #d5d5d5;
}

.alert--dark {
  color: #1a1a1a;
  background-color: #cccccc;
  border-color: #b3b3b3;
}

.alert--dismissable {
  padding-right: 50px;
}

.alert--dismissable button {
  position: absolute;
  top: 15px;
  right: 10px;
}

.alert--icon {
  padding-left: 40px;
}

.alert--icon i {
  position: absolute;
  top: 15px;
  left: 12px;
  color: #f44336;
}

.alert p:last-of-type {
  margin-bottom: 0;
}

.avatar {
  position: relative;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  overflow: hidden;
  background: #e2e9ea;
  display: flex;
  justify-content: center;
  align-items: center;
}

.avatar--med {
  width: 100px;
  height: 100px;
}

.avatar--small {
  width: 50px;
  height: 50px;
}

.avatar--x-small {
  width: 30px;
  height: 30px;
}

.avatar__icon {
  width: 100%;
  height: 100%;
  opacity: .2;
}

.avatar__image {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.badge {
  display: inline-block;
  width: auto;
  font-weight: 300;
  font-size: .75rem;
  padding: 5px 7px;
  line-height: 1em;
  white-space: nowrap;
  border-radius: 3px;
  border-width: 1px;
  border-style: solid;
}

.badge {
  letter-spacing: 0.03rem;
  transition: all 0.5s ease;
  border-color: #bdbdbd;
}

.badge i {
  font-size: .875rem;
}

.badge--primary {
  color: #ffffff;
  background-color: #03a9f4;
  border-color: #03a9f4;
}

.badge--secondary {
  color: #ffffff;
  background-color: #9c27b0;
  border-color: #9c27b0;
}

.badge--success {
  color: #ffffff;
  background-color: #4caf50;
  border-color: #4caf50;
}

.badge--alert {
  color: #ffffff;
  background-color: #f44336;
  border-color: #f44336;
}

.badge--info {
  color: #ffffff;
  background-color: #00bcd4;
  border-color: #00bcd4;
}

.badge--light {
  color: #616161;
  background-color: #eeeeee;
  border-color: #eeeeee;
}

.badge--dark {
  color: #ffffff;
  background-color: #666666;
  border-color: #666666;
}

.badge--pill {
  border-radius: 15px;
  padding: 5px 10px;
}

.badge--icon-text {
  position: relative;
  padding-left: 22px;
  /*for 12px icon*/
}

.badge--icon-text i {
  position: absolute;
  left: 5px;
  top: 50%;
  transform: translateY(-50%);
}

.badge--round {
  padding: 5px;
  border-radius: 12px;
  min-width: 24px;
  text-align: center;
  height: 24px;
  line-height: 14px;
  position: relative;
}

.badge--round i {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.badge--image-overlay {
  position: absolute;
  bottom: 10px;
  right: 10px;
}

a.badge:hover {
  background-color: #e2e9ea;
}

a.badge--primary:hover {
  background-color: #0286c2;
  border-color: #0286c2;
}

a.badge--secondary:hover {
  background-color: #771e86;
  border-color: #771e86;
}

a.badge--success:hover {
  background-color: #3d8b40;
  border-color: #3d8b40;
}

a.badge--alert:hover {
  background-color: #ea1c0d;
  border-color: #ea1c0d;
}

a.badge--info:hover {
  background-color: #008fa1;
  border-color: #008fa1;
}

a.badge--light:hover {
  background-color: #d5d5d5;
  border-color: #d5d5d5;
}

a.badge--dark:hover {
  background-color: #4d4d4d;
  border-color: #4d4d4d;
}

a.badge span {
  opacity: .8;
  transition: all 0.5s ease;
}

a.badge:hover span {
  opacity: 1;
}

.breadcrumb {
  display: flex;
  align-content: center;
  width: 100%;
  margin: 20px 0;
  color: #bdbdbd;
  font-size: .875rem;
}

.breadcrumb__item {
  margin: 0 10px 0 0;
  max-width: 250px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.breadcrumb__item:after {
  content: ">";
  margin-left: 10px;
}

.breadcrumb__item:last-of-type {
  margin: 0;
}

.breadcrumb__item:last-of-type:after {
  content: '';
  margin: 0;
}

.breadcrumb__item:last-of-type a {
  color: #9e9e9e;
}

.button {
  border: 0;
  cursor: pointer;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1em;
  white-space: nowrap;
  min-width: 120px;
}

.button.button--outline, .button--cta.button--outline, .button--alert.button--outline, .button--light.button--outline, .button--dark.button--outline {
  background: none;
  border-width: 2px;
  border-style: solid;
  box-shadow: none;
}

.icon-button {
  border: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: .6;
  transition: all 0.5s ease;
  background: none;
}

.icon-button:hover {
  opacity: 1;
}

.icon-button--round {
  background-color: #03a9f4;
  color: #ffffff;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.3);
  width: 36px;
  height: 36px;
  border-radius: 18px;
  opacity: 1;
}

.icon-button--round:hover {
  box-shadow: 1px 2px 3px 0 rgba(0, 0, 0, 0.5);
  transform: scale(0.9);
}

.icon-button--menu {
  transition: none;
  margin-left: 10px;
  /* From: this breakpoint (inclusive)*/
  /* Until: that breakpoint (exclusive)*/
  /* Responsive support is disabled, rasterize the output outside @media blocks*/
  /* The browser will rely on the cascade itself.*/
  /* Remove unnecessary media query prefix 'all and '*/
}

.icon-button--menu.open {
  opacity: 1;
}

@media (min-width: 64em) {
  .icon-button--menu {
    display: none;
  }
}

.icon-button--side-menu {
  display: block;
  /* From: this breakpoint (inclusive)*/
  /* Until: that breakpoint (exclusive)*/
  /* Responsive support is disabled, rasterize the output outside @media blocks*/
  /* The browser will rely on the cascade itself.*/
  /* Remove unnecessary media query prefix 'all and '*/
}

@media (min-width: 48em) {
  .icon-button--side-menu {
    display: none;
  }
}

.icon-button--user {
  color: #000000;
}

.icon-button--user i {
  font-size: 2rem;
}

.button {
  background-color: #03a9f4;
  color: #ffffff;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.03rem;
  height: 40px;
  padding: 5px 20px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.3);
  transition: background-color 0.5s ease;
  /* From: this breakpoint (inclusive)*/
  /* Until: that breakpoint (exclusive)*/
  /* Responsive support is disabled, rasterize the output outside @media blocks*/
  /* The browser will rely on the cascade itself.*/
  /* Remove unnecessary media query prefix 'all and '*/
}

@media (min-width: 41.25em) {
  .button {
    max-width: 160px;
  }
}

.button:hover {
  background-color: #0286c2;
  box-shadow: none;
}

.button.button--outline {
  border-color: #03a9f4;
  color: #03a9f4;
}

.button.button--outline:hover {
  background: #03a9f4;
  color: #ffffff;
}

.button--rounded {
  border-radius: 20px;
}

.button--cta {
  background-color: #4caf50;
}

.button--cta:hover {
  background-color: #3d8b40;
}

.button--cta.button--outline {
  border-color: #4caf50;
  color: #4caf50;
}

.button--cta.button--outline:hover {
  background: #4caf50;
  color: #ffffff;
}

.button--alert {
  background-color: #f44336;
}

.button--alert:hover {
  background-color: #d2190b;
}

.button--alert.button--outline {
  border-color: #f44336;
  color: #f44336;
}

.button--alert.button--outline:hover {
  background: #f44336;
  color: #ffffff;
}

.button--light {
  background-color: #999999;
}

.button--light:hover {
  background-color: gray;
}

.button--light.button--outline {
  border-color: #999999;
  color: #999999;
}

.button--light.button--outline:hover {
  background: #999999;
  color: #ffffff;
}

.button--dark {
  background-color: #444444;
}

.button--dark:hover {
  background-color: #2b2b2b;
}

.button--dark.button--outline {
  border-color: #444444;
  color: #444444;
}

.button--dark.button--outline:hover {
  background: #444444;
  color: #ffffff;
}

.button--disabled {
  opacity: .4;
  cursor: auto;
  box-shadow: none;
  background-color: #999999;
  color: #000000;
}

.button--disabled:hover {
  background-color: #999999;
}

.button--icon {
  padding: 5px 30px;
  width: auto;
  position: relative;
}

.button--icon i {
  font-size: 1rem;
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
}

.button--small {
  height: 26px;
  font-size: 0.625rem;
  padding: 3px 10px;
  width: auto;
  min-width: auto;
  max-width: auto;
}

.button--plain {
  padding: 5px;
  min-width: 70px;
  background-color: #f4f5f5;
  border: 1px solid #bdbdbd;
  font-size: .813rem;
  height: 30px;
  color: #424242;
  text-transform: none;
  letter-spacing: 0;
  box-shadow: none;
  border-radius: 3px;
}

.button--plain:hover {
  background-color: #bdbdbd;
}

.button--full-width {
  width: 100%;
  min-width: 100%;
  max-width: 100%;
}

.button--back {
  background: none;
  border-radius: 0;
  height: auto;
  padding: 0;
  box-shadow: none;
  text-transform: none;
  color: #333333;
  font-size: .875rem;
  justify-content: flex-start;
  letter-spacing: normal;
  transition: all 0.5s ease;
}

.button--back i {
  margin-left: 0;
  margin-right: 5px;
  opacity: .6;
}

.button--back:hover {
  background: none;
}

.button--back:hover i {
  margin-left: -1px;
  margin-right: 6px;
  opacity: 1;
}

.button--link {
  background: none;
  border-radius: 0;
  height: auto;
  padding: 0 0 3px;
  box-shadow: none;
  color: #03a9f4;
  width: auto;
  border-bottom: 1px solid transparent;
  display: inline-block;
  font-weight: 500;
}

.button--link:hover {
  background: none;
  border-color: #03a9f4;
}

.card__title {
  margin: 0 0 20px;
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: .025em;
}

.card {
  width: 100%;
  max-width: 760px;
  background-color: #ffffff;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  margin: 0 auto;
}

.card__content {
  padding: 20px;
  text-align: left;
  /* From: this breakpoint (inclusive)*/
  /* Until: that breakpoint (exclusive)*/
  /* Responsive support is disabled, rasterize the output outside @media blocks*/
  /* The browser will rely on the cascade itself.*/
  /* Remove unnecessary media query prefix 'all and '*/
  /* From: this breakpoint (inclusive)*/
  /* Until: that breakpoint (exclusive)*/
  /* Responsive support is disabled, rasterize the output outside @media blocks*/
  /* The browser will rely on the cascade itself.*/
  /* Remove unnecessary media query prefix 'all and '*/
}

@media (min-width: 48em) {
  .card__content {
    padding: 30px;
  }
}

@media (min-width: 85.375em) {
  .card__content {
    padding: 50px;
  }
}

.card__content p {
  line-height: 1.5em;
  margin: 0 0 30px;
}

.card__content p:last-of-type {
  margin: 0;
}

.card__content p a {
  color: #03a9f4;
}

.card__content p a:hover {
  border-color: #03a9f4;
}

.card__title--header {
  margin: 0;
}

.card__title--with-badge {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.card__title a {
  color: #333333;
}

.card__title a:hover {
  border-color: #616161;
}

.card__image {
  line-height: 0;
}

.card__image--with-badge {
  position: relative;
}

.card__image img {
  width: 100%;
}

.card__image a {
  border: 0;
}

.card__footer {
  margin-top: auto;
  padding: 20px;
  text-align: left;
  background-color: #f4f5f5;
  display: flex;
  /* From: this breakpoint (inclusive)*/
  /* Until: that breakpoint (exclusive)*/
  /* Responsive support is disabled, rasterize the output outside @media blocks*/
  /* The browser will rely on the cascade itself.*/
  /* Remove unnecessary media query prefix 'all and '*/
}

@media (min-width: 48em) {
  .card__footer {
    padding: 20px 50px;
  }
}

.card__header {
  padding: 20px;
  text-align: left;
  background-color: #f4f5f5;
  display: flex;
}

.card__header--with-badge {
  justify-content: space-between;
  align-items: center;
}

.card__image + .card__content {
  /*If there is an image before content*/
  /* From: this breakpoint (inclusive)*/
  /* Until: that breakpoint (exclusive)*/
  /* Responsive support is disabled, rasterize the output outside @media blocks*/
  /* The browser will rely on the cascade itself.*/
  /* Remove unnecessary media query prefix 'all and '*/
}

@media (min-width: 48em) {
  .card__image + .card__content {
    padding-top: 30px;
  }
}

.card__title + .author {
  /*If author comes after title*/
  margin-top: -15px;
}

.author--card + .date {
  /*If date comes after author*/
  margin-top: -15px;
}

p {
  line-height: 1.5em;
  margin: 0 0 30px;
  font-weight: 400;
}

.modal p {
  color: #616161;
}

.modal p:last-of-type {
  margin: 0;
}

.form-radio {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  background-color: #e2e9ea;
  color: #9e9e9e;
  height: 20px;
  width: 20px;
  border: 0;
  border-radius: 20px;
  cursor: pointer;
  margin-right: 7px;
  outline: none;
  overflow: hidden;
  transition: all 0.5s ease;
}

.form-radio:checked::before {
  content: '';
  width: 10px;
  height: 10px;
  border-radius: 5px;
  background-color: #9e9e9e;
}

.form-radio:hover {
  background-color: #bdbdbd;
}

.form-radio:checked {
  background-color: #e2e9ea;
}

.form-checkbox {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: inline-block;
  position: relative;
  background-color: #e2e9ea;
  color: #616161;
  height: 20px;
  width: 20px;
  border: 0;
  border-radius: 3px;
  cursor: pointer;
  margin-right: 7px;
  outline: none;
  transition: all 0.5s ease;
}

.form-checkbox:checked::before {
  position: absolute;
  font: 600 13px/1 Arial, Helvetica, sans-serif;
  left: 6px;
  top: 2px;
  content: '\02143';
  transform: rotate(40deg);
}

.form-checkbox:hover {
  background-color: #bdbdbd;
}

.form-checkbox:checked {
  background-color: #e2e9ea;
}

input,
label,
select,
textarea {
  font-family: "Roboto", Helvetica, Arial, sans-serif;
  font-size: .875rem;
}

input,
textarea {
  border: 1px solid #bdbdbd;
  padding: 10px;
  width: 100%;
}

select {
  font-size: .875rem;
  border: 0;
  border-radius: 0;
  border-bottom: 1px solid #bdbdbd;
  background: none;
  padding: 5px 30px 5px 0;
  height: 30px;
  /* Removes the default <select> styling */
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  /* Positions background arrow image */
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAoAAAAHCAYAAAAxrNxjAAAAAXNSR0IArs4c6QAAAJVJREFUGBlt0EEKwkAMBdAkXdRjeImCJyiCu9JTqNsBz9DpLFvwEqKIl1M6v4laGWqzS/6bvxhu264aIoKwHJ3bPyiZpulKEM6c8UkUeSKsI4aL9/1ucl90s4y0iPWwJY5XgHJFT+GsAvDSJkOrz01qtoY5Jn2ZIucO9zdcwHbSdqkN2fKDtiTNnCLL/kZ/oQih38yDET+eUFeYCxvjAAAAAElFTkSuQmCC");
  background-repeat: no-repeat;
  background-position: 99% 50%;
  width: 100%;
}

/* Internet Explorer 10–11 and Edge */
select::-ms-expand {
  display: none;
}

option {
  padding: 5px;
  color: #000000;
}

label {
  color: #616161;
  margin-bottom: 3px;
}

input[type][disabled] {
  background-color: #e2e9ea;
  color: #bdbdbd;
  border: 0;
  cursor: default;
}

input[type][disabled] + label {
  color: #616161;
  cursor: default;
}

select[disabled] {
  background-color: #e2e9ea;
  color: #bdbdbd;
  border: 0;
  cursor: default;
  padding-left: 5px;
}

select[disabled] + label {
  color: #616161;
  cursor: default;
}

*:focus {
  outline: none;
}

.form-field {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin: 0 0 20px;
  width: 100%;
  max-width: 400px;
}

.form-field--small {
  max-width: 100px;
}

.form-field--full-width {
  max-width: 100%;
}

.form-field--radio {
  flex-direction: row;
  align-items: center;
  max-width: 100%;
}

.form-field--radio label {
  cursor: pointer;
  margin: 0;
}

.form-field--checkbox {
  flex-direction: row;
  align-items: center;
  max-width: 100%;
}

.form-field--checkbox label {
  cursor: pointer;
  margin: 0;
}

.form-field--pagination {
  flex-direction: row;
  align-items: center;
  margin: 0;
}

.form-field--pagination label {
  margin-right: 10px;
}

.form-field--search {
  margin: 0;
  max-width: 100%;
}

.form-field--search input {
  border: 0;
}

.toggle input[type=checkbox] {
  height: 0;
  width: 0;
  visibility: hidden;
}

.toggle label {
  cursor: pointer;
  text-indent: -9999px;
  width: 40px;
  height: 18px;
  background: #bdbdbd;
  display: block;
  border-radius: 20px;
  position: relative;
}

.toggle label:after {
  content: '';
  position: absolute;
  top: 2px;
  left: 3px;
  width: 14px;
  height: 14px;
  background: #ffffff;
  border-radius: 18px;
  transition: .3s;
}

.toggle input:checked + label {
  background: #03a9f4;
}

.toggle input:checked + label:after {
  left: calc(100% - 3px);
  transform: translateX(-100%);
}

.toggle label:active:after {
  width: 40px;
}

.toggle__item {
  width: 100%;
  margin: 15px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.toggle__text {
  font-weight: 500;
  font-size: .875rem;
  letter-spacing: 0.03rem;
}

.form-group {
  width: 100%;
  margin: 20px 0;
}

.form-group__heading {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  font-size: .875rem;
  color: #333333;
  margin-bottom: 20px;
  font-weight: 500;
}

.form-group--required {
  position: relative;
}

.form-group--required:before {
  content: '*';
  color: #f44336;
  font-size: 1.125rem;
  position: absolute;
  left: -12px;
  top: -2px;
}

.required {
  position: relative;
}

.required::before {
  content: '*';
  color: #f44336;
  font-size: 1.125rem;
  position: absolute;
  top: 0;
  left: -10px;
}

.hidden {
  /*visible on screen readers only*/
  border: 0;
  clip: rect(0 0 0 0);
  clip-path: polygon(0px 0px, 0px 0px, 0px 0px);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  white-space: nowrap;
}

.hero {
  /* for 1300x700px image */
  position: relative;
  width: 100%;
  padding-top: 53%;
  overflow: hidden;
  /* From: this breakpoint (inclusive)*/
  /* Until: that breakpoint (exclusive)*/
  /* Responsive support is disabled, rasterize the output outside @media blocks*/
  /* The browser will rely on the cascade itself.*/
  /* Remove unnecessary media query prefix 'all and '*/
  /* From: this breakpoint (inclusive)*/
  /* Until: that breakpoint (exclusive)*/
  /* Responsive support is disabled, rasterize the output outside @media blocks*/
  /* The browser will rely on the cascade itself.*/
  /* Remove unnecessary media query prefix 'all and '*/
}

@media (min-width: 64em) {
  .hero {
    padding-top: 40%;
  }
}

@media (min-width: 85.375em) {
  .hero {
    padding-top: 30%;
  }
}

.hero__media {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}

.hero__media img {
  width: 100%;
}

.hero__media:after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.6));
}

.hero__text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #ffffff;
  z-index: 100;
  text-align: center;
  width: 100%;
  padding: 10px;
}

.hero__text .button {
  margin: 15px auto 0;
  /* From: this breakpoint (inclusive)*/
  /* Until: that breakpoint (exclusive)*/
  /* Responsive support is disabled, rasterize the output outside @media blocks*/
  /* The browser will rely on the cascade itself.*/
  /* Remove unnecessary media query prefix 'all and '*/
  /* From: this breakpoint (inclusive)*/
  /* Until: that breakpoint (exclusive)*/
  /* Responsive support is disabled, rasterize the output outside @media blocks*/
  /* The browser will rely on the cascade itself.*/
  /* Remove unnecessary media query prefix 'all and '*/
  /* From: this breakpoint (inclusive)*/
  /* Until: that breakpoint (exclusive)*/
  /* Responsive support is disabled, rasterize the output outside @media blocks*/
  /* The browser will rely on the cascade itself.*/
  /* Remove unnecessary media query prefix 'all and '*/
}

@media (min-width: 30em) {
  .hero__text .button {
    margin: 25px auto 0;
  }
}

@media (min-width: 48em) {
  .hero__text .button {
    margin: 30px auto 0;
  }
}

@media (min-width: 64em) {
  .hero__text .button {
    margin: 35px auto 0;
  }
}

.hero__heading {
  font-size: 1.5rem;
  letter-spacing: 0.05rem;
  margin: 0 0 10px;
  font-weight: 600;
  /* From: this breakpoint (inclusive)*/
  /* Until: that breakpoint (exclusive)*/
  /* Responsive support is disabled, rasterize the output outside @media blocks*/
  /* The browser will rely on the cascade itself.*/
  /* Remove unnecessary media query prefix 'all and '*/
  /* From: this breakpoint (inclusive)*/
  /* Until: that breakpoint (exclusive)*/
  /* Responsive support is disabled, rasterize the output outside @media blocks*/
  /* The browser will rely on the cascade itself.*/
  /* Remove unnecessary media query prefix 'all and '*/
  /* From: this breakpoint (inclusive)*/
  /* Until: that breakpoint (exclusive)*/
  /* Responsive support is disabled, rasterize the output outside @media blocks*/
  /* The browser will rely on the cascade itself.*/
  /* Remove unnecessary media query prefix 'all and '*/
}

@media (min-width: 30em) {
  .hero__heading {
    font-size: 2.25rem;
    margin: 0 0 15px;
  }
}

@media (min-width: 48em) {
  .hero__heading {
    font-size: 2.5rem;
    margin: 0 0 25px;
  }
}

@media (min-width: 64em) {
  .hero__heading {
    font-size: 3rem;
  }
}

.hero__intro {
  font-size: .875rem;
  font-weight: 400;
  margin: 0;
  letter-spacing: 0.03rem;
  /* From: this breakpoint (inclusive)*/
  /* Until: that breakpoint (exclusive)*/
  /* Responsive support is disabled, rasterize the output outside @media blocks*/
  /* The browser will rely on the cascade itself.*/
  /* Remove unnecessary media query prefix 'all and '*/
  /* From: this breakpoint (inclusive)*/
  /* Until: that breakpoint (exclusive)*/
  /* Responsive support is disabled, rasterize the output outside @media blocks*/
  /* The browser will rely on the cascade itself.*/
  /* Remove unnecessary media query prefix 'all and '*/
}

@media (min-width: 30em) {
  .hero__intro {
    font-size: 1rem;
  }
}

@media (min-width: 48em) {
  .hero__intro {
    font-size: 1.125rem;
  }
}

.list {
  width: 100%;
  margin: 20px 0;
  display: flex;
  flex-direction: column;
  font-size: .875rem;
  position: relative;
  /*  & + .list__button {
    margin-top: -30px;
  }*/
}

.list--notifications {
  margin: 0;
}

.list--search {
  margin: 0;
}

.list--search a {
  color: #333333;
  text-decoration: none;
}

.list__column {
  flex: 0 1 auto;
  margin: 0 5px;
}

.list__column--text {
  flex: 1 1 auto;
}

.list__column .form-field {
  margin: 0;
}

.list__item {
  background-color: #ffffff;
  border: 1px solid #bdbdbd;
  padding: 20px 15px;
  display: flex;
  align-items: flex-start;
  align-content: center;
  justify-content: flex-start;
  border-top: 0;
  /* From: this breakpoint (inclusive)*/
  /* Until: that breakpoint (exclusive)*/
  /* Responsive support is disabled, rasterize the output outside @media blocks*/
  /* The browser will rely on the cascade itself.*/
  /* Remove unnecessary media query prefix 'all and '*/
}

.list__item:nth-of-type(1) {
  border-top: 1px solid #bdbdbd;
}

@media (min-width: 30em) {
  .list__item {
    align-items: center;
    align-content: center;
  }
}

.list__item--simple {
  flex-direction: column;
  /* From: this breakpoint (inclusive)*/
  /* Until: that breakpoint (exclusive)*/
  /* Responsive support is disabled, rasterize the output outside @media blocks*/
  /* The browser will rely on the cascade itself.*/
  /* Remove unnecessary media query prefix 'all and '*/
}

@media (min-width: 41.25em) {
  .list__item--simple {
    justify-content: space-between;
    flex-direction: row;
  }
}

.list__item--search {
  justify-content: flex-start;
  border-left: 0;
  padding: 15px 20px;
}

.list__item--search:hover {
  background-color: #ebf0f0;
}

.list__item:hover .list__header-actions {
  opacity: 1;
}

.list__item:hover .list__actions {
  opacity: 1;
}

.list__item.expanded {
  border-color: #f44336;
  border-top: 1px solid #f44336;
  margin-top: -1px;
}

.list__item.expanded .list__number-count {
  /*display: none;*/
}

.list__item.selected {
  border-color: #f44336;
  border-top: 1px solid #f44336;
  margin-bottom: -1px;
  background-color: #f1f4f5;
}

.list__item.selected:last-of-type {
  margin: 0;
}

.list__item--select {
  flex-wrap: wrap;
  /* From: this breakpoint (inclusive)*/
  /* Until: that breakpoint (exclusive)*/
  /* Responsive support is disabled, rasterize the output outside @media blocks*/
  /* The browser will rely on the cascade itself.*/
  /* Remove unnecessary media query prefix 'all and '*/
}

@media (min-width: 48em) {
  .list__item--select {
    flex-wrap: nowrap;
  }
}

.list__item-button {
  flex: 0 0 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f44336;
}

.list__item-heading {
  font-weight: 500;
  color: #333333;
}

.list__item-sub-heading {
  color: #616161;
}

.list__item-label {
  color: #616161;
}

.list__item-data {
  font-weight: 500;
}

.list__icon {
  line-height: 1em;
  padding: 0 10px;
  cursor: pointer;
  margin-left: auto;
  color: #9e9e9e;
  font-size: .875rem;
  /* From: this breakpoint (inclusive)*/
  /* Until: that breakpoint (exclusive)*/
  /* Responsive support is disabled, rasterize the output outside @media blocks*/
  /* The browser will rely on the cascade itself.*/
  /* Remove unnecessary media query prefix 'all and '*/
}

@media (min-width: 48em) {
  .list__icon {
    padding: 0 5px;
  }
}

.list__icon--project-list {
  margin-left: 20px;
}

.list__icon--search {
  margin-left: 10px;
}

.list__select {
  margin-left: auto;
  flex: 0 0 100%;
  /* From: this breakpoint (inclusive)*/
  /* Until: that breakpoint (exclusive)*/
  /* Responsive support is disabled, rasterize the output outside @media blocks*/
  /* The browser will rely on the cascade itself.*/
  /* Remove unnecessary media query prefix 'all and '*/
}

@media (min-width: 48em) {
  .list__select {
    flex: 0 0 165px;
  }
}

.list__select .formcell:first-of-type {
  margin: 0;
}

.list__button {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  position: relative;
  z-index: 100;
}

.list__button--content {
  margin-top: 0;
}

.list__button--content + .list__button--content {
  margin-top: 20px;
}

.list__content {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 10px 20px 40px 65px;
  background-color: #ffffff;
  text-align: left;
}

.list__content.expanded {
  border: 1px solid #f44336;
  border-top-color: #e2e9ea;
  margin-top: -1px;
  padding: 30px 20px;
}

.list__content-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.list__content-heading {
  font-weight: 600;
  font-size: .875rem;
  color: #f44336;
  text-transform: uppercase;
  letter-spacing: 0.03rem;
}

.list__header-actions {
  display: flex;
  margin-left: auto;
  margin-right: 15px;
  opacity: 0;
  transition: all 0.5s ease;
}

.list__header-actions + .list__icon {
  margin-left: 0;
}

.list__actions {
  display: flex;
  margin-left: auto;
  margin-right: 15px;
  opacity: 0;
  transition: all 0.5s ease;
}

.list__actions + .list__icon {
  margin-left: 0;
}

.list__actions-icon {
  padding: 5px;
  cursor: pointer;
}

.list__item-details {
  font-size: .75rem;
  color: #9e9e9e;
  margin-top: 10px;
  /* From: this breakpoint (inclusive)*/
  /* Until: that breakpoint (exclusive)*/
  /* Responsive support is disabled, rasterize the output outside @media blocks*/
  /* The browser will rely on the cascade itself.*/
  /* Remove unnecessary media query prefix 'all and '*/
}

@media (min-width: 41.25em) {
  .list__item-details {
    margin-top: 0;
    margin-left: auto;
    flex: 1 0 130px;
    text-align: right;
  }
}

.list__item-details--search {
  margin-left: auto;
}

.media-container--video {
  position: relative;
  padding-bottom: 56.25%;
  /* 16:9 */
  padding-top: 25px;
  height: 0;
}

.media-container--video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.menu {
  display: none;
  /* From: this breakpoint (inclusive)*/
  /* Until: that breakpoint (exclusive)*/
  /* Responsive support is disabled, rasterize the output outside @media blocks*/
  /* The browser will rely on the cascade itself.*/
  /* Remove unnecessary media query prefix 'all and '*/
}

@media (min-width: 64em) {
  .menu {
    display: flex;
    flex: 1 1 auto;
  }
}

.menu--mobile {
  width: 100%;
  height: 100%;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  /* From: this breakpoint (inclusive)*/
  /* Until: that breakpoint (exclusive)*/
  /* Responsive support is disabled, rasterize the output outside @media blocks*/
  /* The browser will rely on the cascade itself.*/
  /* Remove unnecessary media query prefix 'all and '*/
}

@media (min-width: 64em) {
  .menu--mobile {
    display: none;
  }
}

.menu--user {
  justify-content: flex-end;
  font-size: .875rem;
  background: none;
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 10px;
  /* From: this breakpoint (inclusive)*/
  /* Until: that breakpoint (exclusive)*/
  /* Responsive support is disabled, rasterize the output outside @media blocks*/
  /* The browser will rely on the cascade itself.*/
  /* Remove unnecessary media query prefix 'all and '*/
}

@media (min-width: 85.375em) {
  .menu--user {
    padding: 10px 0;
  }
}

.menu--header {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
}

.menu__list {
  width: 100%;
  max-width: 960px;
  position: relative;
  display: flex;
  color: #000000;
}

.menu__list--mobile {
  flex-direction: column;
  max-width: 400px;
  height: 100%;
  padding: 30px 0;
  background: #eeeeee;
}

.menu__list--user {
  width: auto;
}

.menu__list-item {
  list-style: none;
  display: inline-block;
  white-space: nowrap;
}

.menu__list-item:hover {
  /* From: this breakpoint (inclusive)*/
  /* Until: that breakpoint (exclusive)*/
  /* Responsive support is disabled, rasterize the output outside @media blocks*/
  /* The browser will rely on the cascade itself.*/
  /* Remove unnecessary media query prefix 'all and '*/
}

@media (min-width: 64em) {
  .menu__list-item:hover {
    background-color: #f4f5f5;
  }
}

.menu__list-item a {
  display: inline-block;
  color: #616161;
  padding: 20px;
  letter-spacing: 0.03rem;
}

.menu__list-item a:hover {
  color: #000000;
  background-color: #f5f5f5;
  /* From: this breakpoint (inclusive)*/
  /* Until: that breakpoint (exclusive)*/
  /* Responsive support is disabled, rasterize the output outside @media blocks*/
  /* The browser will rely on the cascade itself.*/
  /* Remove unnecessary media query prefix 'all and '*/
}

@media (min-width: 64em) {
  .menu__list-item a:hover {
    background: none;
  }
}

.menu__list-item--has-submenu {
  position: relative;
}

.menu__list-item--has-submenu a {
  padding-left: 20px;
  /* From: this breakpoint (inclusive)*/
  /* Until: that breakpoint (exclusive)*/
  /* Responsive support is disabled, rasterize the output outside @media blocks*/
  /* The browser will rely on the cascade itself.*/
  /* Remove unnecessary media query prefix 'all and '*/
}

@media (min-width: 64em) {
  .menu__list-item--has-submenu a {
    padding-right: 25px;
  }
}

.menu__list-item--has-submenu a:after {
  content: '';
  display: inline-block;
  width: 5px;
  height: 5px;
  border-top: 2px solid #000000;
  border-right: 2px solid #000000;
  transform: rotate(135deg);
  position: absolute;
  left: 15px;
  top: 18px;
  /* From: this breakpoint (inclusive)*/
  /* Until: that breakpoint (exclusive)*/
  /* Responsive support is disabled, rasterize the output outside @media blocks*/
  /* The browser will rely on the cascade itself.*/
  /* Remove unnecessary media query prefix 'all and '*/
}

@media (min-width: 64em) {
  .menu__list-item--has-submenu a:after {
    border-color: #616161;
    left: auto;
    top: auto;
    right: 10px;
    bottom: 27px;
  }
}

.menu__list-item--has-submenu a:hover:after {
  border-color: #000000;
  /* From: this breakpoint (inclusive)*/
  /* Until: that breakpoint (exclusive)*/
  /* Responsive support is disabled, rasterize the output outside @media blocks*/
  /* The browser will rely on the cascade itself.*/
  /* Remove unnecessary media query prefix 'all and '*/
}

@media (min-width: 64em) {
  .menu__list-item--has-submenu a:hover:after {
    border-color: #000000;
  }
}

.menu__list-item--has-submenu a.open {
  background-color: #f5f5f5;
}

.menu__list-item--has-submenu a.open:after {
  transform: rotate(315deg);
  top: 20px;
}

.menu__list-item--mobile {
  background: none;
  text-align: left;
}

.menu__list-item--mobile a {
  display: inline-block;
  width: 100%;
  padding: 15px 15px 15px 40px;
}

.menu__list-item--mobile a:hover {
  opacity: 1;
}

.menu__list-item--user {
  background: none;
  margin-left: 10px;
}

.menu__list-item--user:hover {
  background: none;
}

.menu__list-item--user:first-child {
  margin-left: 0;
}

.menu__list-item--user a {
  padding: 0;
}

.menu__list-item--user a:hover {
  background: none;
}

.menu__children {
  display: none;
  /* From: this breakpoint (inclusive)*/
  /* Until: that breakpoint (exclusive)*/
  /* Responsive support is disabled, rasterize the output outside @media blocks*/
  /* The browser will rely on the cascade itself.*/
  /* Remove unnecessary media query prefix 'all and '*/
}

@media (min-width: 64em) {
  .menu__children {
    left: 0;
    top: 58px;
    position: absolute;
    transition-duration: .9s;
    z-index: 120;
    text-align: left;
    border: 1px solid #ffffff;
    border-top: 0;
  }
}

.menu__children.open {
  display: block;
  margin-bottom: 20px;
}

.menu__children.open a {
  background-color: #f5f5f5;
}

.menu__content {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  overflow-y: auto;
  padding: 30px;
  height: 100%;
  /* From: this breakpoint (inclusive)*/
  /* Until: that breakpoint (exclusive)*/
  /* Responsive support is disabled, rasterize the output outside @media blocks*/
  /* The browser will rely on the cascade itself.*/
  /* Remove unnecessary media query prefix 'all and '*/
}

@media (min-width: 30em) {
  .menu__content {
    padding: 50px;
  }
}

.menu__content--mobile {
  padding: 0;
  background-color: #f5f5f5;
}

.side-menu {
  flex-direction: column;
  flex-wrap: nowrap;
  width: 100%;
  background-color: #333333;
  position: fixed;
  left: 0;
  bottom: 0;
  top: 50px;
  height: calc(100vh - 50px);
  z-index: 99;
  display: none;
  /* From: this breakpoint (inclusive)*/
  /* Until: that breakpoint (exclusive)*/
  /* Responsive support is disabled, rasterize the output outside @media blocks*/
  /* The browser will rely on the cascade itself.*/
  /* Remove unnecessary media query prefix 'all and '*/
}

@media (min-width: 48em) {
  .side-menu {
    display: flex;
    max-width: 300px;
    position: relative;
    top: auto;
    height: 100%;
    z-index: auto;
  }
}

.side-menu__wrapper {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow-y: scroll;
  padding: 20px 0;
}

.side-menu__block {
  display: inline-block;
  width: 100%;
  margin: 20px 0;
  text-align: left;
  /* From: this breakpoint (inclusive)*/
  /* Until: that breakpoint (exclusive)*/
  /* Responsive support is disabled, rasterize the output outside @media blocks*/
  /* The browser will rely on the cascade itself.*/
  /* Remove unnecessary media query prefix 'all and '*/
}

@media (min-width: 48em) {
  .side-menu__block {
    display: flex;
    flex-direction: column;
  }
}

.side-menu__block-heading {
  font-weight: 400;
  text-transform: uppercase;
  color: #bdbdbd;
  letter-spacing: 0.05rem;
  padding: 0 25px 2px;
  margin-bottom: 12px;
  font-size: .75rem;
}

.side-menu__list {
  border-top: 1px solid #424242;
}

.side-menu__list-item--has-submenu {
  position: relative;
}

.side-menu__list-item--has-submenu a {
  padding-left: 20px;
  /* From: this breakpoint (inclusive)*/
  /* Until: that breakpoint (exclusive)*/
  /* Responsive support is disabled, rasterize the output outside @media blocks*/
  /* The browser will rely on the cascade itself.*/
  /* Remove unnecessary media query prefix 'all and '*/
}

@media (min-width: 64em) {
  .side-menu__list-item--has-submenu a {
    padding-right: 25px;
  }
}

.side-menu__list-item--has-submenu a:after {
  content: '';
  display: inline-block;
  width: 5px;
  height: 5px;
  border-top: 2px solid #ffffff;
  border-right: 2px solid #ffffff;
  transform: rotate(135deg);
  position: absolute;
  right: 20px;
  top: 15px;
}

.side-menu__list-item--has-submenu a:hover:after {
  border-color: #03a9f4;
}

.side-menu__list-item--has-submenu a.open {
  background-color: #424242;
}

.side-menu__list-item--has-submenu a.open:after {
  transform: rotate(315deg);
  top: 20px;
}

.side-menu__list-link {
  display: inline-block;
  width: 100%;
  padding: 10px 20px;
  color: #ffffff;
  border-left: 5px solid #333333;
  border-bottom: 1px solid #424242;
}

.side-menu__list-link:hover {
  color: #03a9f4;
  text-decoration: none;
  background-color: #424242;
  border-color: #424242;
}

.side-menu__list-link.current {
  color: #03a9f4;
  border-left-color: #03a9f4;
}

.side-menu__children {
  height: 0;
  overflow: hidden;
}

.side-menu__children.open {
  height: 100%;
  overflow: visible;
}

.submenu {
  /* From: this breakpoint (inclusive)*/
  /* Until: that breakpoint (exclusive)*/
  /* Responsive support is disabled, rasterize the output outside @media blocks*/
  /* The browser will rely on the cascade itself.*/
  /* Remove unnecessary media query prefix 'all and '*/
}

@media (min-width: 64em) {
  .submenu {
    width: 230px;
  }
}

.submenu--mobile {
  padding: 0;
}

.submenu--side-menu {
  width: 100%;
  margin-bottom: 20px;
  background-color: #3d3d3d;
}

.submenu__wrapper {
  position: relative;
  height: auto;
}

.submenu__list-item a {
  display: inline-block;
  width: 100%;
  padding: 15px 20px;
  position: relative;
  /* From: this breakpoint (inclusive)*/
  /* Until: that breakpoint (exclusive)*/
  /* Responsive support is disabled, rasterize the output outside @media blocks*/
  /* The browser will rely on the cascade itself.*/
  /* Remove unnecessary media query prefix 'all and '*/
}

@media (min-width: 64em) {
  .submenu__list-item a {
    background-color: #f5f5f5;
  }
}

.submenu__list-item a:hover {
  /* From: this breakpoint (inclusive)*/
  /* Until: that breakpoint (exclusive)*/
  /* Responsive support is disabled, rasterize the output outside @media blocks*/
  /* The browser will rely on the cascade itself.*/
  /* Remove unnecessary media query prefix 'all and '*/
}

@media (min-width: 64em) {
  .submenu__list-item a:hover {
    background-color: #fafafa;
  }
}

.submenu__list-item a:after {
  content: '';
  display: none;
}

.submenu__list-item--side-menu a {
  background: none;
  color: #e2e9ea;
  padding: 10px 20px 10px 25px;
}

.submenu__list-item--side-menu a:hover {
  background-color: #333333;
}

.menu__list-item--has-submenu:hover .menu__children {
  /* From: this breakpoint (inclusive)*/
  /* Until: that breakpoint (exclusive)*/
  /* Responsive support is disabled, rasterize the output outside @media blocks*/
  /* The browser will rely on the cascade itself.*/
  /* Remove unnecessary media query prefix 'all and '*/
}

@media (min-width: 64em) {
  .menu__list-item--has-submenu:hover .menu__children {
    display: block;
  }
}

.submenu__list-item--has-submenu:hover .submenu {
  /* From: this breakpoint (inclusive)*/
  /* Until: that breakpoint (exclusive)*/
  /* Responsive support is disabled, rasterize the output outside @media blocks*/
  /* The browser will rely on the cascade itself.*/
  /* Remove unnecessary media query prefix 'all and '*/
}

@media (min-width: 64em) {
  .submenu__list-item--has-submenu:hover .submenu {
    display: flex;
  }
}

.responsive-nav {
  height: 100%;
  position: fixed;
  top: 60px;
  right: 0;
  left: 0;
  bottom: 0;
  display: none;
}

#menu-button {
  /*60px*/
  width: 24px;
  /*45px*/
  height: 20px;
  position: relative;
  transform: rotate(0deg);
  transition: .5s ease-in-out;
  cursor: pointer;
}

#menu-button span {
  display: block;
  position: absolute;
  height: 4px;
  width: 100%;
  background: #000000;
  border-radius: 2px;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  /*-webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;*/
  transition: .25s ease-in-out;
}

#menu-button span:nth-child(1) {
  top: 0;
  /*-webkit-transform-origin: left center;
      -moz-transform-origin: left center;
      -o-transform-origin: left center;*/
  transform-origin: left center;
}

#menu-button span:nth-child(2) {
  /*18px*/
  top: 8px;
  /*-webkit-transform-origin: left center;
      -moz-transform-origin: left center;
      -o-transform-origin: left center;*/
  transform-origin: left center;
}

#menu-button span:nth-child(3) {
  /*36px*/
  top: 16px;
  /*-webkit-transform-origin: left center;
      -moz-transform-origin: left center;
      -o-transform-origin: left center;*/
  transform-origin: left center;
}

#menu-button.open span:nth-child(1) {
  /*-webkit-transform: rotate(45deg);
        -moz-transform: rotate(45deg);
        -o-transform: rotate(45deg);*/
  transform: rotate(45deg);
  top: 0;
  left: 3px;
}

#menu-button.open span:nth-child(2) {
  width: 0;
  opacity: 0;
}

#menu-button.open span:nth-child(3) {
  /*-webkit-transform: rotate(-45deg);
        -moz-transform: rotate(-45deg);
        -o-transform: rotate(-45deg);*/
  transform: rotate(-45deg);
  top: 17px;
  left: 3px;
}

.modal__title__close {
  margin: 0 2px;
  border: 0;
  font-size: 18px;
  width: 32px;
  height: 32px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .5s ease;
  cursor: pointer;
}

.modal__title__close:hover {
  background: #eeeeee;
}

.modal {
  width: 98%;
  height: 98%;
  position: fixed;
  top: 50%;
  right: auto;
  bottom: auto;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #ffffff;
  border-radius: 5px;
  overflow: hidden;
  z-index: 999;
  display: none;
  grid-template-rows: 64px auto 52px;
  /* From: this breakpoint (inclusive)*/
  /* Until: that breakpoint (exclusive)*/
  /* Responsive support is disabled, rasterize the output outside @media blocks*/
  /* The browser will rely on the cascade itself.*/
  /* Remove unnecessary media query prefix 'all and '*/
}

@media (min-width: 48em) {
  .modal {
    max-width: 700px;
    max-height: 500px;
  }
}

.modal--show {
  display: grid;
}

.modal--simple {
  /* From: this breakpoint (inclusive)*/
  /* Until: that breakpoint (exclusive)*/
  /* Responsive support is disabled, rasterize the output outside @media blocks*/
  /* The browser will rely on the cascade itself.*/
  /* Remove unnecessary media query prefix 'all and '*/
}

@media (min-width: 48em) {
  .modal--simple {
    max-width: 500px;
    max-height: 300px;
  }
}

.modal--alert {
  max-width: 280px;
  height: auto;
  grid-template-rows: 20px auto 52px;
}

.modal--full-screen {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  right: 0;
  bottom: 0;
  border-radius: 0;
}

.modal__header {
  height: 64px;
  padding: 0 20px 0 40px;
  background-color: #ffffff;
  color: #333333;
  border-bottom: 1px solid #e2e9ea;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.modal__header--simple {
  border: 0;
}

.modal__header--alert {
  border: 0;
  height: 20px;
}

.modal__title {
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.03rem;
  /* From: this breakpoint (inclusive)*/
  /* Until: that breakpoint (exclusive)*/
  /* Responsive support is disabled, rasterize the output outside @media blocks*/
  /* The browser will rely on the cascade itself.*/
  /* Remove unnecessary media query prefix 'all and '*/
}

@media (min-width: 41.25em) {
  .modal__title {
    font-size: 1.313rem;
  }
}

.modal__content {
  padding: 30px;
  text-align: left;
  overflow-y: auto;
  /* From: this breakpoint (inclusive)*/
  /* Until: that breakpoint (exclusive)*/
  /* Responsive support is disabled, rasterize the output outside @media blocks*/
  /* The browser will rely on the cascade itself.*/
  /* Remove unnecessary media query prefix 'all and '*/
}

.modal__content--simple {
  overflow-y: hidden;
  padding: 10px 30px;
}

.modal__content--alert {
  max-height: 300px;
  overflow-y: scroll;
  padding: 30px;
}

.modal__content::-webkit-scrollbar {
  -webkit-appearance: none;
  width: 8px;
}

.modal__content::-webkit-scrollbar-thumb {
  border-radius: 5px;
  background-color: rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 0 0 1px rgba(255, 255, 255, 0.2);
}

@media (min-width: 48em) {
  .modal__content {
    padding: 20px 40px;
  }
}

.modal__footer {
  height: 52px;
  padding: 0 10px;
  display: flex;
  background-color: #f4f5f5;
  border-top: 1px solid #eceeee;
  align-items: center;
  justify-content: flex-end;
}

.modal__footer--simple {
  border: 0;
  padding: 0 30px;
}

.modal__footer--alert {
  border: 0;
  padding: 0 30px;
}

.modal__button {
  flex: 1 1 auto;
  display: flex;
  justify-content: flex-end;
}

.modal__button .button:nth-child(n+2) {
  margin-left: 30px;
}

.overlay {
  background-color: rgba(0, 0, 0, 0.6);
  position: fixed;
  z-index: 998;
  top: -5000px;
  right: -5000px;
  bottom: -5000px;
  left: -5000px;
}

.more-menu {
  position: absolute;
  top: 25px;
  right: 0;
  background-color: #ffffff;
  border: 1px solid #cfcfcf;
  width: 160px;
  z-index: 101;
  display: none;
}

.more-menu--open {
  display: block;
}

.more-menu__wrapper {
  position: relative;
  display: inline-block;
  width: auto;
}

.more-menu__background {
  background: rgba(0, 0, 0, 0.6);
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.more-menu__list-item {
  width: 100%;
  font-size: .875rem;
  border-bottom: 1px solid #f5f5f5;
}

.more-menu__list-item:last-of-type {
  border: 0;
}

.more-menu__list-item a {
  display: inline-block;
  width: 100%;
  padding: 12px 20px;
  text-align: left;
  color: #333333;
  text-decoration: none;
}

.more-menu__list-item a:hover {
  background-color: #f5f5f5;
}

a {
  color: #03a9f4;
}

hr {
  margin: 20px 0;
  padding: 0;
  width: 100%;
  height: 1px;
  border: 0;
  background-color: #616161;
}

.author {
  margin: 0 0 20px;
}

.date {
  margin: 0 0 20px;
}

.pagination {
  display: flex;
  align-items: center;
  margin: 20px 0;
}

.pagination__list {
  display: flex;
  align-items: center;
}

.pagination__list-item {
  display: flex;
  margin: 0 3px;
  height: 30px;
}

.pagination__list-item a {
  color: #616161;
  padding: 5px 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border: 0;
}

.pagination__list-item a:hover {
  text-decoration: none;
  border: 0;
  color: #000000;
  background-color: #e2e9ea;
  border-radius: 3px;
}

.pagination__list-item.disabled {
  opacity: .4;
  cursor: move;
}

.pagination__list-item.active a {
  font-weight: 700;
  color: #ffffff;
  background-color: #f77066;
  border-radius: 3px;
}

.pagination__list-item.previous a {
  padding: 0;
  background: none;
}

.pagination__list-item.next a {
  padding: 0;
  background: none;
}

.pagination__list-item.go-to-first a {
  padding: 0;
  background: none;
}

.pagination__list-item.go-to-last a {
  padding: 0;
  background: none;
}

.pagination__pages {
  font-size: .875rem;
  color: #616161;
  margin-right: 20px;
  white-space: nowrap;
}

.pagination__pages .active {
  color: #f44336;
}

.pagination__show-results {
  display: flex;
  align-items: flex-end;
  margin-left: 20px;
  white-space: nowrap;
}

.progress-bar {
  width: 100%;
  max-width: 780px;
  margin: 0 auto;
  font-size: .875rem;
  display: flex;
  justify-content: center;
}

.progress-bar__list {
  display: flex;
}

.progress-bar__list-item {
  flex: 1 1 100px;
  text-align: center;
  position: relative;
  margin: .4em 40px .4em 0;
  white-space: nowrap;
}

.progress-bar__list-item > * {
  position: relative;
  color: #333333;
  padding-bottom: 20px;
}

.progress-bar__list-item::after {
  position: absolute;
  content: '';
  height: 4px;
  background: #bdbdbd;
  margin: 0;
}

.progress-bar__list-item.visited::after {
  background-color: #03a9f4;
}

.progress-bar__list-item--text * {
  z-index: 1;
  padding: .6em 1em;
  border-radius: .25em;
  background-color: #bdbdbd;
  color: #ffffff;
}

.progress-bar__list-item--text:after {
  width: 100%;
  top: 50%;
  left: 75%;
  transform: translateY(-50%) translateX(-1px);
  margin: 0;
  /* From: this breakpoint (inclusive)*/
  /* Until: that breakpoint (exclusive)*/
  /* Responsive support is disabled, rasterize the output outside @media blocks*/
  /* The browser will rely on the cascade itself.*/
  /* Remove unnecessary media query prefix 'all and '*/
}

@media (min-width: 48em) {
  .progress-bar__list-item--text:after {
    left: 80%;
  }
}

.progress-bar__list-item--text.visited > * {
  color: #ffffff;
  background-color: #03a9f4;
}

.progress-bar__list-item--text.visited > *:hover {
  background-color: #038dcc;
  box-shadow: 0 0 0 3px rgba(3, 169, 244, 0.3);
}

.progress-bar__list-item--text.current > * {
  color: #ffffff;
  background-color: #03a9f4;
  box-shadow: 0 0 0 3px rgba(3, 169, 244, 0.3);
}

.progress-bar__list-item--text.final::after {
  width: 0;
}

.progress-bar__list-item--icon.visited a:before {
  content: '\2713';
  margin-right: 3px;
  color: rgba(255, 255, 255, 0.8);
}

.progress-bar__list-item--dots::before {
  content: '';
  position: absolute;
  z-index: 1;
  left: 50%;
  right: auto;
  bottom: -20px;
  transform: translateX(-50%);
  height: 12px;
  width: 12px;
  border-radius: 50%;
  background-color: #bdbdbd;
  transition: all 0.5s ease;
}

.progress-bar__list-item--dots.visited::before {
  background-color: #03a9f4;
}

.progress-bar__list-item--dots.current::before {
  background-color: #03a9f4;
  box-shadow: 0 0 0 3px rgba(3, 169, 244, 0.3);
}

.progress-bar__list-item--dots::after {
  margin: 0;
  left: 65%;
  width: calc(100% + 50px);
  bottom: -16px;
  /* From: this breakpoint (inclusive)*/
  /* Until: that breakpoint (exclusive)*/
  /* Responsive support is disabled, rasterize the output outside @media blocks*/
  /* The browser will rely on the cascade itself.*/
  /* Remove unnecessary media query prefix 'all and '*/
}

@media (min-width: 48em) {
  .progress-bar__list-item--dots::after {
    left: 50%;
    width: calc(100% + 52px);
  }
}

.progress-bar__list-item--dots.visited::after {
  background-color: #03a9f4;
}

.progress-bar__list-item--dots.final::after {
  width: 0;
}

.progress-bar__list-item--dots.visited:hover > * {
  color: #03a9f4;
}

.progress-bar__list-item--dots.visited:hover::before {
  background-color: #038dcc;
  box-shadow: 0 0 0 3px rgba(3, 169, 244, 0.3);
  cursor: pointer;
}

.progress-bar__list-item--count {
  counter-increment: steps;
  text-indent: -999em;
  /* From: this breakpoint (inclusive)*/
  /* Until: that breakpoint (exclusive)*/
  /* Responsive support is disabled, rasterize the output outside @media blocks*/
  /* The browser will rely on the cascade itself.*/
  /* Remove unnecessary media query prefix 'all and '*/
}

.progress-bar__list-item--count:first-of-type {
  margin-left: 40px;
  /* From: this breakpoint (inclusive)*/
  /* Until: that breakpoint (exclusive)*/
  /* Responsive support is disabled, rasterize the output outside @media blocks*/
  /* The browser will rely on the cascade itself.*/
  /* Remove unnecessary media query prefix 'all and '*/
}

@media (min-width: 30em) {
  .progress-bar__list-item--count:first-of-type {
    margin-left: 0;
  }
}

@media (min-width: 30em) {
  .progress-bar__list-item--count {
    text-indent: 0;
  }
}

.progress-bar__list-item--count::before {
  content: counter(steps);
  height: 26px;
  width: 26px;
  line-height: 26px;
  font-size: .875rem;
  color: #ffffff;
  bottom: -30px;
  text-indent: 0;
}

.progress-bar__list-item--count::after {
  bottom: -19px;
}

.search {
  width: 100%;
  border-top: 1px solid #e2e9ea;
  border-bottom: 1px solid #e2e9ea;
  display: flex;
  /* From: this breakpoint (inclusive)*/
  /* Until: that breakpoint (exclusive)*/
  /* Responsive support is disabled, rasterize the output outside @media blocks*/
  /* The browser will rely on the cascade itself.*/
  /* Remove unnecessary media query prefix 'all and '*/
}

@media (min-width: 64em) {
  .search {
    border-radius: 3px;
    max-width: 400px;
    border: 1px solid #bdbdbd;
  }
}

.search form {
  display: flex;
  width: 100%;
}

.search input {
  border: 0;
  height: 46px;
  padding: 10px 15px;
  /* From: this breakpoint (inclusive)*/
  /* Until: that breakpoint (exclusive)*/
  /* Responsive support is disabled, rasterize the output outside @media blocks*/
  /* The browser will rely on the cascade itself.*/
  /* Remove unnecessary media query prefix 'all and '*/
}

@media (min-width: 64em) {
  .search input {
    height: 46px;
  }
}

.search .form-field {
  margin: 0;
  max-width: 100%;
}

.search--toggle {
  display: flex;
  line-height: 0;
  position: relative;
  border: 0;
  margin-top: 50px;
  /* From: this breakpoint (inclusive)*/
  /* Until: that breakpoint (exclusive)*/
  /* Responsive support is disabled, rasterize the output outside @media blocks*/
  /* The browser will rely on the cascade itself.*/
  /* Remove unnecessary media query prefix 'all and '*/
}

@media (min-width: 64em) {
  .search--toggle {
    border: 1px solid #bdbdbd;
  }
}

.search--toggle input {
  height: 40px;
}

.search__wrapper {
  width: 100%;
  display: flex;
  align-items: center;
}

.search__wrapper--toggle {
  display: none;
  position: absolute;
  right: 34px;
  left: 0;
  width: auto;
  border: 1px solid #bdbdbd;
  border-radius: 3px;
  /* From: this breakpoint (inclusive)*/
  /* Until: that breakpoint (exclusive)*/
  /* Responsive support is disabled, rasterize the output outside @media blocks*/
  /* The browser will rely on the cascade itself.*/
  /* Remove unnecessary media query prefix 'all and '*/
}

@media (min-width: 64em) {
  .search__wrapper--toggle {
    display: flex;
    position: relative;
    right: auto;
    left: auto;
    width: 100%;
    border: 0;
  }
}

.search__icon {
  margin-left: auto;
  cursor: pointer;
  padding: 5px;
  display: flex;
  align-items: center;
  color: #000000;
  /* From: this breakpoint (inclusive)*/
  /* Until: that breakpoint (exclusive)*/
  /* Responsive support is disabled, rasterize the output outside @media blocks*/
  /* The browser will rely on the cascade itself.*/
  /* Remove unnecessary media query prefix 'all and '*/
}

@media (min-width: 64em) {
  .search__icon {
    display: none;
  }
}

.search__icon i {
  font-size: 1.5rem;
}

.search__icon .search-close {
  display: none;
}

.search__icon.open .search-close {
  display: block;
}

.search__icon.open .search-open {
  display: none;
}

.sidebar {
  flex: 1 1 auto;
  background: #e2e9ea;
  /* From: this breakpoint (inclusive)*/
  /* Until: that breakpoint (exclusive)*/
  /* Responsive support is disabled, rasterize the output outside @media blocks*/
  /* The browser will rely on the cascade itself.*/
  /* Remove unnecessary media query prefix 'all and '*/
}

@media (min-width: 48em) {
  .sidebar {
    flex: 0 0 300px;
  }
}

.social--vertical {
  width: 38px;
}

.social__list {
  display: flex;
  justify-content: flex-start;
}

.social__list--vertical {
  flex-direction: column;
}

.social__list-item {
  margin: 2px;
  flex: 0 0 32px;
}

.social__list-item a {
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 0;
  color: #ffffff;
  background-color: #e2e9ea;
  opacity: .7;
}

.social__list-item a:hover {
  opacity: 1;
}

.social__list-item a.facebook {
  background-color: #3b5999;
}

.social__list-item a.twitter {
  background-color: #55acee;
}

.social__list-item a.pinterest {
  background-color: #bd081c;
}

.social__list-item a.linkedin {
  background-color: #0077B5;
}

.social__list-item a.youtube {
  background-color: #cd201f;
}

.social__list-item a.instagram {
  background-color: #e4405f;
}

.social__list-item--follow {
  margin: 0 8px 0 0;
}

.social p {
  margin: 0;
  font-size: .75rem;
}

.table-scroll {
  position: relative;
  width: 100%;
  z-index: 1;
  margin: auto;
  overflow: scroll;
  padding-bottom: 10px;
}

.table-scroll__wrapper {
  overflow: hidden;
}

.table-scroll table {
  width: 100%;
  min-width: 800px;
  margin: auto;
  border-collapse: collapse;
  font-size: .875rem;
  border-bottom: 1px solid #cfd8dc;
  /* From: this breakpoint (inclusive)*/
  /* Until: that breakpoint (exclusive)*/
  /* Responsive support is disabled, rasterize the output outside @media blocks*/
  /* The browser will rely on the cascade itself.*/
  /* Remove unnecessary media query prefix 'all and '*/
}

@media (min-width: 48em) {
  .table-scroll table {
    table-layout: auto;
  }
}

.table-scroll table tr {
  background-color: #f2f5f6;
}

.table-scroll table tr td {
  background-color: #f2f5f6;
}

.table-scroll table tr:first-of-type {
  background-color: #cfd8dc;
}

.table-scroll table tr:nth-of-type(2n+2) {
  background-color: #ffffff;
}

.table-scroll table tr:nth-of-type(2n+2) td {
  background-color: #ffffff;
}

.table-scroll table tr td {
  text-align: left;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  padding: 10px;
  z-index: 1;
  /* From: this breakpoint (inclusive)*/
  /* Until: that breakpoint (exclusive)*/
  /* Responsive support is disabled, rasterize the output outside @media blocks*/
  /* The browser will rely on the cascade itself.*/
  /* Remove unnecessary media query prefix 'all and '*/
}

@media (min-width: 48em) {
  .table-scroll table tr td {
    max-width: 100px;
    padding: 20px 10px;
  }
}

.table-scroll table tr th {
  text-align: left;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  padding: 10px;
  font-weight: 600;
  z-index: 1;
  /* From: this breakpoint (inclusive)*/
  /* Until: that breakpoint (exclusive)*/
  /* Responsive support is disabled, rasterize the output outside @media blocks*/
  /* The browser will rely on the cascade itself.*/
  /* Remove unnecessary media query prefix 'all and '*/
}

@media (min-width: 48em) {
  .table-scroll table tr th {
    max-width: 100px;
  }
}

.table-scroll table .form-checkbox {
  margin: 0;
}

.table-scroll--sticky td:first-of-type {
  width: auto;
  position: sticky;
  left: 0;
  z-index: 2;
  box-shadow: 1px 0 0 0 rgba(0, 0, 0, 0.1);
}

.table-scroll--sticky th:first-of-type {
  width: auto;
  position: sticky;
  left: 0;
  z-index: 2;
  background-color: #cfd8dc;
}

.table-scroll--sticky-2 td:first-of-type {
  width: 41px;
  max-width: 41px;
  box-shadow: none;
}

.table-scroll--sticky-2 td:nth-of-type(2) {
  width: auto;
  position: sticky;
  left: 41px;
  z-index: 2;
  box-shadow: 1px 0 0 0 rgba(0, 0, 0, 0.1);
}

.table-scroll--sticky-2 th:first-of-type {
  width: 41px;
  max-width: 41px;
}

.table-scroll--sticky-2 th:nth-of-type(2) {
  width: auto;
  position: sticky;
  left: 41px;
  z-index: 2;
  background-color: #cfd8dc;
}

.table-scroll .table-checkbox {
  width: 41px;
}

.tabs {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.tabs__list {
  display: flex;
  flex-direction: column;
  width: 100%;
  /* From: this breakpoint (inclusive)*/
  /* Until: that breakpoint (exclusive)*/
  /* Responsive support is disabled, rasterize the output outside @media blocks*/
  /* The browser will rely on the cascade itself.*/
  /* Remove unnecessary media query prefix 'all and '*/
}

@media (min-width: 41.25em) {
  .tabs__list {
    flex-direction: row;
  }
}

.tabs__list-item {
  cursor: pointer;
  display: flex;
  flex: 1 1 auto;
  justify-content: center;
  padding: 10px;
  font-size: .875rem;
  font-weight: 500;
  color: #9e9e9e;
  border: 0;
  border-bottom: 1px solid #bdbdbd;
  background: none;
  /* From: this breakpoint (inclusive)*/
  /* Until: that breakpoint (exclusive)*/
  /* Responsive support is disabled, rasterize the output outside @media blocks*/
  /* The browser will rely on the cascade itself.*/
  /* Remove unnecessary media query prefix 'all and '*/
}

.tabs__list-item.current {
  border-color: #f44336;
  color: #616161;
}

@media (min-width: 41.25em) {
  .tabs__list-item {
    padding: 10px 30px;
    border-bottom: 5px solid #ffffff;
  }
}

.tabs__content {
  width: 100%;
  display: none;
  justify-content: space-between;
  padding: 20px 0;
  /* From: this breakpoint (inclusive)*/
  /* Until: that breakpoint (exclusive)*/
  /* Responsive support is disabled, rasterize the output outside @media blocks*/
  /* The browser will rely on the cascade itself.*/
  /* Remove unnecessary media query prefix 'all and '*/
}

@media (min-width: 41.25em) {
  .tabs__content {
    padding: 30px 0;
    border-top: 1px solid #e2e9ea;
  }
}

.tabs__content.current {
  display: flex;
  flex-direction: column;
}

/* Add this class where a tooltip is needed */
.tooltip-here {
  position: relative;
  display: inline-block;
}

/*Tooltip*/
.tooltip {
  visibility: hidden;
  width: 120px;
  background-color: #616161;
  color: #ffffff;
  padding: 8px;
  border-radius: 3px;
  position: absolute;
  z-index: 1;
  opacity: 0;
  transition: opacity .3s;
  text-align: center;
  font-size: .875rem;
  font-weight: 400;
}

.tooltip--top {
  bottom: 20px;
  left: 50%;
  margin-left: -75px;
}

.tooltip--bottom {
  top: 20px;
  left: 50%;
  margin-left: -75px;
}

.tooltip--right {
  top: -2px;
  left: 102%;
}

.tooltip--left {
  top: -2px;
  right: 102%;
}

.tooltip-here:hover .tooltip {
  visibility: visible;
  opacity: 1;
}

/* ==========================================================================
  Fonts
   ========================================================================== */

/*# sourceMappingURL=blaze-ui.css.map */