/**
 * Colours
 */
/**
 * Typography
 */
/**
 * Spacing
 */
/**
 * Grid Variables
 */
:root {
  /* FreeRadius vars */
  --blue10: rgb(240, 251, 252);
  --blue20: rgb(0, 165, 227);
  --blue25: rgb(1, 128, 173);
  --blue30: rgb(9, 52, 72);
  --blue40: rgb(5, 26, 36);
  --neutral10: rgb(247, 247, 247);
  --neutral12: rgb(224, 224, 224);
  --neutral15: rgb(225, 231, 232);
  --neutral20: rgb(163, 163, 163);
  --neutral25: #999;
  --neutral30: rgb(102, 102, 102);
  --neutral40: rgb(51, 51, 51);
  --neutral50: rgb(34, 34, 34);
  --purple50: rgb(126, 54, 222);
  --red50: rgb(247, 0, 0);
  --green50: rgb(0, 192, 146);
  --yellow50: rgb(245, 218, 43);
  --size1: 2rem;
  --size2: 1.55rem;
  --size3-5: 1.33rem;
  --size3: 1.166rem;
  --size4: 1rem;
  --size5-5: 0.88rem;
  --size5: 0.77rem;
  --size6: 0.66rem;
  --header-font-family: 'Fira Sans', sans-serif;
  --alt-font: 'Montserrat', sans-serif;
  --sitenav-height: 30px;
  /* colors */
  --color-white: #fff;
  --color-smoke-10: #fefefe;
  --color-smoke-30: #fafafa;
  --color-smoke-50: #f5f5f5;
  --color-smoke-70: #f0f0f0;
  --color-smoke-90: #e1e1e1;
  --color-gray-10: #c1c1c1;
  --color-gray-30: #8e8e8e;
  --color-gray-50: #808080;
  --color-gray-70: #5d5d5d;
  --color-jet-20: #4a4a4a;
  --color-jet-30: #424242;
  --color-jet-50: #333;
  --color-jet-70: #222;
  --color-jet-80: #191919;
  --color-black: #000;
  --fr-grey1: #f7f7f7;
  --fr-grey2: #e1e7e8;
  /* fonts */
  --rem-base: 18; /* used to compute rem value from desired pixel value (e.g., calc(18 / var(--rem-base) * 1rem) = 18px) */
  --body-font-size: 1.0625em; /* 17px */
  --body-font-size--desktop: 1.125em; /* 18px */
  --body-font-size--print: 0.9375em; /* 15px */
  --body-line-height: 1.15;
  --body-font-color: var(--neutral40);
  --body-font-family: 'Fira Sans', sans-serif;
  --body-font-weight-bold: 500;
  --monospace-font-family: "Roboto Mono", monospace;
  --monospace-font-weight-bold: 500;
  /* base */
  --body-background: var(--color-white);
  --panel-background: var(--neutral10);
  --panel-border-color: var(--color-smoke-90);
  /* navbar */
  --navbar-background: var(--color-white);
  --navbar-font-color: var(--neutral40);
  --navbar_hover-background: none;
  --navbar-button-background: var(--blue20);
  --navbar-button-border-color: var(--blue20);
  --navbar-button-font-color: var(--color-white);
  --navbar-menu-border-color: var(--color-white);
  --navbar-menu-background: var(--color-white);
  --navbar-menu-font-color: var(--body-font-color);
  --navbar-menu_hover-background: var(--color-smoke-50);
  /* nav */
  --nav-background: var(--panel-background);
  --nav-border-color: var(--color-gray-10);
  --nav-line-height: 1.35;
  --nav-heading-font-color: var(--color-jet-30);
  --nav-muted-color: var(--color-gray-70);
  --nav-panel-divider-color: var(--color-smoke-90);
  --nav-secondary-background: var(--color-smoke-70);
  /* toolbar */
  --toolbar-background: var(--color-white);
  --toolbar-border-color: var(--neutral10);
  --toolbar-font-color: inherit;
  --toolbar-muted-color: var(--color-gray-30);
  --page-version-menu-background: var(--color-smoke-70);
  --page-version-missing-font-color: var(--color-gray-30);
  /* admonitions */
  --caution-color: var(--purple50);
  --caution-on-color: var(--color-white);
  --important-color: var(--red50);
  --important-on-color: var(--color-white);
  --note-color: var(--blue20);
  --note-on-color: var(--color-white);
  --tip-color: var(--green50);
  --tip-on-color: var(--color-white);
  --warning-color: var(--yellow50);
  --warning-on-color: var(--color-white);
  /* doc */
  --doc-font-color: var(--color-jet-50);
  --doc-font-size: inherit;
  --doc-font-size--desktop: calc(17 / var(--rem-base) * 1rem);
  --doc-line-height: 1.6;
  --doc-margin: 0 auto;
  --doc-margin--desktop: 0 2rem;
  --heading-font-color: var(--color-jet-80);
  --heading-font-weight: 500;
  --alt-heading-font-weight: var(--body-font-weight-bold);
  --section-divider-color: var(--panel-border-color);
  --link-font-color: var(--blue20);
  --link_hover-font-color: var(--blue25);
  --link_unresolved-font-color: var(--important-color);
  --abstract-background: var(--color-smoke-70);
  --abstract-font-color: var(--color-jet-20);
  --abstract-border-color: var(--panel-border-color);
  --admonition-background: var(--color-white);
  --admonition-label-font-weight: var(--body-font-weight-bold);
  --caption-font-color: var(--color-gray-70);
  --caption-font-weight: normal;
  --code-background: var(--fr-grey2);
  --code-font-color: var(--body-font-color);
  --example-background: var(--color-white);
  --example-border-color: var(--neutral25);
  --kbd-background: var(--panel-background);
  --kbd-border-color: var(--color-gray-10);
  --pre-background: var(--panel-background);
  --pre-border-color: var(--panel-border-color);
  --pre-annotation-font-color: var(--color-gray-10);
  --quote-background: var(--panel-background);
  --quote-border-color: var(--color-gray-70);
  --quote-font-color: var(--color-gray-70);
  --quote-attribution-font-color: var(--color-gray-30);
  --sidebar-background: var(--blue10);
  --table-border-color: var(--neutral15);
  /* footer */
  --footer-line-height: var(--doc-line-height);
  --footer-background: var(--blue40);
  --footer-font-color: var(--color-white);
  --footer-link-font-color: var(--neutral20);
  /* dimensions */
  --navbar-height: calc(108 / var(--rem-base) * 1rem);
  --toolbar-height: calc(45 / var(--rem-base) * 1rem);
  --drawer-height: var(--toolbar-height);
  --body-top: calc(var(--navbar-height) + var(--sitenav-height));
  --body-min-height: calc(100vh - var(--body-top));
  --nav-height: calc(var(--body-min-height) - var(--toolbar-height));
  --nav-height--desktop: var(--body-min-height);
  --nav-panel-height: calc(var(--nav-height) - var(--drawer-height));
  --nav-panel-height--desktop: calc(var(--nav-height--desktop) - var(--drawer-height));
  --nav-width: calc(270 / var(--rem-base) * 1rem);
  --doc-max-width: calc(720 / var(--rem-base) * 1rem);
  --doc-max-width--desktop: calc(990 / var(--rem-base) * 1rem);
  /* stacking */
  --z-index-nav: 1;
  --z-index-toolbar: 2;
  --z-index-page-version-menu: 3;
  --z-index-navbar: 900;
}

html {
  box-sizing: border-box;
}

*,
*:before,
*:after {
  box-sizing: inherit;
}

.row {
  max-width: rem-calc(1100);
  margin-left: auto;
  margin-right: auto;
}
.row::before, .row::after {
  content: " ";
  display: table;
}
.row::after {
  clear: both;
}
.row.collapse > .column, .row.collapse > .columns {
  padding-left: 0;
  padding-right: 0;
}
.row .row {
  margin-left: -0.625rem;
  margin-right: -0.625rem;
}
@media screen and (min-width: 40em) {
  .row .row {
    margin-left: -0.9375rem;
    margin-right: -0.9375rem;
  }
}
.row .row.collapse {
  margin-left: 0;
  margin-right: 0;
}
.row.expanded {
  max-width: none;
}
.row.expanded .row {
  margin-left: auto;
  margin-right: auto;
}

.column, .columns {
  padding-left: 0.625rem;
  padding-right: 0.625rem;
}
@media screen and (min-width: 40em) {
  .column, .columns {
    padding-left: 0.9375rem;
    padding-right: 0.9375rem;
  }
}
.column, .columns {
  width: 100%;
  float: left;
}
.column:last-child:not(:first-child), .columns:last-child:not(:first-child) {
  float: right;
}
.column.end:last-child:last-child, .end.columns:last-child:last-child {
  float: left;
}

.column.row.row, .row.row.columns {
  float: none;
}
.row .column.row.row, .row .row.row.columns {
  padding-left: 0;
  padding-right: 0;
  margin-left: 0;
  margin-right: 0;
}

.small-1 {
  width: 8.3333333333%;
}

.small-push-1 {
  position: relative;
  left: 8.3333333333%;
}

.small-pull-1 {
  position: relative;
  left: -8.3333333333%;
}

.small-offset-0 {
  margin-left: 0%;
}

.small-2 {
  width: 16.6666666667%;
}

.small-push-2 {
  position: relative;
  left: 16.6666666667%;
}

.small-pull-2 {
  position: relative;
  left: -16.6666666667%;
}

.small-offset-1 {
  margin-left: 8.3333333333%;
}

.small-3 {
  width: 25%;
}

.small-push-3 {
  position: relative;
  left: 25%;
}

.small-pull-3 {
  position: relative;
  left: -25%;
}

.small-offset-2 {
  margin-left: 16.6666666667%;
}

.small-4 {
  width: 33.3333333333%;
}

.small-push-4 {
  position: relative;
  left: 33.3333333333%;
}

.small-pull-4 {
  position: relative;
  left: -33.3333333333%;
}

.small-offset-3 {
  margin-left: 25%;
}

.small-5 {
  width: 41.6666666667%;
}

.small-push-5 {
  position: relative;
  left: 41.6666666667%;
}

.small-pull-5 {
  position: relative;
  left: -41.6666666667%;
}

.small-offset-4 {
  margin-left: 33.3333333333%;
}

.small-6 {
  width: 50%;
}

.small-push-6 {
  position: relative;
  left: 50%;
}

.small-pull-6 {
  position: relative;
  left: -50%;
}

.small-offset-5 {
  margin-left: 41.6666666667%;
}

.small-7 {
  width: 58.3333333333%;
}

.small-push-7 {
  position: relative;
  left: 58.3333333333%;
}

.small-pull-7 {
  position: relative;
  left: -58.3333333333%;
}

.small-offset-6 {
  margin-left: 50%;
}

.small-8 {
  width: 66.6666666667%;
}

.small-push-8 {
  position: relative;
  left: 66.6666666667%;
}

.small-pull-8 {
  position: relative;
  left: -66.6666666667%;
}

.small-offset-7 {
  margin-left: 58.3333333333%;
}

.small-9 {
  width: 75%;
}

.small-push-9 {
  position: relative;
  left: 75%;
}

.small-pull-9 {
  position: relative;
  left: -75%;
}

.small-offset-8 {
  margin-left: 66.6666666667%;
}

.small-10 {
  width: 83.3333333333%;
}

.small-push-10 {
  position: relative;
  left: 83.3333333333%;
}

.small-pull-10 {
  position: relative;
  left: -83.3333333333%;
}

.small-offset-9 {
  margin-left: 75%;
}

.small-11 {
  width: 91.6666666667%;
}

.small-push-11 {
  position: relative;
  left: 91.6666666667%;
}

.small-pull-11 {
  position: relative;
  left: -91.6666666667%;
}

.small-offset-10 {
  margin-left: 83.3333333333%;
}

.small-12 {
  width: 100%;
}

.small-offset-11 {
  margin-left: 91.6666666667%;
}

.small-up-1 > .column, .small-up-1 > .columns {
  width: 100%;
  float: left;
}
.small-up-1 > .column:nth-of-type(1n), .small-up-1 > .columns:nth-of-type(1n) {
  clear: none;
}
.small-up-1 > .column:nth-of-type(1n+1), .small-up-1 > .columns:nth-of-type(1n+1) {
  clear: both;
}
.small-up-1 > .column:last-child, .small-up-1 > .columns:last-child {
  float: left;
}

.small-up-2 > .column, .small-up-2 > .columns {
  width: 50%;
  float: left;
}
.small-up-2 > .column:nth-of-type(1n), .small-up-2 > .columns:nth-of-type(1n) {
  clear: none;
}
.small-up-2 > .column:nth-of-type(2n+1), .small-up-2 > .columns:nth-of-type(2n+1) {
  clear: both;
}
.small-up-2 > .column:last-child, .small-up-2 > .columns:last-child {
  float: left;
}

.small-up-3 > .column, .small-up-3 > .columns {
  width: 33.3333333333%;
  float: left;
}
.small-up-3 > .column:nth-of-type(1n), .small-up-3 > .columns:nth-of-type(1n) {
  clear: none;
}
.small-up-3 > .column:nth-of-type(3n+1), .small-up-3 > .columns:nth-of-type(3n+1) {
  clear: both;
}
.small-up-3 > .column:last-child, .small-up-3 > .columns:last-child {
  float: left;
}

.small-up-4 > .column, .small-up-4 > .columns {
  width: 25%;
  float: left;
}
.small-up-4 > .column:nth-of-type(1n), .small-up-4 > .columns:nth-of-type(1n) {
  clear: none;
}
.small-up-4 > .column:nth-of-type(4n+1), .small-up-4 > .columns:nth-of-type(4n+1) {
  clear: both;
}
.small-up-4 > .column:last-child, .small-up-4 > .columns:last-child {
  float: left;
}

.small-up-5 > .column, .small-up-5 > .columns {
  width: 20%;
  float: left;
}
.small-up-5 > .column:nth-of-type(1n), .small-up-5 > .columns:nth-of-type(1n) {
  clear: none;
}
.small-up-5 > .column:nth-of-type(5n+1), .small-up-5 > .columns:nth-of-type(5n+1) {
  clear: both;
}
.small-up-5 > .column:last-child, .small-up-5 > .columns:last-child {
  float: left;
}

.small-up-6 > .column, .small-up-6 > .columns {
  width: 16.6666666667%;
  float: left;
}
.small-up-6 > .column:nth-of-type(1n), .small-up-6 > .columns:nth-of-type(1n) {
  clear: none;
}
.small-up-6 > .column:nth-of-type(6n+1), .small-up-6 > .columns:nth-of-type(6n+1) {
  clear: both;
}
.small-up-6 > .column:last-child, .small-up-6 > .columns:last-child {
  float: left;
}

.small-up-7 > .column, .small-up-7 > .columns {
  width: 14.2857142857%;
  float: left;
}
.small-up-7 > .column:nth-of-type(1n), .small-up-7 > .columns:nth-of-type(1n) {
  clear: none;
}
.small-up-7 > .column:nth-of-type(7n+1), .small-up-7 > .columns:nth-of-type(7n+1) {
  clear: both;
}
.small-up-7 > .column:last-child, .small-up-7 > .columns:last-child {
  float: left;
}

.small-up-8 > .column, .small-up-8 > .columns {
  width: 12.5%;
  float: left;
}
.small-up-8 > .column:nth-of-type(1n), .small-up-8 > .columns:nth-of-type(1n) {
  clear: none;
}
.small-up-8 > .column:nth-of-type(8n+1), .small-up-8 > .columns:nth-of-type(8n+1) {
  clear: both;
}
.small-up-8 > .column:last-child, .small-up-8 > .columns:last-child {
  float: left;
}

.small-collapse > .column, .small-collapse > .columns {
  padding-left: 0;
  padding-right: 0;
}
.small-collapse .row {
  margin-left: 0;
  margin-right: 0;
}

.small-uncollapse > .column, .small-uncollapse > .columns {
  padding-left: 0.625rem;
  padding-right: 0.625rem;
}

.small-centered {
  float: none;
  margin-left: auto;
  margin-right: auto;
}

.small-uncentered,
.small-push-0,
.small-pull-0 {
  position: static;
  margin-left: 0;
  margin-right: 0;
  float: left;
}

@media screen and (min-width: 30em) {
  .smallish-1 {
    width: 8.3333333333%;
  }
  .smallish-push-1 {
    position: relative;
    left: 8.3333333333%;
  }
  .smallish-pull-1 {
    position: relative;
    left: -8.3333333333%;
  }
  .smallish-offset-0 {
    margin-left: 0%;
  }
  .smallish-2 {
    width: 16.6666666667%;
  }
  .smallish-push-2 {
    position: relative;
    left: 16.6666666667%;
  }
  .smallish-pull-2 {
    position: relative;
    left: -16.6666666667%;
  }
  .smallish-offset-1 {
    margin-left: 8.3333333333%;
  }
  .smallish-3 {
    width: 25%;
  }
  .smallish-push-3 {
    position: relative;
    left: 25%;
  }
  .smallish-pull-3 {
    position: relative;
    left: -25%;
  }
  .smallish-offset-2 {
    margin-left: 16.6666666667%;
  }
  .smallish-4 {
    width: 33.3333333333%;
  }
  .smallish-push-4 {
    position: relative;
    left: 33.3333333333%;
  }
  .smallish-pull-4 {
    position: relative;
    left: -33.3333333333%;
  }
  .smallish-offset-3 {
    margin-left: 25%;
  }
  .smallish-5 {
    width: 41.6666666667%;
  }
  .smallish-push-5 {
    position: relative;
    left: 41.6666666667%;
  }
  .smallish-pull-5 {
    position: relative;
    left: -41.6666666667%;
  }
  .smallish-offset-4 {
    margin-left: 33.3333333333%;
  }
  .smallish-6 {
    width: 50%;
  }
  .smallish-push-6 {
    position: relative;
    left: 50%;
  }
  .smallish-pull-6 {
    position: relative;
    left: -50%;
  }
  .smallish-offset-5 {
    margin-left: 41.6666666667%;
  }
  .smallish-7 {
    width: 58.3333333333%;
  }
  .smallish-push-7 {
    position: relative;
    left: 58.3333333333%;
  }
  .smallish-pull-7 {
    position: relative;
    left: -58.3333333333%;
  }
  .smallish-offset-6 {
    margin-left: 50%;
  }
  .smallish-8 {
    width: 66.6666666667%;
  }
  .smallish-push-8 {
    position: relative;
    left: 66.6666666667%;
  }
  .smallish-pull-8 {
    position: relative;
    left: -66.6666666667%;
  }
  .smallish-offset-7 {
    margin-left: 58.3333333333%;
  }
  .smallish-9 {
    width: 75%;
  }
  .smallish-push-9 {
    position: relative;
    left: 75%;
  }
  .smallish-pull-9 {
    position: relative;
    left: -75%;
  }
  .smallish-offset-8 {
    margin-left: 66.6666666667%;
  }
  .smallish-10 {
    width: 83.3333333333%;
  }
  .smallish-push-10 {
    position: relative;
    left: 83.3333333333%;
  }
  .smallish-pull-10 {
    position: relative;
    left: -83.3333333333%;
  }
  .smallish-offset-9 {
    margin-left: 75%;
  }
  .smallish-11 {
    width: 91.6666666667%;
  }
  .smallish-push-11 {
    position: relative;
    left: 91.6666666667%;
  }
  .smallish-pull-11 {
    position: relative;
    left: -91.6666666667%;
  }
  .smallish-offset-10 {
    margin-left: 83.3333333333%;
  }
  .smallish-12 {
    width: 100%;
  }
  .smallish-offset-11 {
    margin-left: 91.6666666667%;
  }
  .smallish-up-1 > .column, .smallish-up-1 > .columns {
    width: 100%;
    float: left;
  }
  .smallish-up-1 > .column:nth-of-type(1n), .smallish-up-1 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .smallish-up-1 > .column:nth-of-type(1n+1), .smallish-up-1 > .columns:nth-of-type(1n+1) {
    clear: both;
  }
  .smallish-up-1 > .column:last-child, .smallish-up-1 > .columns:last-child {
    float: left;
  }
  .smallish-up-2 > .column, .smallish-up-2 > .columns {
    width: 50%;
    float: left;
  }
  .smallish-up-2 > .column:nth-of-type(1n), .smallish-up-2 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .smallish-up-2 > .column:nth-of-type(2n+1), .smallish-up-2 > .columns:nth-of-type(2n+1) {
    clear: both;
  }
  .smallish-up-2 > .column:last-child, .smallish-up-2 > .columns:last-child {
    float: left;
  }
  .smallish-up-3 > .column, .smallish-up-3 > .columns {
    width: 33.3333333333%;
    float: left;
  }
  .smallish-up-3 > .column:nth-of-type(1n), .smallish-up-3 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .smallish-up-3 > .column:nth-of-type(3n+1), .smallish-up-3 > .columns:nth-of-type(3n+1) {
    clear: both;
  }
  .smallish-up-3 > .column:last-child, .smallish-up-3 > .columns:last-child {
    float: left;
  }
  .smallish-up-4 > .column, .smallish-up-4 > .columns {
    width: 25%;
    float: left;
  }
  .smallish-up-4 > .column:nth-of-type(1n), .smallish-up-4 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .smallish-up-4 > .column:nth-of-type(4n+1), .smallish-up-4 > .columns:nth-of-type(4n+1) {
    clear: both;
  }
  .smallish-up-4 > .column:last-child, .smallish-up-4 > .columns:last-child {
    float: left;
  }
  .smallish-up-5 > .column, .smallish-up-5 > .columns {
    width: 20%;
    float: left;
  }
  .smallish-up-5 > .column:nth-of-type(1n), .smallish-up-5 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .smallish-up-5 > .column:nth-of-type(5n+1), .smallish-up-5 > .columns:nth-of-type(5n+1) {
    clear: both;
  }
  .smallish-up-5 > .column:last-child, .smallish-up-5 > .columns:last-child {
    float: left;
  }
  .smallish-up-6 > .column, .smallish-up-6 > .columns {
    width: 16.6666666667%;
    float: left;
  }
  .smallish-up-6 > .column:nth-of-type(1n), .smallish-up-6 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .smallish-up-6 > .column:nth-of-type(6n+1), .smallish-up-6 > .columns:nth-of-type(6n+1) {
    clear: both;
  }
  .smallish-up-6 > .column:last-child, .smallish-up-6 > .columns:last-child {
    float: left;
  }
  .smallish-up-7 > .column, .smallish-up-7 > .columns {
    width: 14.2857142857%;
    float: left;
  }
  .smallish-up-7 > .column:nth-of-type(1n), .smallish-up-7 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .smallish-up-7 > .column:nth-of-type(7n+1), .smallish-up-7 > .columns:nth-of-type(7n+1) {
    clear: both;
  }
  .smallish-up-7 > .column:last-child, .smallish-up-7 > .columns:last-child {
    float: left;
  }
  .smallish-up-8 > .column, .smallish-up-8 > .columns {
    width: 12.5%;
    float: left;
  }
  .smallish-up-8 > .column:nth-of-type(1n), .smallish-up-8 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .smallish-up-8 > .column:nth-of-type(8n+1), .smallish-up-8 > .columns:nth-of-type(8n+1) {
    clear: both;
  }
  .smallish-up-8 > .column:last-child, .smallish-up-8 > .columns:last-child {
    float: left;
  }
  .smallish-collapse > .column, .smallish-collapse > .columns {
    padding-left: 0;
    padding-right: 0;
  }
  .smallish-collapse .row {
    margin-left: 0;
    margin-right: 0;
  }
  .smallish-uncollapse > .column, .smallish-uncollapse > .columns {
    padding-left: 0.625rem;
    padding-right: 0.625rem;
  }
  .smallish-centered {
    float: none;
    margin-left: auto;
    margin-right: auto;
  }
  .smallish-uncentered,
  .smallish-push-0,
  .smallish-pull-0 {
    position: static;
    margin-left: 0;
    margin-right: 0;
    float: left;
  }
}
@media screen and (min-width: 40em) {
  .medium-1 {
    width: 8.3333333333%;
  }
  .medium-push-1 {
    position: relative;
    left: 8.3333333333%;
  }
  .medium-pull-1 {
    position: relative;
    left: -8.3333333333%;
  }
  .medium-offset-0 {
    margin-left: 0%;
  }
  .medium-2 {
    width: 16.6666666667%;
  }
  .medium-push-2 {
    position: relative;
    left: 16.6666666667%;
  }
  .medium-pull-2 {
    position: relative;
    left: -16.6666666667%;
  }
  .medium-offset-1 {
    margin-left: 8.3333333333%;
  }
  .medium-3 {
    width: 25%;
  }
  .medium-push-3 {
    position: relative;
    left: 25%;
  }
  .medium-pull-3 {
    position: relative;
    left: -25%;
  }
  .medium-offset-2 {
    margin-left: 16.6666666667%;
  }
  .medium-4 {
    width: 33.3333333333%;
  }
  .medium-push-4 {
    position: relative;
    left: 33.3333333333%;
  }
  .medium-pull-4 {
    position: relative;
    left: -33.3333333333%;
  }
  .medium-offset-3 {
    margin-left: 25%;
  }
  .medium-5 {
    width: 41.6666666667%;
  }
  .medium-push-5 {
    position: relative;
    left: 41.6666666667%;
  }
  .medium-pull-5 {
    position: relative;
    left: -41.6666666667%;
  }
  .medium-offset-4 {
    margin-left: 33.3333333333%;
  }
  .medium-6 {
    width: 50%;
  }
  .medium-push-6 {
    position: relative;
    left: 50%;
  }
  .medium-pull-6 {
    position: relative;
    left: -50%;
  }
  .medium-offset-5 {
    margin-left: 41.6666666667%;
  }
  .medium-7 {
    width: 58.3333333333%;
  }
  .medium-push-7 {
    position: relative;
    left: 58.3333333333%;
  }
  .medium-pull-7 {
    position: relative;
    left: -58.3333333333%;
  }
  .medium-offset-6 {
    margin-left: 50%;
  }
  .medium-8 {
    width: 66.6666666667%;
  }
  .medium-push-8 {
    position: relative;
    left: 66.6666666667%;
  }
  .medium-pull-8 {
    position: relative;
    left: -66.6666666667%;
  }
  .medium-offset-7 {
    margin-left: 58.3333333333%;
  }
  .medium-9 {
    width: 75%;
  }
  .medium-push-9 {
    position: relative;
    left: 75%;
  }
  .medium-pull-9 {
    position: relative;
    left: -75%;
  }
  .medium-offset-8 {
    margin-left: 66.6666666667%;
  }
  .medium-10 {
    width: 83.3333333333%;
  }
  .medium-push-10 {
    position: relative;
    left: 83.3333333333%;
  }
  .medium-pull-10 {
    position: relative;
    left: -83.3333333333%;
  }
  .medium-offset-9 {
    margin-left: 75%;
  }
  .medium-11 {
    width: 91.6666666667%;
  }
  .medium-push-11 {
    position: relative;
    left: 91.6666666667%;
  }
  .medium-pull-11 {
    position: relative;
    left: -91.6666666667%;
  }
  .medium-offset-10 {
    margin-left: 83.3333333333%;
  }
  .medium-12 {
    width: 100%;
  }
  .medium-offset-11 {
    margin-left: 91.6666666667%;
  }
  .medium-up-1 > .column, .medium-up-1 > .columns {
    width: 100%;
    float: left;
  }
  .medium-up-1 > .column:nth-of-type(1n), .medium-up-1 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .medium-up-1 > .column:nth-of-type(1n+1), .medium-up-1 > .columns:nth-of-type(1n+1) {
    clear: both;
  }
  .medium-up-1 > .column:last-child, .medium-up-1 > .columns:last-child {
    float: left;
  }
  .medium-up-2 > .column, .medium-up-2 > .columns {
    width: 50%;
    float: left;
  }
  .medium-up-2 > .column:nth-of-type(1n), .medium-up-2 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .medium-up-2 > .column:nth-of-type(2n+1), .medium-up-2 > .columns:nth-of-type(2n+1) {
    clear: both;
  }
  .medium-up-2 > .column:last-child, .medium-up-2 > .columns:last-child {
    float: left;
  }
  .medium-up-3 > .column, .medium-up-3 > .columns {
    width: 33.3333333333%;
    float: left;
  }
  .medium-up-3 > .column:nth-of-type(1n), .medium-up-3 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .medium-up-3 > .column:nth-of-type(3n+1), .medium-up-3 > .columns:nth-of-type(3n+1) {
    clear: both;
  }
  .medium-up-3 > .column:last-child, .medium-up-3 > .columns:last-child {
    float: left;
  }
  .medium-up-4 > .column, .medium-up-4 > .columns {
    width: 25%;
    float: left;
  }
  .medium-up-4 > .column:nth-of-type(1n), .medium-up-4 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .medium-up-4 > .column:nth-of-type(4n+1), .medium-up-4 > .columns:nth-of-type(4n+1) {
    clear: both;
  }
  .medium-up-4 > .column:last-child, .medium-up-4 > .columns:last-child {
    float: left;
  }
  .medium-up-5 > .column, .medium-up-5 > .columns {
    width: 20%;
    float: left;
  }
  .medium-up-5 > .column:nth-of-type(1n), .medium-up-5 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .medium-up-5 > .column:nth-of-type(5n+1), .medium-up-5 > .columns:nth-of-type(5n+1) {
    clear: both;
  }
  .medium-up-5 > .column:last-child, .medium-up-5 > .columns:last-child {
    float: left;
  }
  .medium-up-6 > .column, .medium-up-6 > .columns {
    width: 16.6666666667%;
    float: left;
  }
  .medium-up-6 > .column:nth-of-type(1n), .medium-up-6 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .medium-up-6 > .column:nth-of-type(6n+1), .medium-up-6 > .columns:nth-of-type(6n+1) {
    clear: both;
  }
  .medium-up-6 > .column:last-child, .medium-up-6 > .columns:last-child {
    float: left;
  }
  .medium-up-7 > .column, .medium-up-7 > .columns {
    width: 14.2857142857%;
    float: left;
  }
  .medium-up-7 > .column:nth-of-type(1n), .medium-up-7 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .medium-up-7 > .column:nth-of-type(7n+1), .medium-up-7 > .columns:nth-of-type(7n+1) {
    clear: both;
  }
  .medium-up-7 > .column:last-child, .medium-up-7 > .columns:last-child {
    float: left;
  }
  .medium-up-8 > .column, .medium-up-8 > .columns {
    width: 12.5%;
    float: left;
  }
  .medium-up-8 > .column:nth-of-type(1n), .medium-up-8 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .medium-up-8 > .column:nth-of-type(8n+1), .medium-up-8 > .columns:nth-of-type(8n+1) {
    clear: both;
  }
  .medium-up-8 > .column:last-child, .medium-up-8 > .columns:last-child {
    float: left;
  }
  .medium-collapse > .column, .medium-collapse > .columns {
    padding-left: 0;
    padding-right: 0;
  }
  .medium-collapse .row {
    margin-left: 0;
    margin-right: 0;
  }
  .medium-uncollapse > .column, .medium-uncollapse > .columns {
    padding-left: 0.9375rem;
    padding-right: 0.9375rem;
  }
  .medium-centered {
    float: none;
    margin-left: auto;
    margin-right: auto;
  }
  .medium-uncentered,
  .medium-push-0,
  .medium-pull-0 {
    position: static;
    margin-left: 0;
    margin-right: 0;
    float: left;
  }
}
@media screen and (min-width: 64em) {
  .large-1 {
    width: 8.3333333333%;
  }
  .large-push-1 {
    position: relative;
    left: 8.3333333333%;
  }
  .large-pull-1 {
    position: relative;
    left: -8.3333333333%;
  }
  .large-offset-0 {
    margin-left: 0%;
  }
  .large-2 {
    width: 16.6666666667%;
  }
  .large-push-2 {
    position: relative;
    left: 16.6666666667%;
  }
  .large-pull-2 {
    position: relative;
    left: -16.6666666667%;
  }
  .large-offset-1 {
    margin-left: 8.3333333333%;
  }
  .large-3 {
    width: 25%;
  }
  .large-push-3 {
    position: relative;
    left: 25%;
  }
  .large-pull-3 {
    position: relative;
    left: -25%;
  }
  .large-offset-2 {
    margin-left: 16.6666666667%;
  }
  .large-4 {
    width: 33.3333333333%;
  }
  .large-push-4 {
    position: relative;
    left: 33.3333333333%;
  }
  .large-pull-4 {
    position: relative;
    left: -33.3333333333%;
  }
  .large-offset-3 {
    margin-left: 25%;
  }
  .large-5 {
    width: 41.6666666667%;
  }
  .large-push-5 {
    position: relative;
    left: 41.6666666667%;
  }
  .large-pull-5 {
    position: relative;
    left: -41.6666666667%;
  }
  .large-offset-4 {
    margin-left: 33.3333333333%;
  }
  .large-6 {
    width: 50%;
  }
  .large-push-6 {
    position: relative;
    left: 50%;
  }
  .large-pull-6 {
    position: relative;
    left: -50%;
  }
  .large-offset-5 {
    margin-left: 41.6666666667%;
  }
  .large-7 {
    width: 58.3333333333%;
  }
  .large-push-7 {
    position: relative;
    left: 58.3333333333%;
  }
  .large-pull-7 {
    position: relative;
    left: -58.3333333333%;
  }
  .large-offset-6 {
    margin-left: 50%;
  }
  .large-8 {
    width: 66.6666666667%;
  }
  .large-push-8 {
    position: relative;
    left: 66.6666666667%;
  }
  .large-pull-8 {
    position: relative;
    left: -66.6666666667%;
  }
  .large-offset-7 {
    margin-left: 58.3333333333%;
  }
  .large-9 {
    width: 75%;
  }
  .large-push-9 {
    position: relative;
    left: 75%;
  }
  .large-pull-9 {
    position: relative;
    left: -75%;
  }
  .large-offset-8 {
    margin-left: 66.6666666667%;
  }
  .large-10 {
    width: 83.3333333333%;
  }
  .large-push-10 {
    position: relative;
    left: 83.3333333333%;
  }
  .large-pull-10 {
    position: relative;
    left: -83.3333333333%;
  }
  .large-offset-9 {
    margin-left: 75%;
  }
  .large-11 {
    width: 91.6666666667%;
  }
  .large-push-11 {
    position: relative;
    left: 91.6666666667%;
  }
  .large-pull-11 {
    position: relative;
    left: -91.6666666667%;
  }
  .large-offset-10 {
    margin-left: 83.3333333333%;
  }
  .large-12 {
    width: 100%;
  }
  .large-offset-11 {
    margin-left: 91.6666666667%;
  }
  .large-up-1 > .column, .large-up-1 > .columns {
    width: 100%;
    float: left;
  }
  .large-up-1 > .column:nth-of-type(1n), .large-up-1 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .large-up-1 > .column:nth-of-type(1n+1), .large-up-1 > .columns:nth-of-type(1n+1) {
    clear: both;
  }
  .large-up-1 > .column:last-child, .large-up-1 > .columns:last-child {
    float: left;
  }
  .large-up-2 > .column, .large-up-2 > .columns {
    width: 50%;
    float: left;
  }
  .large-up-2 > .column:nth-of-type(1n), .large-up-2 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .large-up-2 > .column:nth-of-type(2n+1), .large-up-2 > .columns:nth-of-type(2n+1) {
    clear: both;
  }
  .large-up-2 > .column:last-child, .large-up-2 > .columns:last-child {
    float: left;
  }
  .large-up-3 > .column, .large-up-3 > .columns {
    width: 33.3333333333%;
    float: left;
  }
  .large-up-3 > .column:nth-of-type(1n), .large-up-3 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .large-up-3 > .column:nth-of-type(3n+1), .large-up-3 > .columns:nth-of-type(3n+1) {
    clear: both;
  }
  .large-up-3 > .column:last-child, .large-up-3 > .columns:last-child {
    float: left;
  }
  .large-up-4 > .column, .large-up-4 > .columns {
    width: 25%;
    float: left;
  }
  .large-up-4 > .column:nth-of-type(1n), .large-up-4 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .large-up-4 > .column:nth-of-type(4n+1), .large-up-4 > .columns:nth-of-type(4n+1) {
    clear: both;
  }
  .large-up-4 > .column:last-child, .large-up-4 > .columns:last-child {
    float: left;
  }
  .large-up-5 > .column, .large-up-5 > .columns {
    width: 20%;
    float: left;
  }
  .large-up-5 > .column:nth-of-type(1n), .large-up-5 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .large-up-5 > .column:nth-of-type(5n+1), .large-up-5 > .columns:nth-of-type(5n+1) {
    clear: both;
  }
  .large-up-5 > .column:last-child, .large-up-5 > .columns:last-child {
    float: left;
  }
  .large-up-6 > .column, .large-up-6 > .columns {
    width: 16.6666666667%;
    float: left;
  }
  .large-up-6 > .column:nth-of-type(1n), .large-up-6 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .large-up-6 > .column:nth-of-type(6n+1), .large-up-6 > .columns:nth-of-type(6n+1) {
    clear: both;
  }
  .large-up-6 > .column:last-child, .large-up-6 > .columns:last-child {
    float: left;
  }
  .large-up-7 > .column, .large-up-7 > .columns {
    width: 14.2857142857%;
    float: left;
  }
  .large-up-7 > .column:nth-of-type(1n), .large-up-7 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .large-up-7 > .column:nth-of-type(7n+1), .large-up-7 > .columns:nth-of-type(7n+1) {
    clear: both;
  }
  .large-up-7 > .column:last-child, .large-up-7 > .columns:last-child {
    float: left;
  }
  .large-up-8 > .column, .large-up-8 > .columns {
    width: 12.5%;
    float: left;
  }
  .large-up-8 > .column:nth-of-type(1n), .large-up-8 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .large-up-8 > .column:nth-of-type(8n+1), .large-up-8 > .columns:nth-of-type(8n+1) {
    clear: both;
  }
  .large-up-8 > .column:last-child, .large-up-8 > .columns:last-child {
    float: left;
  }
  .large-collapse > .column, .large-collapse > .columns {
    padding-left: 0;
    padding-right: 0;
  }
  .large-collapse .row {
    margin-left: 0;
    margin-right: 0;
  }
  .large-uncollapse > .column, .large-uncollapse > .columns {
    padding-left: 0.9375rem;
    padding-right: 0.9375rem;
  }
  .large-centered {
    float: none;
    margin-left: auto;
    margin-right: auto;
  }
  .large-uncentered,
  .large-push-0,
  .large-pull-0 {
    position: static;
    margin-left: 0;
    margin-right: 0;
    float: left;
  }
}
.row {
  margin-left: -0.625rem;
  margin-right: -0.625rem;
}
@media screen and (min-width: 40em) {
  .row {
    margin-left: -0.9375rem;
    margin-right: -0.9375rem;
  }
}

/**
 * Fonts
 */
@font-face {
  font-family: "Fira Sans";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/fira-sans-v10-latin-regular.eot");
  src: local("Fira Sans Regular"), local("FiraSans-Regular"), url("../fonts/fira-sans-v10-latin-regular.eot?#iefix") format("embedded-opentype"), url("../fonts/fira-sans-v10-latin-regular.woff2") format("woff2"), url("../fonts/fira-sans-v10-latin-regular.woff") format("woff"), url("../fonts/fira-sans-v10-latin-regular.ttf") format("truetype"), url("../fonts/fira-sans-v10-latin-regular.svg#FiraSans") format("svg");
}
@font-face {
  font-family: "Fira Sans";
  font-style: italic;
  font-weight: 400;
  src: url("../fonts/fira-sans-v10-latin-italic.eot");
  src: local("Fira Sans Italic"), local("FiraSans-Italic"), url("../fonts/fira-sans-v10-latin-italic.eot?#iefix") format("embedded-opentype"), url("../fonts/fira-sans-v10-latin-italic.woff2") format("woff2"), url("../fonts/fira-sans-v10-latin-italic.woff") format("woff"), url("../fonts/fira-sans-v10-latin-italic.ttf") format("truetype"), url("../fonts/fira-sans-v10-latin-italic.svg#FiraSans") format("svg");
}
@font-face {
  font-family: "Fira Sans";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/fira-sans-v10-latin-700.eot");
  src: local("Fira Sans Bold"), local("FiraSans-Bold"), url("../fonts/fira-sans-v10-latin-700.eot?#iefix") format("embedded-opentype"), url("../fonts/fira-sans-v10-latin-700.woff2") format("woff2"), url("../fonts/fira-sans-v10-latin-700.woff") format("woff"), url("../fonts/fira-sans-v10-latin-700.ttf") format("truetype"), url("../fonts/fira-sans-v10-latin-700.svg#FiraSans") format("svg");
}
@font-face {
  font-family: "Fira Sans";
  font-style: italic;
  font-weight: 700;
  src: url("../fonts/fira-sans-v10-latin-700italic.eot");
  src: local("Fira Sans Bold Italic"), local("FiraSans-BoldItalic"), url("../fonts/fira-sans-v10-latin-700italic.eot?#iefix") format("embedded-opentype"), url("../fonts/fira-sans-v10-latin-700italic.woff2") format("woff2"), url("../fonts/fira-sans-v10-latin-700italic.woff") format("woff"), url("../fonts/fira-sans-v10-latin-700italic.ttf") format("truetype"), url("../fonts/fira-sans-v10-latin-700italic.svg#FiraSans") format("svg");
}
@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/montserrat-v14-latin-regular.eot");
  src: local("Montserrat Regular"), local("Montserrat-Regular"), url("../fonts/montserrat-v14-latin-regular.eot?#iefix") format("embedded-opentype"), url("../fonts/montserrat-v14-latin-regular.woff2") format("woff2"), url("../fonts/montserrat-v14-latin-regular.woff") format("woff"), url("../fonts/montserrat-v14-latin-regular.ttf") format("truetype"), url("../fonts/montserrat-v14-latin-regular.svg#Montserrat") format("svg");
}
@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 500;
  src: url("../fonts/montserrat-v14-latin-500.eot");
  src: local("Montserrat Medium"), local("Montserrat-Medium"), url("../fonts/montserrat-v14-latin-500.eot?#iefix") format("embedded-opentype"), url("../fonts/montserrat-v14-latin-500.woff2") format("woff2"), url("../fonts/montserrat-v14-latin-500.woff") format("woff"), url("../fonts/montserrat-v14-latin-500.ttf") format("truetype"), url("../fonts/montserrat-v14-latin-500.svg#Montserrat") format("svg");
}
@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 600;
  src: url("../fonts/montserrat-v14-latin-600.eot");
  src: local("Montserrat SemiBold"), local("Montserrat-SemiBold"), url("../fonts/montserrat-v14-latin-600.eot?#iefix") format("embedded-opentype"), url("../fonts/montserrat-v14-latin-600.woff2") format("woff2"), url("../fonts/montserrat-v14-latin-600.woff") format("woff"), url("../fonts/montserrat-v14-latin-600.ttf") format("truetype"), url("../fonts/montserrat-v14-latin-600.svg#Montserrat") format("svg");
}
@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/montserrat-v14-latin-700.eot");
  src: local("Montserrat Bold"), local("Montserrat-Bold"), url("../fonts/montserrat-v14-latin-700.eot?#iefix") format("embedded-opentype"), url("../fonts/montserrat-v14-latin-700.woff2") format("woff2"), url("../fonts/montserrat-v14-latin-700.woff") format("woff"), url("../fonts/montserrat-v14-latin-700.ttf") format("truetype"), url("../fonts/montserrat-v14-latin-700.svg#Montserrat") format("svg");
}
/**
 * Colours
 */
.bg_accent-blue {
  background-color: #01A5E0;
}

.bg_accent-light-blue {
  background-color: #67c9ec;
}

.bg_accent-dark-blue {
  background-color: #093448;
}

.bg_accent-yellow {
  background-color: #F4D642;
}

.bg_accent-green {
  background-color: #39B790;
}

.bg_accent-red {
  background-color: #E53528;
}

.bg_accent-orange {
  background-color: #E5772F;
}

.bg_accent-purple {
  background-color: #7056DB;
}

.bg_accent-grey {
  background-color: #B5C3C6;
}

.bg_block-dark {
  background-color: #051A24;
}

.bg_block-mid {
  background-color: #666666;
}

.bg_block-navy {
  background-color: #093448;
}

.bg_block-light {
  background-color: #F4F4F4;
}

.bg_block-hero {
  background-color: #F0FBFC;
}

.bg_stroke-light {
  background-color: #E1E7E8;
}

.bg_white {
  background: white;
}

/**
 * Typography
 */
h1, .h1 {
  font-family: "Fira Sans";
  font-size: 36px;
  color: #333333;
}

h2, .h2 {
  font-family: "Fira Sans";
  font-size: 28px;
  color: #333333;
}

h3, .h3 {
  font-family: "Fira Sans";
  font-size: 28px;
  color: #333333;
}

h4, .h4 {
  font-family: "Fira Sans";
  font-size: 21px;
  color: #333333;
}

h5, .h5, .social-entry .label, .subnav_link, .footer_nav li:first-child {
  font-family: Montserrat;
  font-size: 14px;
  font-weight: 600;
  color: #333333;
  text-transform: uppercase;
}

h6, .h6 {
  font-family: Montserrat;
  font-size: 13px;
  font-weight: 600;
  color: #666666;
}

a.headline-link {
  padding-bottom: 30px;
  text-decoration: none;
  font-family: Montserrat;
  font-size: 14px;
}

[ng-click] {
  cursor: pointer;
}

.emphasis {
  font-family: "Fira Sans";
  color: currentColor;
}

.italic {
  font-family: "Fira Sans";
}

.small-print {
  font-family: "Fira Sans";
  color: #666666;
  font-size: 14px;
}

.uppercase {
  text-transform: uppercase;
}

.spaced-link {
  color: #666666;
  padding-left: 6.6666666667px;
  padding-right: 6.6666666667px;
  display: inline-block;
}

.text_accent-blue, .module-authentication {
  color: #01A5E0;
}

.text_accent-light-blue {
  color: #67c9ec;
}

.text_accent-dark-blue {
  color: #093448;
}

.text_accent-yellow, .module-datastores, .module-datastore {
  color: #F4D642;
}

.text_accent-green, .module-io {
  color: #39B790;
}

.text_accent-red, .module-policy {
  color: #E53528;
}

.text_accent-orange, .module-languages {
  color: #E5772F;
}

.text_accent-purple, .module-protocols {
  color: #7056DB;
}

.text_accent-grey {
  color: #B5C3C6;
}

.text-dark {
  color: #333333;
}

.text-mid {
  color: #666666;
}

.text-light {
  color: #A3A3A3;
}

.text-white {
  color: #FFFFFF;
}

.text-link {
  color: #01A5E0;
}

.text-alert {
  color: #E53528;
}

.text_centered {
  text-align: center;
}

.text_compressed > * {
  margin-bottom: 0;
}

.pull_right {
  float: right;
}

.pull_left {
  float: left;
}

.title_case {
  text-transform: capitalize;
}

/**
 * Buttons
 */
.button, .button_alt {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  border-radius: 2px;
  border: none;
  padding: 15px 20px;
  color: #FFFFFF;
  text-decoration: none;
  display: inline-block;
}
.button .arrow_icon path, .button_alt .arrow_icon path {
  fill: white;
}
.button:hover, .button_alt:hover {
  color: white;
}
.button.outline, .outline.button_alt {
  border: 1px solid white;
  background: transparent;
}
.button.outline:hover, .outline.button_alt:hover {
  background-color: white;
  color: #333333;
}
.button.bg_block-light, .bg_block-light.button_alt {
  border: 1px solid #E1E7E8;
}
.button.bg_block-light:hover, .bg_block-light.button_alt:hover {
  color: currentColor;
  background-color: rgb(218.5, 218.5, 218.5);
}
.button.detailed, .detailed.button_alt {
  padding: 24px;
  display: inline-block;
}
.button.detailed .right-border, .detailed.button_alt .right-border {
  padding-right: 16px;
  border-right: 1px solid white;
}
.button.detailed .h4, .detailed.button_alt .h4 {
  color: #FFFFFF;
  display: inline;
}
.button.detailed .h5, .button.detailed .social-entry .label, .social-entry .button.detailed .label, .button.detailed .subnav_link, .button.detailed .footer_nav li:first-child, .footer_nav .button.detailed li:first-child, .detailed.button_alt .h5, .detailed.button_alt .social-entry .label, .social-entry .detailed.button_alt .label, .detailed.button_alt .subnav_link, .detailed.button_alt .footer_nav li:first-child, .footer_nav .detailed.button_alt li:first-child {
  color: #FFFFFF;
  padding-left: 16px;
  padding-right: 16px;
}
.button.detailed .icon_xsmall, .detailed.button_alt .icon_xsmall {
  margin-right: 16px;
}
.button.block, .block.button_alt {
  display: block;
  width: 100%;
}
.button.releases-fixed-width, .releases-fixed-width.button_alt {
  width: 360px;
  max-width: 100%;
}
@media (max-width: 450px) {
  .button.releases-fixed-width, .releases-fixed-width.button_alt {
    width: auto;
  }
}
.button.bg_accent-green:hover, .bg_accent-green.button_alt:hover {
  background-color: rgb(44.8875, 144.1125, 113.4);
}
.button.bg_accent-blue:hover, .bg_accent-blue.button_alt:hover {
  background-color: rgb(0.7733333333, 127.6, 173.2266666667);
}
.button.bg_accent-light-blue:hover, .bg_accent-light-blue.button_alt:hover {
  background-color: rgb(57.6666666667, 184.8947368421, 230.3333333333);
}
.button.bg_accent-dark-blue:hover, .bg_accent-dark-blue.button_alt:hover {
  background-color: rgb(3.3333333333, 19.2592592593, 26.6666666667);
}
.button.bg_accent-grey, .bg_accent-grey.button_alt {
  background-color: rgb(166.5954198473, 183.320610687, 186.9045801527);
}
.button.bg_accent-grey:hover, .bg_accent-grey.button_alt:hover {
  background-color: rgb(137.786259542, 159.9618320611, 164.713740458);
}
.button .arrow, .button_alt .arrow {
  width: 15px;
  height: 15px;
  vertical-align: sub;
  margin-left: 10px;
}

.button_alt {
  color: currentColor;
}

.link, .accented-block {
  border: 1px solid #E1E7E8;
  border-left: 6px solid currentColor;
  padding: 30px 20px;
}
.link.accent-blue, .accented-block.accent-blue {
  border-left-color: #01A5E0;
}
.link.accent-light-blue, .accented-block.accent-light-blue {
  border-left-color: #67c9ec;
}
.link.accent-dark-blue, .accented-block.accent-dark-blue {
  border-left-color: #093448;
}
.link.accent-yellow, .accented-block.accent-yellow {
  border-left-color: #F4D642;
}
.link.accent-green, .accented-block.accent-green {
  border-left-color: #39B790;
}
.link.accent-red, .accented-block.accent-red {
  border-left-color: #E53528;
}
.link.accent-orange, .accented-block.accent-orange {
  border-left-color: #E5772F;
}
.link.accent-purple, .accented-block.accent-purple {
  border-left-color: #7056DB;
}
.link.accent-grey, .accented-block.accent-grey {
  border-left-color: #B5C3C6;
}

.link {
  display: inline-block;
  border-radius: 0;
  margin-top: -1px;
  background-color: white;
  color: currentColor;
  text-align: left;
  text-decoration: none;
}
.link:hover {
  background-color: #F4F4F4;
}
.link .icon {
  width: 30px;
  margin-right: 10px;
  display: inline-block;
}
.link .icon_small {
  display: inline-block;
  vertical-align: middle;
}
.link .arrow {
  width: 10px;
  margin-left: 5px;
}
.link.block {
  display: block;
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.link.block .arrow {
  margin-left: auto;
}
.link.block .flex_1 {
  flex: 1;
}
.link.inactive {
  background-color: #F4F4F4;
  color: #B5C3C6;
  border-color: #F4F4F4;
  border-left-color: #A3A3A3;
}
.link.inactive .h5, .link.inactive .social-entry .label, .social-entry .link.inactive .label, .link.inactive .subnav_link, .link.inactive .footer_nav li:first-child, .footer_nav .link.inactive li:first-child {
  color: inherit;
}
.link.inactive svg * {
  stroke: currentColor;
}
.link.inactive .st42 {
  fill: currentColor;
  stroke: transparent;
}
.link.inactive:hover {
  color: #A3A3A3;
  border-color: #A3A3A3;
}

.open-toggle {
  margin-top: 15px;
  margin-right: 15px;
  float: right;
}

.undecorate {
  text-decoration: none;
}

/**
 * Shared styles
 */
hr {
  height: 1px;
  color: #E1E7E8;
  background: #E1E7E8;
  font-size: 0;
  border: 0;
  margin: 30px 0 !important;
}

.icon > svg {
  display: inline-block;
  width: 16px;
  height: 16px;
  vertical-align: middle;
}
.icon > svg path {
  fill: #828282;
}

.icon_xsmall {
  width: 28px;
  height: 28px;
}

.icon_small {
  width: 45px;
  height: 45px;
}

.icon_medium {
  width: 100px;
  height: 100px;
}

.icon_large {
  width: 150px;
  height: 150px;
}

.icon_404 {
  width: 300px;
  height: 200px;
}

pre .h5, pre .social-entry .label, .social-entry pre .label, pre .subnav_link, pre .footer_nav li:first-child, .footer_nav pre li:first-child {
  color: rgb(152.1908396947, 171.641221374, 175.8091603053);
}

table td {
  padding-top: 5px;
  padding-bottom: 5px;
  padding-right: 5px;
}

.section-title {
  font-family: "Fira Sans";
}

.quick-links {
  margin-bottom: 30px;
}
.quick-links h5, .quick-links .h5, .quick-links .social-entry .label, .social-entry .quick-links .label, .quick-links .subnav_link, .quick-links .footer_nav li:first-child, .footer_nav .quick-links li:first-child {
  color: #666666;
}
.quick-links a {
  text-decoration: none;
}
.quick-links a:hover {
  color: currentColor;
}

.alert-box {
  padding: 30px;
  margin-bottom: 30px;
  background-color: #F4F4F4;
  width: 100%;
}

.circle-number {
  margin-bottom: 30px;
  color: #01A5E0;
  border: 3px solid #01A5E0;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  padding: 10px;
  font-size: 21px;
  text-align: center;
}

.grey-block {
  background-color: #F4F4F4;
  padding: 30px;
}

.inline_nav, .inline_list {
  margin-left: -20px;
  margin-right: -20px;
}
.inline_nav li, .inline_list li {
  display: inline-block;
}
.inline_nav a, .inline_list a {
  display: inline-block;
  text-decoration: none;
  padding: 10px 20px;
}

.remove-subnav-margin {
  margin-top: -30px;
}

/**
 * Hide Angular elements before it has a chance to update them
 */
[ng\:cloak], [ng-cloak], [data-ng-cloak], [x-ng-cloak], .ng-cloak, .x-ng-cloak {
  display: none !important;
}

/**
 * Reset some basic elements
 */
body, h1, h2, h3, h4, h5, h6,
p, blockquote, pre, hr,
dl, dd, ol, ul, figure {
  margin: 0;
  padding: 0;
}

/**
 * Basic styling
 */
html, body {
  min-height: 100vh;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

html {
  box-sizing: border-box;
  font-size: var(--body-font-size);
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: "Fira Sans";
  color: #666666;
  font-size: 18px;
  background-color: white;
  -webkit-text-size-adjust: 100%;
  -webkit-font-feature-settings: "kern" 1;
  -moz-font-feature-settings: "kern" 1;
  -o-font-feature-settings: "kern" 1;
  font-feature-settings: "kern" 1;
  font-kerning: normal;
  -webkit-font-kerning: normal;
  --webkit-font-smoothing: auto;
  padding-top: var(--body-top);
  line-height: 1.4;
}

/**
 * Set `margin-bottom` to maintain vertical rhythm
 */
h1, h2, h3, h4, h5, h6,
p, blockquote, pre,
ul, ol, dl, figure,
.highlight {
  margin-bottom: 15px;
}

/**
 * Images
 */
img {
  max-width: 100%;
  vertical-align: middle;
}

/**
 * Figures
 */
figure > img {
  display: block;
}

figcaption {
  font-size: 14px;
}

/**
 * Lists
 */
ul, ol {
  margin-left: 30px;
}

li > ul,
li > ol {
  margin-bottom: 0;
}

/**
 * Headings
 */
/**
 * Links
 */
a {
  color: #01A5E0;
}
a:hover {
  color: #333333;
}

/**
 * Type Emphasis
 */
strong, b {
  font-family: "Fira Sans";
  font-weight: bold;
}

i, cite, em, var, address, dfn {
  font-family: "Fira Sans";
  font-style: italic;
}

/**
 * Blockquotes
 */
blockquote {
  color: #666666;
  border-left: 6px solid #67c9ec;
  padding-left: 15px;
  font-size: 18px;
  letter-spacing: -1px;
  font-family: "Fira Sans";
  font-style: italic;
}
blockquote > :last-child {
  margin-bottom: 0;
}

/**
 * Code formatting
 */
pre,
code {
  font-size: 15px;
  border: 1px solid #E1E7E8;
  border-radius: 3px;
  background-color: #F4F4F4;
}

code {
  padding: 1px 5px;
}

pre {
  padding: 8px 12px;
  overflow-x: auto;
}
pre > code {
  border: 0;
  padding-right: 0;
  padding-left: 0;
}

nav ul {
  list-style: none;
  margin: 0;
}

button {
  background: none;
  border: 0;
  font: inherit;
  cursor: pointer;
}

/**
 * Wrapper
 */
.wrapper, .swiper-horizontal, .post-hero {
  max-width: -webkit-calc(1100px);
  max-width: calc(1100px);
  margin-right: auto;
  margin-left: auto;
  padding-right: 30px;
  padding-left: 30px;
}
@media screen and (max-width: 800px) {
  .wrapper, .swiper-horizontal, .post-hero {
    max-width: -webkit-calc(1100px - (30px));
    max-width: calc(1100px - (30px));
    padding-right: 15px;
    padding-left: 15px;
  }
}

/**
 * Clearfix
 */
.wrapper:after, .swiper-horizontal:after, .post-hero:after, .clearfix:after {
  content: "";
  display: table;
  clear: both;
}

.sites-nav {
  position: fixed;
  z-index: var(--z-index-navbar);
  top: 0;
  width: 100%;
  flex: 1 1 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  background-color: var(--neutral10);
  font-size: var(--size6);
  height: var(--sitenav-height);
}

.sites-nav a,
.sites-nav span {
  color: inherit;
  padding: 0.5rem;
}

.sites-nav a:hover {
  background-color: var(--neutral15);
}

body {
  padding-top: var(--body-top);
}

.navbar {
  background: var(--navbar-background);
  color: var(--navbar-font-color);
  height: var(--navbar-height);
  position: fixed;
  top: 30px;
  width: 100%;
  word-wrap: break-word;
  z-index: var(--z-index-navbar);
  /* flex-wrap: wrap; */
  font-size: var(--size5);
  border-bottom: 1px solid var(--neutral10);
  font-family: var(--alt-font);
}

.navbar a {
  text-decoration: none;
}

.navbar-brand .navbar-item:first-child,
.navbar-brand .navbar-item:first-child a {
  color: var(--navbar-font-color);
  font-size: calc(22 / var(--rem-base) * 1rem);
}

.navbar-brand .separator {
  padding: 0 0.375rem;
}

.navbar-end > .navbar-item,
.navbar-end .navbar-link {
  padding-top: 0;
  padding-bottom: 0;
}

.navbar-item:hover > a {
  font-weight: var(--body-font-weight-bold);
}

.navbar-item.has-dropdown:hover {
  box-shadow: inset 0 -2px 0 0 var(--blue20);
}

@media screen and (min-width: 1100px) {
  .navbar-end > .navbar-item,
  .navbar-end .navbar-link {
    color: var(--navbar-font-color);
  }
  .navbar-end > a.navbar-item:hover,
  .navbar-end .navbar-link:hover {
    background: var(--navbar_hover-background);
    color: var(--navbar-font-color);
  }
  .navbar-end .navbar-link::after {
    border-color: var(--navbar-font-color);
  }
  .navbar-item.has-dropdown:hover .navbar-link {
    background: var(--navbar_hover-background);
    color: var(--navbar-font-color);
  }
}
.navbar-brand {
  align-items: center;
  display: flex;
  flex-shrink: 0;
  padding-left: 1rem;
  height: 100%;
}

.navbar-burger {
  color: var(--navbar-font-color);
  background: none;
  border: none;
  outline: none;
  line-height: 1;
  position: relative;
  /* width: var(--navbar-height); */
  width: 70px;
  padding: 20px;
  margin-left: auto;
}

.navbar-burger span {
  background: var(--navbar-font-color);
  display: block;
  height: 1px;
  left: 50%;
  margin-left: -7px;
  position: absolute;
  top: 50%;
  width: 15px;
}

.navbar-burger span:nth-child(1) {
  margin-top: -6px;
}

.navbar-burger span:nth-child(2) {
  margin-top: -1px;
}

.navbar-burger span:nth-child(3) {
  margin-top: 4px;
}

.navbar-burger.is-active span:nth-child(1) {
  margin-left: -5px;
  transform: rotate(45deg);
  transform-origin: left top;
}

.navbar-burger.is-active span:nth-child(2) {
  opacity: 0;
}

.navbar-burger.is-active span:nth-child(3) {
  margin-left: -5px;
  transform: rotate(-45deg);
  transform-origin: left bottom;
}

.navbar-menu {
  display: none;
  text-transform: uppercase;
}

.navbar-item,
.navbar-link {
  color: var(--navbar-menu-font-color);
  display: block;
  line-height: var(--doc-line-height);
  padding: 0.5rem 1.2rem;
  position: relative;
}

.navbar-item {
  flex: none;
}

.navbar-item.has-dropdown {
  padding: 0;
}

.navbar-item .icon {
  width: 1.1rem;
  height: 1.1rem;
  display: block;
}

.navbar-link {
  padding-right: 2.5em;
}

.navbar-dropdown .navbar-item {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.navbar-mid {
  font-weight: 600;
}

.navbar-divider {
  background-color: var(--navbar-menu-border-color);
  border: none;
  height: 1px;
  margin: 0.25rem 0;
}

@media screen and (max-width: 989px) {
  .navbar-brand .navbar-item {
    align-items: center;
    display: flex;
  }
  .navbar-menu {
    background: var(--navbar-menu-background);
    padding: 0.5rem 0;
  }
  .navbar-menu.is-active {
    display: block;
    box-shadow: 0 8px 16px rgba(10, 10, 10, 0.1);
    max-height: var(--nav-height);
    overflow-y: auto;
  }
  .navbar-menu a.navbar-item:hover,
  .navbar-menu .navbar-link:hover {
    background-color: var(--navbar-menu_hover-background);
  }
}
@media screen and (min-width: 990px) {
  .navbar,
  .navbar-menu,
  .navbar-mid,
  .navbar-end {
    align-items: stretch;
    display: flex;
  }
  .navbar-burger {
    display: none;
  }
  .navbar-item,
  .navbar-link {
    align-items: center;
    display: flex;
  }
  .navbar-item.has-dropdown {
    align-items: stretch;
  }
  .navbar-item.is-hoverable:hover .navbar-dropdown {
    display: block;
  }
  .navbar-link::after {
    border-width: 0 0 1px 1px;
    border-style: solid;
    content: " ";
    display: block;
    height: 0.5em;
    pointer-events: none;
    position: absolute;
    transform: rotate(-45deg);
    width: 0.5em;
    margin-top: -0.375em;
    right: 1.125em;
    top: 50%;
  }
  .navbar-menu {
    flex-grow: 1;
  }
  .navbar-mid {
    flex: 1 1 auto;
    justify-content: center;
  }
  .navbar-brand {
    /* padding-left: 1rem; */
  }
  .navbar-end {
    justify-content: flex-end;
    padding-right: 1rem;
  }
  .navbar-dropdown {
    background-color: var(--navbar-menu-background);
    border: 1px solid var(--navbar-menu-border-color);
    border-top: none;
    border-radius: 0 0 0.25rem 0.25rem;
    display: none;
    top: 100%;
    left: 0;
    min-width: 100%;
    position: absolute;
    box-shadow: 0 2px 4px 2px var(--neutral10);
    padding: 1rem 0;
    text-transform: none;
  }
  .navbar-dropdown .navbar-item {
    padding: 0.5rem 1rem;
    padding-left: 2rem;
    white-space: nowrap;
  }
  .navbar-dropdown .navbar-item:last-child {
    border-radius: inherit;
  }
  .navbar-dropdown a.navbar-item {
    padding-right: 3rem;
  }
  .navbar-dropdown.is-right {
    left: auto;
    right: 0;
  }
  .navbar-dropdown a.navbar-item:hover {
    background-color: var(--navbar-menu_hover-background);
  }
}
@media screen and (min-width: 800px) and (max-width: 1200px) {
  .navbar-brand .navbar-item {
    align-items: center;
    display: flex;
  }
  .navbar {
    align-items: center;
  }
  .navbar-mid {
    flex-wrap: wrap;
  }
  .navbar-item {
    flex: 1 1 33.33%;
    text-align: center;
    display: inline-block;
  }
  .navbar-menu {
    align-items: center;
  }
}
.navbar .button, .navbar .button_alt {
  display: inline-flex;
  align-items: center;
  background: var(--navbar-button-background);
  border: 1px solid var(--navbar-button-border-color);
  border-radius: 0.15rem;
  color: var(--navbar-button-font-color);
  white-space: nowrap;
  font-weight: 400;
  font-size: var(--size5);
  padding: 15px 20px;
  line-height: 1.286;
}

.navbar .button:hover, .navbar .button_alt:hover,
.navbar .button:focus,
.navbar .button_alt:focus {
  background-color: var(--blue25);
}

/**
 * Site footer
 */
.footer_main .footer_logo {
  display: block;
  margin-bottom: 15px;
}
.footer_main .footer-social .icon_small:hover {
  opacity: 0.5;
}
.footer_main .button, .footer_main .button_alt {
  margin-bottom: 20px;
}
.footer_main p {
  margin-top: 20px;
  font-size: 13px;
}

.footer_nav {
  color: #A3A3A3;
}
.footer_nav ul {
  margin-bottom: 30px;
}
@media screen and (min-width: 0em) and (max-width: 29.9375em) {
  .footer_nav ul {
    padding-left: 0.625rem;
    padding-right: 0.625rem;
    width: 50%;
    float: left;
  }
}
@media screen and (min-width: 0em) and (max-width: 29.9375em) and (min-width: 40em) {
  .footer_nav ul {
    padding-left: 0.9375rem;
    padding-right: 0.9375rem;
  }
}
@media screen and (min-width: 0em) and (max-width: 29.9375em) {
  .footer_nav ul:last-child:not(:first-child) {
    float: right;
  }
  .footer_nav ul:last-child:last-child {
    float: left;
  }
  .footer_nav ul:nth-child(2n+1) {
    clear: left;
  }
}
@media screen and (min-width: 30em) and (max-width: 39.9375em) {
  .footer_nav ul {
    padding-left: 0.625rem;
    padding-right: 0.625rem;
    width: 33.3333333333%;
    float: left;
  }
}
@media screen and (min-width: 30em) and (max-width: 39.9375em) and (min-width: 40em) {
  .footer_nav ul {
    padding-left: 0.9375rem;
    padding-right: 0.9375rem;
  }
}
@media screen and (min-width: 30em) and (max-width: 39.9375em) {
  .footer_nav ul:last-child:not(:first-child) {
    float: right;
  }
  .footer_nav ul:last-child:last-child {
    float: left;
  }
  .footer_nav ul:nth-child(3n+1) {
    clear: left;
  }
}
@media screen and (min-width: 40em) and (max-width: 63.9375em) {
  .footer_nav ul {
    padding-left: 0.625rem;
    padding-right: 0.625rem;
    width: 33.3333333333%;
    float: left;
  }
}
@media screen and (min-width: 40em) and (max-width: 63.9375em) and (min-width: 40em) {
  .footer_nav ul {
    padding-left: 0.9375rem;
    padding-right: 0.9375rem;
  }
}
@media screen and (min-width: 40em) and (max-width: 63.9375em) {
  .footer_nav ul:last-child:not(:first-child) {
    float: right;
  }
  .footer_nav ul:last-child:last-child {
    float: left;
  }
  .footer_nav ul:nth-child(3n+1) {
    clear: left;
  }
}
@media screen and (min-width: 64em) {
  .footer_nav ul {
    padding-left: 0.625rem;
    padding-right: 0.625rem;
    width: 20%;
    float: left;
  }
}
@media screen and (min-width: 64em) and (min-width: 40em) {
  .footer_nav ul {
    padding-left: 0.9375rem;
    padding-right: 0.9375rem;
  }
}
@media screen and (min-width: 64em) {
  .footer_nav ul:last-child:not(:first-child) {
    float: right;
  }
  .footer_nav ul:last-child:last-child {
    float: left;
  }
}
.footer_nav li {
  margin-bottom: 10px;
}
.footer_nav li:first-child {
  color: white;
}
.footer_nav a {
  color: currentColor;
  text-decoration: none;
}

/**
 * Sub Nav
 */
.sub-nav {
  background-color: #F4F4F4;
  padding: 30px 0;
  margin-bottom: 30px;
}

.subnav_link {
  color: #A3A3A3;
}
.active .subnav_link, .subnav_link.active {
  color: #333333;
}

/**
 * Page content
 */
.site-header.fixed + .page-content {
  margin-top: 100px;
}

.page-heading {
  font-size: 20px;
}

.post-list {
  margin-left: 0;
  list-style: none;
}
.post-list > li {
  margin-bottom: 30px;
}

.post-meta {
  font-size: 14px;
  color: #828282;
}

.post-link {
  display: block;
  font-size: 24px;
}

/**
 * Posts
 */
.post-header {
  background-color: #666666;
}

.post-hero.hero-about {
  background: url("../img/hero-about.svg") right no-repeat;
}
.post-hero.hero-community {
  background: url("../img/hero-community.svg") right no-repeat;
}
.post-hero.hero-documentation {
  background: url("../img/hero-documentation.svg") right no-repeat;
}
.post-hero.hero-releases {
  background: url("../img/hero-releases.svg") right no-repeat;
}
.post-hero.hero-support {
  background: url("../img/hero-support.svg") right no-repeat;
}
.post-hero {
  padding: 60px 0;
}

.post-title {
  color: white;
  margin-bottom: 0;
}
@media screen and (min-width: 40em) {
  .post-title {
    font-size: 36px;
  }
}

.post-subtitle {
  color: white;
}

.security_post {
  border-top: 1px solid #B5C3C6;
}

.security_post_date {
  display: inline-block;
  margin-right: 30px;
}

.base_padding {
  padding: 30px;
}

.sm_padding {
  padding: 20px;
}

.base_padding_v {
  padding-top: 30px;
  padding-bottom: 30px;
}

.base_padding_h {
  padding-left: 30px;
  padding-right: 30px;
}

.base_padding_l {
  padding-left: 30px;
}

.base_padding_r {
  padding-right: 30px;
}

.base_margin_b {
  margin-bottom: 30px;
}

.lg_padding_v {
  padding-top: 90px;
  padding-bottom: 90px;
}

.lg_padding_h {
  padding-left: 30px;
  padding-right: 30px;
}
@media screen and (min-width: 40em) {
  .lg_padding_h {
    padding-left: 90px;
    padding-right: 90px;
  }
}

.home_hero {
  padding-top: 60px;
}
@media screen and (min-width: 40em) {
  .home_hero {
    padding-top: 150px;
  }
}
.home_hero .button + .button, .home_hero .button_alt + .button, .home_hero .button + .button_alt, .home_hero .button_alt + .button_alt {
  margin-left: calc(30px / 2);
}
.home_hero .wave {
  margin-bottom: 30px;
}
@media screen and (min-width: 40em) {
  .home_hero .row {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
  .home_hero .columns {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
  .home_hero .home_hero_block {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .home_hero img:last-of-type {
    margin-top: auto;
  }
}
.home_hero .columns:nth-child(even) .fish-icon {
  animation-delay: 2.5s;
  -webkit-animation-delay: 2.5s;
}
.home_hero .columns:nth-child(even) .fish-right {
  animation-delay: 3.5s;
  -webkit-animation-delay: 3.5s;
}

.home_hero_block {
  position: relative;
  margin-bottom: 30px;
}

.poke_out {
  margin-bottom: 30px;
  z-index: 10;
  position: relative;
}
@media screen and (min-width: 40em) {
  .poke_out {
    margin-top: -105px;
  }
}

.block_shadow {
  box-shadow: 5px 5px 0 0 rgb(218.75, 245.3333333333, 247.75);
}

.home_hero_block_overlay {
  position: absolute;
  z-index: 20;
  left: -50px;
  right: -50px;
  top: -80px;
  bottom: -50px;
  background: white;
  padding: 30px;
  display: block;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  opacity: 0;
  transform: translateY(-50px);
  visibility: hidden;
  transition: all 350ms;
}
.active .home_hero_block_overlay {
  transform: none;
  opacity: 1;
  visibility: visible;
}

@-webkit-keyframes fishy {
  0% {
    -webkit-transform: skew(15deg) rotate(5deg) translate(-10px, 10px);
    transform: skew(15deg) rotate(5deg) translate(-10px, 10px);
  }
  33% {
    -webkit-transform: none;
    transform: none;
  }
  66% {
    -webkit-transform: skew(-15deg) rotate(-5deg) translate(10px, -10px);
    transform: skew(-15deg) rotate(-5deg) translate(10px, -10px);
  }
  100% {
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fishy {
  0% {
    -webkit-transform: skew(15deg) rotate(5deg) translate(-10px, 10px);
    transform: skew(15deg) rotate(5deg) translate(-10px, 10px);
  }
  33% {
    -webkit-transform: none;
    transform: none;
  }
  66% {
    -webkit-transform: skew(-15deg) rotate(-5deg) translate(10px, -10px);
    transform: skew(-15deg) rotate(-5deg) translate(10px, -10px);
  }
  100% {
    -webkit-transform: none;
    transform: none;
  }
}
.fish-icon {
  -webkit-animation-name: fishy;
  animation-name: fishy;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-direction: alternate;
  animation-direction: alternate;
  -webkit-animation-duration: 10s;
  animation-duration: 10s;
  -webkit-backface-visibility: hidden;
  position: absolute;
  top: 0;
  width: 30%;
  right: 50%;
  top: 30px;
  transition: all 350ms;
}
@media screen and (min-width: 40em) {
  .fish-icon {
    top: -15px;
  }
}
.active .fish-icon {
  top: -150px;
  z-index: 21;
  right: 100%;
}

.fish-right {
  -webkit-animation-direction: alternate-reverse;
  animation-direction: alternate-reverse;
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
  left: 50%;
  right: auto;
}
.active .fish-right {
  top: -150px;
  z-index: 21;
  left: 100%;
}

.home_support_block p {
  margin-bottom: 60px;
}
@media screen and (min-width: 40em) {
  .home_support_block .columns:first-child {
    border-right: 1px solid #505f66;
  }
}

@media screen and (min-width: 64em) {
  .inner_padded_blocks .inner {
    padding-left: 60px;
  }
  .inner_padded_blocks .columns:first-child .inner {
    padding-right: 60px;
    padding-left: 0;
  }
}

.about_stats_bg {
  background-color: #F4F4F4;
  padding: 30px 30px 0;
  margin-bottom: 60px;
}

.about_stats_tabs {
  padding-top: 30px;
}
.about_stats_tabs .stat-tab {
  padding-left: 0.625rem;
  padding-right: 0.625rem;
}
@media screen and (min-width: 40em) {
  .about_stats_tabs .stat-tab {
    padding-left: 0.9375rem;
    padding-right: 0.9375rem;
  }
}
.about_stats_tabs .stat-tab {
  width: 20%;
  float: left;
}
.about_stats_tabs .stat-tab:last-child:not(:first-child) {
  float: right;
}
.about_stats_tabs .stat-tab {
  height: 90px;
  border-left: 6px solid #B5C3C6;
  color: #333333;
  padding: 15px;
  text-transform: uppercase;
  font-family: Montserrat;
  font-size: 14px;
}
.about_stats_tabs .stat-tab.active {
  border-left: 6px solid #01A5E0;
  background-color: white;
}

.stats-head, .stats-table {
  width: 80%;
  margin: 0 auto;
}

.stats-head {
  text-align: center;
  padding-bottom: 20px;
}

.stats-table {
  color: #666666;
  font-family: Montserrat;
  font-size: 13px;
}
.stats-table td {
  padding: 10px 20px;
}
.stats-table tr:nth-child(odd) {
  background-color: #F4F4F4;
}

.about_team_block {
  background-color: #093448;
  padding-top: 60px;
  margin-top: -60px;
}

.eol-alert-img {
  padding-top: 7.5px;
  padding-left: 0.625rem;
  padding-right: 0.625rem;
}
@media screen and (min-width: 40em) {
  .eol-alert-img {
    padding-left: 0.9375rem;
    padding-right: 0.9375rem;
  }
}
.eol-alert-img {
  width: 12.5%;
  float: left;
}
.eol-alert-img:last-child:not(:first-child) {
  float: right;
}

.eol-alert-p {
  padding-left: 0.625rem;
  padding-right: 0.625rem;
}
@media screen and (min-width: 40em) {
  .eol-alert-p {
    padding-left: 0.9375rem;
    padding-right: 0.9375rem;
  }
}
.eol-alert-p {
  width: 87.5%;
  float: left;
}
.eol-alert-p:last-child:not(:first-child) {
  float: right;
}

.older-releases {
  color: #666666;
}
.older-releases a {
  color: #333333;
}
.older-releases .columns {
  padding-top: 10px;
  padding-bottom: 10px;
}

input[type=text],
select,
textarea {
  background: #F4F4F4;
  border: 0;
  padding: 15px;
}
input[type=text].search,
select.search,
textarea.search {
  background: #F4F4F4 url("../img/search.svg") no-repeat right;
  padding-right: 40px;
  width: 300px;
  max-width: 100%;
  border-radius: 6px;
  border: 1px solid #E1E7E8;
}

select {
  height: 50px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("../img/selectarrows.svg");
  background-size: 20px;
  background-repeat: no-repeat;
  background-position: calc(100% - 8px) center;
  padding-right: 30px;
  border: 1px solid #E1E7E8;
}

.modules_header {
  overflow-x: hidden;
}

.modules_search {
  text-align: right;
}

.modules_filter_list li {
  padding: 10px;
}
.modules_filter_list li:not(.active) {
  color: #B5C3C6;
}
.modules_filter_list li:not(.active) .module_icon {
  color: #B5C3C6;
}

.module_grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(15rem, 1fr));
  grid-column-gap: 2rem;
  padding: 0rem 1rem 0rem 1rem;
}

.module {
  margin-bottom: 30px;
}
.module > .link {
  width: 100%;
  min-height: 160px;
}
.module.active > .link {
  background-color: currentColor;
  border-color: currentColor;
  position: relative;
}
.module.active > .link .module_category {
  color: white;
}
.module.active > .link:after {
  content: "";
  background: currentColor;
  width: 16px;
  height: 16px;
  position: absolute;
  top: calc(100% - 8px);
  left: calc(50% - 8px);
  -webkit-transform: rotate(45deg) skewX(20deg) skewY(20deg);
  -ms-transform: rotate(45deg) skewX(20deg) skewY(20deg);
  transform: rotate(45deg) skewX(20deg) skewY(20deg);
}
.module.active > .link .module_icon svg * {
  fill: white;
}
.module:not(.active) > .link {
  margin-bottom: 30px !important;
}

.module_details {
  position: absolute;
  width: 100%;
  left: 0;
  margin-top: 60px;
  border-top: 1px solid #E1E7E8;
  border-bottom: 1px solid #E1E7E8;
  opacity: 0;
  visibility: hidden;
  background: var(--neutral10);
  transition: opacity 100ms 100ms;
}
.module.active .module_details {
  height: auto;
  opacity: 1;
  visibility: visible;
}
.release_details:not(.release_active) .module.active .module_details {
  opacity: 0;
}
.module_details .wrapper, .module_details .swiper-horizontal, .module_details .post-hero {
  height: 100%;
}
.module_details ul {
  margin: 0;
  list-style-type: none;
}
.module_details .link .h5, .module_details .link .social-entry .label, .social-entry .module_details .link .label, .module_details .link .footer_nav li:first-child, .footer_nav .module_details .link li:first-child, .module_details .link .subnav_link, .module_details .link .h6 {
  margin: 0;
}
.module_details .button, .module_details .button_alt {
  margin-top: 30px;
}

.module_title {
  display: block;
  word-wrap: break-word;
}

.module_category {
  width: calc(100% - 35px);
  color: currentColor;
}

.module_icon {
  width: 30px;
  display: inline-block;
  vertical-align: middle;
}
.module_icon svg * {
  fill: currentColor;
}

.module_details_linkwrap {
  padding: 0 20px;
}

#map {
  width: 100%;
  min-height: 700px;
}

.mapboxgl-canvas {
  left: 0;
}

.mapboxgl-ctrl-attrib {
  display: none;
}

.release_note {
  border-bottom: 1px solid #E1E7E8;
}

.release_module_list {
  list-style: none;
}
.release_module_list a {
  text-decoration: none;
}
.release_module_list a:hover {
  text-decoration: underline;
}

.release_module_icon {
  width: 20px;
  height: 20px;
  display: inline-block;
  vertical-align: middle;
}

.release_module_item {
  margin-top: 10px;
}

.release_module_item_inner {
  position: relative;
}

.release_module_sub_items {
  list-style-type: none;
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 100%;
  transform: translateY(-50%);
  background: #F4F4F4;
  border: 1px solid #E1E7E8;
  padding: 10px 13.3333333333px;
  display: none;
  cursor: pointer;
  margin-left: 20px;
}
.release_module_item:hover .release_module_sub_items {
  display: block;
}
.release_module_sub_items:after {
  content: "";
  height: 20px;
  width: 20px;
  position: absolute;
  z-index: 2;
  background: #F4F4F4;
  border-bottom: 1px solid #E1E7E8;
  border-left: 1px solid #E1E7E8;
  transform: rotate(45deg);
  left: -10px;
  top: calc(50% - 10px);
}

.highlight_point {
  background: rgb(231.25, 231.25, 231.25);
}

.release_features span, .release_defects span {
  padding: 0 5px;
}

/**
 * Man pages
 */
.man_page dt {
  font-weight: bold;
  margin-left: 40px;
}
.man_page dd {
  margin-left: 80px;
}

.social-header {
  background-color: white;
  padding: 30px;
  text-align: left;
  border-bottom: 1px solid #E1E7E8;
}
.social-header h5 {
  float: right;
  color: #A3A3A3;
  padding-top: 15px;
}
.social-header::before, .social-header::after {
  content: " ";
  display: table;
}
.social-header::after {
  clear: both;
}

.social-block {
  background-color: white;
  text-align: left;
  padding: 0 30px 15px;
  margin-bottom: 30px;
  height: 264px;
  overflow-y: scroll;
}

.social-entry {
  border-bottom: 1px solid #E1E7E8;
  padding: 30px 0;
  word-wrap: break-word;
  font-size: 16px;
}
.social-entry .label {
  color: #A3A3A3;
  background-color: #F4F4F4;
  display: inline-block;
  padding: 10px;
  margin-bottom: 15px;
}
.social-entry .label .icon {
  display: inline-block;
  width: 16px;
  height: 16px;
  vertical-align: sub;
  margin-right: 10px;
}
.social-entry .label .icon.time {
  content: url(../img/label-time.svg);
}
.social-entry .label .icon.comment {
  content: url(../img/label-comment.svg);
}
.social-entry .label .icon.upload {
  content: url(../img/label-upload.svg);
}

.swiper-horizontal {
  position: relative;
}

.swiper-horizontal .swiper_item_inner .swiper_item_icon {
  display: inline-block;
  width: auto;
}
.swiper-horizontal .swiper_item_inner .swiper_item_icon img {
  width: auto;
  display: inline-block;
}

.swiper_item_inner {
  text-align: center;
}

.swiper_item_icon {
  display: inline-block;
  vertical-align: middle;
  margin-right: 30px;
}
.swiper_item_icon + .swiper_item_text {
  display: inline-block;
  vertical-align: middle;
}

.swiper_item_text {
  text-align: left;
}
.swiper_item_text img .security {
  width: auto;
  display: inline-block;
}

/**
 * Syntax highlighting styles
 */
.highlight {
  background: #fff;
}
.highlighter-rouge .highlight {
  background: #F4F4F4;
}
.highlight .c {
  color: #998;
  font-style: italic;
}
.highlight .err {
  color: #a61717;
  background-color: #e3d2d2;
}
.highlight .k {
  font-weight: bold;
}
.highlight .o {
  font-weight: bold;
}
.highlight .cm {
  color: #998;
  font-style: italic;
}
.highlight .cp {
  color: #999;
  font-weight: bold;
}
.highlight .c1 {
  color: #998;
  font-style: italic;
}
.highlight .cs {
  color: #999;
  font-weight: bold;
  font-style: italic;
}
.highlight .gd {
  color: #000;
  background-color: #fdd;
}
.highlight .gd .x {
  color: #000;
  background-color: #faa;
}
.highlight .ge {
  font-style: italic;
}
.highlight .gr {
  color: #a00;
}
.highlight .gh {
  color: #999;
}
.highlight .gi {
  color: #000;
  background-color: #dfd;
}
.highlight .gi .x {
  color: #000;
  background-color: #afa;
}
.highlight .go {
  color: #888;
}
.highlight .gp {
  color: #555;
}
.highlight .gs {
  font-weight: bold;
}
.highlight .gu {
  color: #aaa;
}
.highlight .gt {
  color: #a00;
}
.highlight .kc {
  font-weight: bold;
}
.highlight .kd {
  font-weight: bold;
}
.highlight .kp {
  font-weight: bold;
}
.highlight .kr {
  font-weight: bold;
}
.highlight .kt {
  color: #458;
  font-weight: bold;
}
.highlight .m {
  color: #099;
}
.highlight .s {
  color: #d14;
}
.highlight .na {
  color: #008080;
}
.highlight .nb {
  color: #0086B3;
}
.highlight .nc {
  color: #458;
  font-weight: bold;
}
.highlight .no {
  color: #008080;
}
.highlight .ni {
  color: #800080;
}
.highlight .ne {
  color: #900;
  font-weight: bold;
}
.highlight .nf {
  color: #900;
  font-weight: bold;
}
.highlight .nn {
  color: #555;
}
.highlight .nt {
  color: #000080;
}
.highlight .nv {
  color: #008080;
}
.highlight .ow {
  font-weight: bold;
}
.highlight .w {
  color: #bbb;
}
.highlight .mf {
  color: #099;
}
.highlight .mh {
  color: #099;
}
.highlight .mi {
  color: #099;
}
.highlight .mo {
  color: #099;
}
.highlight .sb {
  color: #d14;
}
.highlight .sc {
  color: #d14;
}
.highlight .sd {
  color: #d14;
}
.highlight .s2 {
  color: #d14;
}
.highlight .se {
  color: #d14;
}
.highlight .sh {
  color: #d14;
}
.highlight .si {
  color: #d14;
}
.highlight .sx {
  color: #d14;
}
.highlight .sr {
  color: #009926;
}
.highlight .s1 {
  color: #d14;
}
.highlight .ss {
  color: #990073;
}
.highlight .bp {
  color: #999;
}
.highlight .vc {
  color: #008080;
}
.highlight .vg {
  color: #008080;
}
.highlight .vi {
  color: #008080;
}
.highlight .il {
  color: #099;
}

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