@charset "UTF-8";
/*!
 * So Simple Jekyll Theme 3.2.0
 * Copyright 2013-2019 Michael Rose - mademistakes.com | @mmistakes
 * Free for personal and commercial use under the MIT license
 * https://github.com/mmistakes/so-simple-theme/blob/master/LICENSE
*/
/* ==========================================================================
   Color Functions
   ========================================================================== */
/*
   EM conversion
   ========================================================================== */
/*
   Compass YIQ Color Contrast
   https://github.com/easy-designs/yiq-color-contrast
   ========================================================================== */
/* ==========================================================================
   Variables
   ========================================================================== */
/* Breakpoint widths */
@media screen and (min-width: 540px) {
  .container {
    max-width: inherit;
  }
}
@media screen and (min-width: 820px) {
  .container {
    max-width: 820px;
  }
}
@media screen and (min-width: 960px) {
  .container {
    max-width: 960px;
  }
}
@media screen and (min-width: 1140px) {
  .container {
    max-width: 1140px;
  }
}
@media screen and (min-width: 1333px) {
  .container {
    max-width: 1333px;
  }
}
/* Fluid type */
/* Calculate Modular Scale */
/* small */
/* large */
/* Heading 1 */
/* Heading 2 */
/* Heading 3 */
/* Heading 4 */
/* Heading 5 */
/* Heading 6 */
/* Font Families */
/* YIQ color contrast */
/* Brands */
/* Max-width of the main content */
/* Max-width of the main content + sidebar */
/* Site logo */
/* Border radius */
/* Global transition */
/* ==========================================================================
   Clearfix Mixin
   ========================================================================== */
/*
  * Provides an easy way to include a clearfix for containing floats.
  * link http://cssmojo.com/latest_new_clearfix_so_far/
  *
  * example scss - Usage
  *
  * .element {
  *   @include clearfix;
  * }
  *
  * example css - CSS Output
  *
  * .element::after {
  *   clear: both;
  *   content: "";
  *   display: table;
  * }
*/
/* ==========================================================================
   Float Mixins
   ========================================================================== */
/* ==========================================================================
   Image Mixins
   - Responsive image
   - Retina image
   ========================================================================== */
/*
   Responsive image
   Keep images from scaling beyond the width of their parents.
   ========================================================================== */
/*
   Retina image
   Short retina mixin for setting background-image and -size.
   ========================================================================== */
/* ==========================================================================
   List Mixins
   ========================================================================== */
/* ==========================================================================
   Text Truncate Mixin
   Requires inline-block or block for proper styling
   ========================================================================== */
/*! Lity - v3.0.0-dev - 2017-07-17
* http://sorgalla.com/lity/
* Copyright (c) 2015-2017 Jan Sorgalla; Licensed MIT */
.lity {
  z-index: 9990;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  white-space: nowrap;
  background: #0b0b0b;
  background: rgba(0, 0, 0, 0.9);
  outline: none !important;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.lity.lity-opened {
  opacity: 1;
}

.lity.lity-closed {
  opacity: 0;
}

.lity * {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.lity-wrap {
  z-index: 9990;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  text-align: center;
  outline: none !important;
}

.lity-wrap:before {
  content: "";
  display: inline-block;
  height: 100%;
  vertical-align: middle;
  margin-right: -0.25em;
}

.lity-loader {
  z-index: 9991;
  color: #fff;
  position: absolute;
  top: 50%;
  margin-top: -0.8em;
  width: 100%;
  text-align: center;
  font-size: 14px;
  font-family: Arial, Helvetica, sans-serif;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.lity-loading .lity-loader {
  opacity: 1;
}

.lity-container {
  z-index: 9992;
  position: relative;
  text-align: left;
  vertical-align: middle;
  display: inline-block;
  white-space: normal;
  max-width: 100%;
  max-height: 100%;
  outline: none !important;
}

.lity-content {
  z-index: 9993;
  width: 100%;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  -o-transition: -o-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease, -o-transform 0.3s ease;
}

.lity-loading .lity-content,
.lity-closed .lity-content {
  -webkit-transform: scale(0.8);
  -ms-transform: scale(0.8);
  -o-transform: scale(0.8);
  transform: scale(0.8);
}

.lity-content:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  display: block;
  right: 0;
  width: auto;
  height: auto;
  z-index: -1;
  -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
}

.lity-close {
  z-index: 9994;
  width: 35px;
  height: 35px;
  /* Change to position: absolute to display close button inside content container */
  position: fixed;
  right: 0;
  top: 0;
  -webkit-appearance: none;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  padding: 0;
  color: #fff;
  font-style: normal;
  font-size: 35px;
  font-family: Arial, Baskerville, monospace;
  line-height: 35px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
  border: 0;
  background: none;
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.lity-close::-moz-focus-inner {
  border: 0;
  padding: 0;
}

.lity-close:hover,
.lity-close:focus,
.lity-close:active,
.lity-close:visited {
  text-decoration: none;
  text-align: center;
  padding: 0;
  color: #fff;
  font-style: normal;
  font-size: 35px;
  font-family: Arial, Baskerville, monospace;
  line-height: 35px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
  border: 0;
  background: none;
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.lity-close:active {
  top: 1px;
}

/* Image */
.lity-image img {
  max-width: 100%;
  display: block;
  line-height: 0;
  border: 0;
}

/* iFrame */
.lity-iframe .lity-container {
  width: 100%;
  max-width: 964px;
}

.lity-iframe-container {
  width: 100%;
  height: 0;
  padding-top: 56.25%;
  overflow: auto;
  pointer-events: auto;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-overflow-scrolling: touch;
}

.lity-iframe-container iframe {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #000;
}

.lity-hide {
  display: none;
}

/* Core Styles */
/*! normalize.css v5.0.0 | MIT License | github.com/necolas/normalize.css */
/**
 * 1. Change the default font family in all browsers (opinionated).
 * 2. Prevent adjustments of font size after orientation changes in
 *    IE on Windows Phone and in iOS.
 */
/* Document
   ========================================================================== */
html {
  font-family: "Open Sans", "Verdana", "Helvetica", "Arial", sans-serif; /* 1 */
  box-sizing: border-box;
  -ms-text-size-adjust: 100%; /* 2 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

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

/* Sections
   ========================================================================== */
/**
 * Remove the margin in all browsers (opinionated).
 */
body {
  margin: 0;
  line-height: 1.5;
}

/**
 * Add the correct display in IE 9-.
 */
article,
aside,
footer,
header,
nav,
section {
  display: block;
}

/**
 * Remove margin padding.
 *
 */
h1,
h2,
h3,
h4,
h5,
h6,
p,
pre,
blockquote,
dl,
table,
address {
  margin-top: 0;
  margin-bottom: 1.5rem;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
  font-size: 2rem;
}

/**
 * Adjust heading line-height
 *
 */
h1,
h2,
h3,
h4 {
  line-height: 1.2;
}

/* Grouping content
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 * 1. Add the correct display in IE.
 */
figcaption,
figure,
main { /* 1 */
  display: block;
}

/**
 * Reset the margins.
 */
figure {
  margin: 1rem 0 1.5rem;
}

/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  height: 0; /* 1 */
  overflow: visible; /* 2 */
  box-sizing: content-box; /* 1 */
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 * 3. Add scrollbars to wide code blocks.
 */
pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1rem; /* 2 */
  overflow-x: auto; /* 3 */
}

/* Text-level semantics
   ========================================================================== */
/**
 * 1. Remove the gray background on active links in IE 10.
 * 2. Remove gaps in links underline in iOS 8+ and Safari 8+.
 */
a {
  background-color: transparent; /* 1 */
  -webkit-text-decoration-skip: objects; /* 2 */
}

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

/**
 * 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: none; /* 1 */
  text-decoration: underline; /* 2 */
  text-decoration: underline dotted; /* 2 */
}

/**
 * Prevent the duplicate application of `bolder` by the next rule in Safari 6.
 */
b,
strong {
  font-weight: inherit;
  font-weight: bolder; /* Add the correct font weight in Chrome, Edge, and Safari. */
}

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

/**
 * Add the correct font style in Android 4.3-.
 */
dfn {
  font-style: italic;
}

/**
 * Add the correct background and color in IE 9-.
 */
mark {
  background-color: #ff0;
  color: #000;
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Change the margin and padding and add a line rule on the left-side in all
 * browsers (opinionated).
 */
blockquote {
  margin-right: 0;
  margin-left: 0;
  padding: 2em 3em;
  border-left: solid 0.5em;
}
blockquote *:last-child {
  margin-bottom: 0;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  position: relative;
  font-size: 75%;
  line-height: 0;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/**
 * Remove margin
 */
ul,
ol {
  margin-top: 0;
}

/* Embedded content
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 */
audio,
video {
  display: inline-block;
}

/**
 * Add the correct display in iOS 4-7.
 */
audio:not([controls]) {
  display: none;
  height: 0;
}

img {
  /* Responsive images (ensure images don't scale beyond their parents) */
  max-width: 100%; /* part 1: Set a maximum relative to the parent*/
  width: auto\9 ; /* IE7-8 need help adjusting responsive images*/
  height: auto; /* part 2: Scale the height according to the width, otherwise you get stretching*/
  border-style: none; /* Remove the border on images inside links in IE 10-.*/
  vertical-align: middle;
  -ms-interpolation-mode: bicubic;
}

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

/* Forms
   ========================================================================== */
/**
 * 1. Change the font styles in all browsers (opinionated).
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  margin: 0; /* 2 */
  font-family: "Open Sans", "Verdana", "Helvetica", "Arial", sans-serif; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input { /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select { /* 1 */
  text-transform: none;
}

/**
 * 1. Prevent a WebKit bug where (2) destroys native `audio` and `video`
 *    controls in Android 4.
 * 2. Correct the inability to style clickable types in iOS and Safari.
 */
button,
html [type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button; /* 2 */
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  padding: 0;
  border-style: none;
}

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

/**
 * Change the border, margin, and padding in all browsers (opinionated).
 */
fieldset {
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
  border: 1px solid #c0c0c0;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  padding: 0; /* 3 */
  color: inherit; /* 2 */
  white-space: normal; /* 1 */
  box-sizing: border-box; /* 1 */
}

/**
 * 1. Add the correct display in IE 9-.
 * 2. Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  display: inline-block; /* 1 */
  vertical-align: baseline; /* 2 */
}

/**
 * Remove the default vertical scrollbar in IE.
 */
textarea {
  overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10-.
 * 2. Remove the padding in IE 10-.
 */
[type=checkbox],
[type=radio] {
  padding: 0; /* 2 */
  box-sizing: border-box; /* 1 */
}

/**
 * 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] {
  outline-offset: -2px; /* 2 */
  -webkit-appearance: textfield; /* 1 */
}

/**
 * Remove the inner padding and cancel buttons in Chrome and Safari on macOS.
 */
[type=search]::-webkit-search-cancel-button,
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  font: inherit; /* 2 */
  -webkit-appearance: button; /* 1 */
}

/* Interactive
   ========================================================================== */
/*
 * Add the correct display in IE 9-.
 * 1. Add the correct display in Edge, IE, and Firefox.
 */
details,
menu {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/* Scripting
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 */
canvas {
  display: inline-block;
}

/**
 * Add the correct display in IE.
 */
template {
  display: none;
}

/* Hidden
   ========================================================================== */
/**
 * Add the correct display in IE 10-.
 */
[hidden] {
  display: none;
}

/* ==========================================================================
   Base elements
   ========================================================================== */
blockquote footer,
q footer {
  font-size: 80%;
  font-style: normal;
}
blockquote footer::before,
q footer::before {
  padding-right: 0.25rem;
  content: "—";
}

code,
kbd,
samp,
pre {
  font-family: Menlo, Consolas, Monaco, "Courier New", Courier, monospace;
}

kbd {
  display: inline-block;
  margin: 0 0.125em;
  padding: 0.125em 0.5em;
  color: #000;
  border: 1px solid rgb(204, 204, 204);
  border-radius: 3px;
  background-color: rgb(247, 247, 247);
  font-size: 85%;
  text-shadow: 0 1px 0 #fff;
  -webkit-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25), inset 0 0 0 2px #fff;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25), inset 0 0 0 2px #fff;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Roboto", sans-serif;
  text-rendering: optimizeLegibility; /* enable common ligatures and kerning */
}

.hidden {
  display: none;
}

dt {
  font-weight: bold;
}
dt:not(:first-child) {
  margin-top: 1rem;
}

dd {
  margin: 0;
}

figcaption {
  margin: 0.5rem 0;
  font-size: 80%;
}

a {
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

/* ==========================================================================
   Tables
   ========================================================================== */
table {
  width: 100%;
  border-collapse: collapse;
  /* For Firefox to horizontally scroll wider tables */
  word-break: normal;
  word-break: keep-all;
}

th,
td {
  border-bottom: 1px solid;
}

th {
  padding: 0.5em;
  font-weight: bold;
  text-align: left;
}

td {
  padding: 0.5em;
}

tr,
td,
th {
  vertical-align: middle;
}

/* Components */
/* ==========================================================================
   Site-wide
   ========================================================================== */
html {
  overflow-y: overlay;
}

::-webkit-scrollbar {
  width: 24px;
}

::-webkit-scrollbar-track {
  background-color: transparent;
}

::-webkit-scrollbar-thumb {
  background-color: #d6dee1;
  border-radius: 24px;
  border: 8px solid transparent;
  background-clip: content-box;
}

.d-none {
  display: none !important;
}

.skip-links ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

#menu-toggle {
  display: block;
  margin: 0;
  padding: 0.25em 0.75em 0.5em;
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
}
@media (min-width: 51.25em) {
  #menu-toggle {
    display: none;
  }
}

.site-nav {
  display: none;
  margin-bottom: 1em;
  text-align: center;
}
.site-nav ul {
  display: block;
  margin: 0;
  padding: 0.25em 0.75em;
  list-style: none;
  border-radius: 0 0 0.5rem 0.5rem;
}
@media (min-width: 51.25em) {
  .site-nav ul {
    display: inline-block;
  }
}
.site-nav li {
  display: inline-block;
  font-size: 0.75rem;
}
.site-nav a {
  display: block;
  padding: 0.5em 0.75em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid;
  border-radius: 0.25rem;
  transition: all ease 0.2s;
  box-shadow: inset 0px 3px 5px 0px rgba(0, 0, 0, 0.25);
}
.site-nav a:hover {
  transform: translateY(3px);
  box-shadow: inset 0px 5px 10px 2px rgba(0, 0, 0, 0.15);
}
@media (min-width: 51.25em) {
  .site-nav {
    display: block;
  }
}
.site-nav.js-menu-is-open {
  display: block;
  -webkit-animation-name: initial;
  animation-name: initial;
}

.header-block {
  display: flex;
  border-bottom: 1px solid var(--colour-trim-grey);
  margin-bottom: 24px;
}

h1.block-header,
h1.block-header-nav {
  margin-top: 22px;
  margin-bottom: 0;
  font-size: 32px;
}

.block-header {
  padding-bottom: 22px;
}

.nav-block {
  display: inline-block;
  width: 80px;
  height: 80px;
  font-size: 32px;
  text-align: center;
  cursor: pointer;
}

.btn-standard {
  width: 200px;
  margin-bottom: 24px;
  margin-right: 8px;
}

.btn-dp {
  height: 32px !important;
  border-radius: 0 !important;
  text-transform: none !important;
  cursor: pointer !important;
  background-color: var(--colour-bg);
  color: var(--colour-bg-contrast);
  border-color: var(--colour-bg-contrast);
}

.btn-dp:hover {
  text-decoration: underline !important;
}

.btn-dp:focus {
  border-width: 2px;
}

.btn-dp:disabled {
  color: var(--colour-dark-grey);
  background-color: var(--colour-passive-grey);
  border: var(--colour-dark-grey);
  pointer-events: none;
  cursor: not-allowed;
  text-decoration: none !important;
}

.masthead {
  clear: both;
  margin-bottom: 3em;
  text-align: center;
}
.masthead::after {
  clear: both;
  content: "";
  display: table;
}

.site-title {
  margin: 0.5em 0 0;
  padding: 0;
  font-weight: 700;
}
.site-title a {
  text-decoration: none;
}

.site-description {
  margin-bottom: 1em;
  font-family: "Open Sans", "Verdana", "Helvetica", "Arial", sans-serif;
  font-weight: 400;
  font-style: italic;
}

.site-logo {
  display: inline-block;
  position: relative;
  z-index: 10;
}

.site-logo-img {
  width: 160px;
  height: 0px;
  border: 5px solid;
  border-radius: 160px;
}
@media (min-width: 51.25em) {
  .site-logo-img {
    width: 240px;
    height: 0px;
    border-radius: 240px;
  }
}
@media (min-width: 60em) {
  .site-logo-img {
    width: 320px;
    height: 0px;
    border-radius: 320px;
  }
}

/* Ribbon */
.cr {
  width: 200px;
  padding: 16px;
  position: absolute;
  z-index: 99;
  opacity: 0.95;
  text-align: center;
  color: #fff;
  font-weight: 600;
}

.cr-sticky {
  position: fixed;
}

.cr-link:hover {
  text-decoration: underline;
}

/* Positions */
.cr-top {
  top: 23px;
}

.cr-bottom {
  bottom: 23px;
}

.cr-left {
  left: -50px;
}

.cr-right {
  right: -50px;
}

/* Rotations */
.cr-top.cr-left,
.cr-bottom.cr-right {
  transform: rotate(-45deg);
}

.cr-top.cr-right,
.cr-bottom.cr-left {
  transform: rotate(45deg);
}

@media screen and (max-width: 1600px) {
  .cr {
    width: 100px;
    padding: 4px;
    font-size: 12px;
  }
  .cr-top {
    top: 4px;
  }
  .cr-bottom {
    bottom: 4px;
  }
  .cr-left {
    left: -36px;
  }
  .cr-right {
    right: -36px;
  }
}
@media screen and (max-width: 820px) {
  .cr {
    width: 100px;
    padding: 2px;
    font-size: 8px;
  }
  .btn-standard {
    width: 176px;
  }
}
@media screen and (max-width: 430px) {
  .cr {
    width: 100%;
    padding: 2px;
    font-size: 8px;
    top: -4px;
    left: 0;
    transform: rotate(0deg) !important;
  }
  .btn-standard {
    width: 160px;
  }
}
/* Colors */
.cr-white {
  background-color: #f0f0f0;
  color: #444;
}

.cr-black {
  background-color: #333;
}

.cr-grey {
  background-color: #999;
}

.cr-blue {
  background-color: #39d;
}

.cr-green {
  background-color: #2c7;
}

.cr-turquoise {
  background-color: #1b9;
}

.cr-purple {
  background-color: #95b;
}

.cr-red {
  background-color: #d0021b;
}

.cr-teal {
  background-color: #007687;
}

.cr-orange {
  background-color: #e82;
}

.cr-yellow {
  background-color: #ec0;
}

.page-tags-container {
  height: 48px;
}

.site-footer {
  clear: both;
  margin: 2em 0;
  padding: 2em 0;
  text-align: center;
}
.site-footer::after {
  clear: both;
  content: "";
  display: table;
}
.site-footer .social-icons {
  margin-bottom: 0.5em;
}
.site-footer .social-icon {
  display: inline-block;
  padding: 0 0.25em;
}

.copyright {
  font-size: 0.75rem;
  margin-top: 8px;
}
.copyright p {
  margin: 0;
  padding: 0;
}

.footnotes {
  margin: 2rem 0;
  padding-top: 1rem;
  border-top: 1px solid;
  font-size: 0.75rem;
}

.more-link {
  font-weight: bold;
  text-decoration: none;
}

.back-to-top {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  text-align: right;
  text-decoration: none;
}

.taxonomy-section {
  margin-bottom: 2em;
  padding-bottom: 1em;
}
.taxonomy-section:not(:last-child) {
  border-bottom: solid 1px;
}
.taxonomy-section + .taxonomy-section {
  margin-top: 2em;
}

.taxonomy-title {
  margin-bottom: 0.5em;
  font-family: "Open Sans", "Verdana", "Helvetica", "Arial", sans-serif;
}

.taxonomy-index {
  display: grid;
  grid-column-gap: 2em;
  grid-template-columns: repeat(2, 1fr);
  margin: 0;
  padding: 0;
  font-family: "Open Sans", "Verdana", "Helvetica", "Arial", sans-serif;
  font-size: 0.9rem;
  list-style: none;
}
@media (min-width: 60em) {
  .taxonomy-index {
    grid-template-columns: repeat(3, 1fr);
  }
}
.taxonomy-index a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0.25em 0;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  color: inherit;
  text-decoration: none;
}
.taxonomy-index + .taxonomy-section {
  margin-top: 3em;
}

.taxonomy-index-list {
  display: grid;
  grid-column-gap: 2em;
  margin: 0;
  padding: 0;
  font-family: "Open Sans", "Verdana", "Helvetica", "Arial", sans-serif;
  font-size: 0.9rem;
  list-style: none;
}
.taxonomy-index-list a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: inherit;
  padding: 0.25em 0;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid;
}
.taxonomy-index-list + .taxonomy-section {
  margin-top: 3em;
}
.taxonomy-index-list .taxonomy-count {
  padding: 15px;
}

.pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  grid-column: 1/-1;
  margin: 2em 0;
  width: 100%;
}
.pagination ul {
  margin: 0 auto;
  padding: 0;
  list-style-type: none;
}
.pagination li {
  display: block;
  float: left;
  margin-left: -1px;
}
.pagination li a {
  display: block;
  margin-bottom: 0.25em;
  padding: 0.5em 1em;
  font-size: 0.75rem;
  font-weight: bold;
  line-height: 1.5;
  text-align: center;
  text-decoration: none;
  border: 1px solid;
  border-radius: 0;
}
.pagination li a.disabled {
  pointer-events: none;
  cursor: not-allowed;
}
.pagination li:first-child {
  margin-left: 0;
}
.pagination li:first-child a {
  border-top-left-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
}
.pagination li:last-child a {
  border-top-right-radius: 0.25rem;
  border-bottom-right-radius: 0.25rem;
}

.search-label {
  width: 40px;
  height: 40px;
  text-indent: -9999px;
}

.search-input {
  margin-bottom: 32px;
  padding: 16px;
  width: 100%;
  border: 1px solid;
  border-radius: 0.25rem;
}

#input-member-search:focus-visible,
#input-desktop-search:focus-visible,
.search-input:focus-visible {
  /* remove default focus style */
  outline: none;
  border: 2px solid;
}

.show {
  visibility: visible !important;
}

#overlay.show {
  opacity: 1;
}

#overlay {
  position: fixed;
  visibility: hidden;
  height: 100%;
  width: 100%;
  z-index: 5000;
  top: 0;
  left: 0;
  padding-top: 25%;
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
  transition: opacity 0.7s ease-in-out;
  -webkit-transition: all 0.7s;
  -moz-transition: all 0.7s;
  transition: all 0.7s;
}

.spinner {
  position: absolute;
  left: calc(50% - 48px);
  top: calc(50% - 48px);
  visibility: hidden;
  height: 96px;
  width: 96px;
  margin: 0px auto;
  opacity: 1 !important;
  -webkit-animation: rotation 1.7s infinite linear;
  -moz-animation: rotation 1.7s infinite linear;
  -o-animation: rotation 1.7s infinite linear;
  animation: rotation 1.7s infinite linear;
  border-left: 12px solid rgba(255, 255, 255, 0.15) !important;
  border-right: 12px solid rgba(255, 255, 255, 0.15) !important;
  border-bottom: 12px solid rgba(255, 255, 255, 0.15) !important;
  border-top: 12px solid rgba(255, 255, 255, 0.8) !important;
  border-radius: 100%;
}

@-webkit-keyframes rotation {
  from {
    -webkit-transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(359deg);
  }
}
@-moz-keyframes rotation {
  from {
    -moz-transform: rotate(0deg);
  }
  to {
    -moz-transform: rotate(359deg);
  }
}
@-o-keyframes rotation {
  from {
    -o-transform: rotate(0deg);
  }
  to {
    -o-transform: rotate(359deg);
  }
}
@keyframes rotation {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(359deg);
  }
}
.spinner:before {
  left: -3.5em;
  -webkit-animation-delay: -0.32s;
  animation-delay: -0.32s;
}

.spinner:after {
  left: 3.5em;
}

.toc-wrapper {
  display: inline-block;
  margin-bottom: 1.5em;
  border: 1px solid;
  border-radius: 0.25rem;
}
.toc-wrapper h2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 0;
  padding: 0.75rem 1rem;
  font-family: "Open Sans", "Verdana", "Helvetica", "Arial", sans-serif;
  font-size: 0.75rem;
  text-transform: uppercase;
  cursor: pointer;
}
.toc-wrapper h2 .toc-toggle-icon {
  margin-left: 1rem;
  -webkit-transition: -webkit-transform 350ms ease;
  transition: -webkit-transform 350ms ease;
  transition: transform 350ms ease;
  transition: transform 350ms ease, -webkit-transform 350ms ease;
}
.toc-wrapper h2.js-toc-is-open .toc-toggle-icon {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}
.toc-wrapper #markdown-toc {
  display: none;
  height: 0;
  margin-bottom: 0;
  padding-left: 2rem;
  overflow: hidden;
  font-size: 0.9rem;
  -webkit-transition: height 350ms ease;
  transition: height 350ms ease;
}
.toc-wrapper #markdown-toc.js-toc-is-open {
  display: block;
  height: auto;
}
.toc-wrapper li {
  padding: 0.3em 0;
  font-family: "Open Sans", "Verdana", "Helvetica", "Arial", sans-serif;
}
.toc-wrapper li a {
  display: inline-block;
  color: inherit;
  font-size: 0.75rem;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px dotted transparent;
}
.toc-wrapper li ol {
  padding-left: 0.5rem;
  list-style-type: lower-roman;
}

.close-icon {
  float: right;
  cursor: pointer;
}

.main-container {
  position: relative;
}

section.carousel-container {
  min-height: 304px;
  padding-bottom: 8px;
}
section.carousel-container .container {
  max-width: 1440px;
}

.link-container {
  padding: 24px 0 24px 0;
}
.link-container .container {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: start;
}

.safe-banner-container {
  background-color: #AB310F;
}

img.img-safe-banner {
  height: 60px;
}
img.img-safe-banner .mobile {
  margin-top: 8px;
}

a.signin-link {
  display: inline-block;
  padding-top: 4px;
  width: 64px;
}

a.profile-link,
a.auth-link {
  display: inline-block;
  width: 40px;
  height: 40px;
}

article.link-item {
  min-width: 96px;
  margin-right: 32px;
  display: flex;
}
article.link-item .link-icon {
  font-size: 1.6rem;
}
article.link-item .link-info {
  line-height: 1rem;
  font-size: 1rem;
  padding-top: 2px;
  margin-left: 8px;
}
article.link-item .link-info .info-count {
  font-weight: 600;
}

.content-container {
  padding-top: 8px;
}

.quick-link-container {
  display: flex;
  position: relative;
  width: 100%;
  margin-bottom: 16px;
}
.quick-link-container .quick-links {
  width: 70%;
  margin-top: 32px;
}
.quick-link-container .dev-links {
  padding-left: 32px;
  margin-top: 32px;
}
.quick-link-container .avatar {
  position: absolute;
  display: inline-flex;
  padding-top: 6px;
  padding-right: 8px;
}
.quick-link-container .avatar-label {
  transform: rotate(30deg);
  font-size: 1.3rem;
}
.quick-link-container .info-container {
  display: inline-block;
  flex: 0 0 100%;
}
.quick-link-container .info-container .label-header {
  font-family: "Open Sans";
  font-size: 1.2rem;
  color: var(--colour-text);
  text-decoration: underline;
  text-decoration-color: var(--colour-faint-underline);
}
.quick-link-container .info-container .label-header:hover::after {
  text-decoration-color: var(--colour-faint-underline-hover);
}
.quick-link-container .info-container .label-sub-header {
  font-family: "Open Sans";
  font-size: 0.95rem;
  margin-bottom: 8px;
}

.dev-link-container {
  position: relative;
  display: flex;
  margin-bottom: 16px;
}
.dev-link-container .avatar-container {
  min-width: 64px;
  height: 80px;
  margin-right: 24px;
}
.dev-link-container .avatar-container .author-link {
  display: block;
  width: 64px;
  height: 80px;
}
.dev-link-container .dev-avatar {
  display: inline-flex;
  margin-right: 24px;
  color: #fff;
  padding: 30px;
  height: 64px;
  width: 64px;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  border: 2px #fff solid;
}
.dev-link-container .livedoc-avatar {
  display: inline-flex;
  margin-right: 24px;
  color: #fff;
  padding: 30px;
  height: 64px;
  width: 64px;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
}
.dev-link-container .dev-avatar-label {
  font-size: 24px;
}
.dev-link-container .no-link {
  cursor: inherit !important;
}
.dev-link-container .dev-info-container .label-header {
  font-family: "Open Sans";
  font-size: 1.2rem;
  color: var(--colour-text);
  text-decoration: underline;
  text-decoration-color: var(--colour-faint-underline);
}
.dev-link-container .dev-info-container .label-header:hover::after {
  text-decoration-color: var(--colour-faint-underline-hover);
}
.dev-link-container .dev-info-container .label-header .trending-label-header {
  font-family: "Open Sans";
  font-size: 1.2rem;
}
.dev-link-container .dev-info-container .label-sub-header {
  font-family: "Open Sans";
  font-size: 0.95rem;
  margin-bottom: 8px;
}
a .dev-link-container .dev-info-container .label-sub-header:hover::after {
  text-decoration-color: var(--colour-faint-underline-hover);
}
.dev-link-container .dev-info-container .trending-label-sub-header {
  font-family: "Open Sans";
  font-size: 0.95rem;
  margin-bottom: 8px;
}
a .dev-link-container .dev-info-container .trending-label-sub-header:hover::after {
  text-decoration-color: var(--colour-faint-underline-hover);
}

.post-count {
  margin-bottom: 4px !important;
}

.post-meta-data {
  background-color: var(--colour-contrast-low);
  padding: 10px;
  display: inline-block;
  margin-bottom: 16px;
  width: 100%;
}
.post-meta-data span {
  font-size: 12px;
}

.entries-list .avatar {
  position: absolute;
  display: inline-flex;
  padding-top: 6px;
  padding-right: 8px;
}
.entries-list .avatar-label {
  transform: rotate(30deg);
}

.dev-link-header {
  font-family: "Open Sans";
  font-weight: 200;
  font-size: 32px;
  margin-bottom: 32px;
}

.social-link-container {
  background-color: var(--c-themePrimaryLight);
  color: var(--c-themeQuaternaryDark);
  text-align: center;
  font-size: 0.5em;
  padding: 24px 0 24px 0;
}

.icon-label {
  font-size: 0.8rem;
  margin-right: 4px;
  vertical-align: middle;
  position: absolute;
  left: -80px;
  top: 6px;
}

.icon-end {
  float: right;
  vertical-align: middle;
  position: relative;
}

.body-link > a {
  color: var(--colour-text);
}
.body-link > a:hover {
  color: var(--colour-text);
  text-decoration: underline;
}

.error-message-container {
  text-align: center;
}
.error-message-container .error-header {
  font-family: "Open Sans";
  font-weight: 300;
  font-size: 3rem;
  color: var(--colour-text);
  opacity: 0.9;
}
.error-message-container .error-sub-header {
  font-family: "Open Sans";
  font-weight: 150;
  font-size: 1.4rem;
  margin-bottom: 8px;
  opacity: 0.9;
}
.error-message-container .error-code {
  font-style: italic;
}
.error-message-container .error-text {
  padding: 12px;
  font-size: 0.8rem;
  opacity: 0.9;
}

@media screen and (max-width: 990px) {
  section.card-container > .card {
    flex-basis: calc(50% - 32px);
  }
  article.link-item {
    margin-right: 8px;
  }
  article.link-item .link-icon {
    font-size: 1.6rem;
  }
  article.link-item .link-info {
    font-size: 0.8rem;
  }
  .quick-link-container {
    display: inherit;
  }
  .quick-link-container .dev-links {
    border-left: inherit;
  }
  .quick-link-container .quick-links {
    width: 100%;
  }
}
@media screen and (max-width: 820px) {
  .content-container {
    padding-top: 0;
  }
  .carousel__holder {
    display: none;
  }
  section.link-container {
    display: none;
  }
  section.card-container > .card {
    flex-basis: calc(100% - 16px);
    margin: 8px;
  }
  article.link-item {
    margin-right: 4px;
  }
  article.link-item .link-icon {
    font-size: 1.6rem;
  }
  article.link-item .link-info {
    font-size: 0.8rem;
  }
  .quick-link-container .dev-links {
    border-left: none !important;
    padding-left: 8px;
  }
  .quick-link-container .info-container {
    padding-left: 8px;
  }
  .icon-end {
    display: none;
    width: 0;
  }
}
@media screen and (max-width: 540px) {
  .dev-link-container .dev-avatar {
    display: none;
  }
  .dev-link-container .livedoc-avatar {
    display: none;
  }
}
.icon-alarmclock {
  width: 18px;
}

textarea {
  outline: none; /* Removes the default blue border */
  border: 1px solid #ccc; /* Add a consistent border style */
  overflow: auto; /* This allows scrolling but hides the scrollbars */
  scrollbar-width: none; /* Firefox specific property to hide scrollbars */
}

textarea:focus {
  border-color: #999; /* Change the border color on focus */
}

textarea::-webkit-scrollbar {
  display: none; /* For Chrome, Safari, and other WebKit-based browsers */
}

.title-image img {
  width: 96px;
}

.prompt-container {
  margin-bottom: 32px;
}

h2.prompt-header {
  font-size: 64px;
}

form {
  display: flex;
}

.row {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  width: 100%;
}

.column {
  display: flex;
  flex-direction: column;
  flex-basis: 50%;
  flex: 1;
}

.prompt-element {
  border: 1px solid var(--colour-text);
  padding: 16px;
  margin: 8px;
  background-color: inherit;
  line-height: 24px;
  cursor: pointer;
  border-radius: 2px;
}

.prompt-hdr {
  font-weight: 600;
}

.prompt-hdr,
.prompt-label {
  text-align: start;
}

.prompt-entry-label {
  text-align: start;
  margin-left: 12px;
}

.ai-search-input {
  padding: 16px;
  resize: none;
  height: 54px;
  width: 100%;
  border: 1px solid var(--colour-text);
  border-radius: 4px;
}

.btn-ai-search {
  height: 32px;
  width: 32px;
  font-size: 24px;
  position: absolute;
  right: 16px;
  top: 19px;
  cursor: pointer;
  border: none;
  border-radius: 8px;
}

.btn-ai-search:disabled,
.btn-ai-search[disabled] {
  opacity: 0.6;
}

.prompt-response-container {
  padding: 8px;
  margin-bottom: 24px;
  overflow-y: auto;
}

@media screen and (max-width: 768px) {
  .column {
    flex-basis: 100%;
  }
}
@media screen and (max-width: 430px) {
  h2.prompt-header {
    font-size: 32px;
  }
  .ai-search-input {
    padding: 8px;
    min-height: 104px;
  }
  .btn-ai-search {
    top: inherit;
    bottom: 16px;
  }
  .prompt-hdr {
    font-weight: 400;
  }
  .prompt-element {
    padding: 16px;
    line-height: 16px;
  }
  .prompt-label {
    display: none;
  }
}
.chat-container {
  position: relative;
  display: flex;
  margin-bottom: 16px;
}
.chat-container .avatar-container {
  min-width: 64px;
  height: 80px;
  margin-right: 24px;
}
.chat-container .avatar-container .author-link {
  display: block;
  width: 64px;
  height: 80px;
}
.chat-container .chat-avatar {
  display: inline-flex;
  color: #fff;
  height: 64px;
  width: 64px;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  border: 2px #777 solid;
}
.chat-container .chat-avatar-label {
  font-size: 24px;
}
.chat-container .citation-ref {
  font-size: smaller;
}
.chat-container .chat-info-container {
  text-align: start;
}
.chat-container .chat-info-container .label-header {
  font-family: "Open Sans";
  font-weight: 600;
  font-size: 20px;
  color: var(--colour-text);
}
.chat-container .chat-info-container .chat-message p {
  margin-bottom: 8px;
}
.chat-container .chat-info-container .chat-citations {
  font-size: 14px;
}
.chat-container .chat-info-container .chat-citations ul.citations-list {
  list-style: none;
  padding-left: 0;
}

.chat-link {
  position: absolute;
  top: -72px;
  right: 88px;
  display: block;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: solid 2px #fff;
}

.ai-chat-avatar {
  position: absolute;
  top: 10px;
  left: 10px;
  padding-top: 4px;
  display: inline-flex;
  height: 40px;
  width: 40px;
}

a {
  cursor: pointer;
}

ul.menu {
  list-style: none;
}

.mobile {
  display: none;
}

@media (max-width: 820px) {
  .mobile {
    display: inherit;
  }
  .desktop {
    display: none !important;
  }
  .mobile.menu {
    position: relative;
    overflow: hidden;
    padding-left: 0;
    width: 100%;
    height: 0;
    z-index: 10;
    transition: all 0.3s ease-in-out;
  }
  .mobile.menu li:first-of-type {
    border-top: 1px solid;
  }
  .mobile.menu li {
    padding-left: 16px;
    border-bottom: 1px solid;
    display: none;
  }
  .menu_shown .mobile.menu {
    height: 496px;
  }
  .menu_shown .mobile.menu li {
    display: inherit;
  }
  .mobile .menu__item {
    display: block;
    line-height: 2;
    padding: 8px 0;
  }
  #toggle-control-toggle-mobile {
    padding-left: 0;
  }
  #toggle-control-toggle-mobile:hover {
    background-color: inherit;
  }
  .nav-search-container {
    width: 100%;
    height: 64px;
    display: flex;
  }
}
.menu-desktop {
  display: flex;
  padding-left: 0;
}
.menu-desktop .menu__list_item {
  padding: 4px 0;
}
.menu-desktop .toggle__list-item {
  padding-right: 88px;
}
.menu-desktop li a.menu__item {
  cursor: pointer;
  margin-right: 16px;
  transition: none;
}

.nav-link-chip {
  position: absolute;
  text-align: center;
  color: #fff;
  border: 1px solid #fff;
  font-size: 12px;
  min-width: 40px;
  margin-bottom: 13px;
  height: 24px;
  line-height: 22px;
  border-radius: 12px;
  z-index: 5;
}

.nav-link-chip-desktop {
  top: -14px;
  left: 6px;
}

.nav-link-chip-mobile {
  top: -4px;
  left: 30px;
}

.nav-container {
  min-height: 16px;
  margin: 16px 0;
}

.nav-button-container {
  width: 64px;
}

.menu__icon {
  height: 32px;
  width: 44px;
  margin: 10px;
  position: absolute;
  vertical-align: middle;
  z-index: 20;
}

.menu__icon span {
  display: block;
  width: 100%;
  height: 4px;
  margin-top: -2px;
  position: absolute;
  left: 0;
  top: 50%;
}

.menu__icon:before,
.menu__icon:after {
  content: "";
  display: block;
  width: 100%;
  height: 4px;
  position: absolute;
  left: 0;
  transform-origin: center center;
  transform: rotate(0deg);
  transition: all 0.3s ease;
}

.menu__icon:before {
  top: 2px;
  margin-top: -2px;
}

.menu__icon:after {
  bottom: 2px;
  margin-bottom: -2px;
}

.menu_shown .menu__icon span {
  background: transparent;
}

.menu_shown .menu__icon:before {
  top: 50%;
  transform: rotate(45deg);
}

.menu_shown .menu__icon:after {
  bottom: 50%;
  transform: rotate(-45deg);
}

.menu__link .menu__item__btn {
  border: 1px solid;
  border-radius: 24px;
  padding: 4px 12px;
}

@media screen and (max-width: 820px) {
  li.menu__link__btn {
    padding-left: 8px !important;
  }
  li.menu__link__btn .menu__item__btn {
    max-width: 120px;
    margin: 4px 0;
  }
}
@media screen and (max-width: 576px) {
  .auth-container {
    height: inherit !important;
  }
}
/* Auth Social Provider buttons */
.auth-link {
  height: 16px;
}

#login-buttons,
#demo-buttons {
  display: flex;
  margin-top: 16px;
}

.user-info {
  font-family: "Open Sans";
  font-weight: 500;
}

.btn-auth {
  width: 200px;
  height: 42px;
  margin-right: 8px;
  margin-bottom: 8px;
  border-radius: 2px;
  box-shadow: 0 3px 4px 0 rgba(0, 0, 0, 0.25);
}
.btn-auth .auth-icon-wrapper {
  position: absolute;
  margin-top: 1px;
  margin-left: 1px;
  width: 40px;
  height: 40px;
  border-radius: 2px;
  background-color: #fff;
}
.btn-auth .auth-icon {
  position: absolute;
  margin-top: 8px;
  margin-left: 8px;
  width: 24px;
  height: 24px;
}
.btn-auth .icon-github {
  color: #4078c0;
}
.btn-auth .icon-google {
  color: #4285f4;
}
.btn-auth .icon-twitter {
  color: #1DA1F2;
}
.btn-auth .icon-facebook {
  color: #1877f2;
}
.btn-auth .btn-text {
  float: right;
  margin: 11px 11px 0 0;
  color: #fff;
  font-size: 14px;
  letter-spacing: 0.2px;
  font-family: "Roboto";
}
.btn-auth .btn-text-small {
  display: none;
}
.btn-auth:hover {
  box-shadow: 0 0 6px #4285f4;
  cursor: pointer;
}
.btn-auth:active {
  background: #1669F2;
}

a.menu-link {
  cursor: pointer;
  margin-right: 16px;
  text-decoration: none;
  transition: none;
}

.fade-in {
  visibility: visible;
  opacity: 1;
  transition: opacity 2s linear;
}

.fade-in {
  animation-name: fade;
}

@keyframes fade {
  from {
    opacity: 0.4;
  }
  to {
    opacity: 1;
  }
}
@-moz-keyframes fade {
  from {
    opacity: 0.4;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes fade {
  from {
    opacity: 0.4;
  }
  to {
    opacity: 1;
  }
}
@-o-keyframes fade {
  from {
    opacity: 0.4;
  }
  to {
    opacity: 1;
  }
}
@-ms-keyframes fade {
  from {
    opacity: 0.4;
  }
  to {
    opacity: 1;
  }
}
@media (max-width: 820px) {
  .btn-auth .btn-text-small {
    display: inherit;
  }
  .btn-auth .btn-text-large {
    display: none;
  }
}
.btn-demo {
  width: 200px;
  height: 42px;
  margin-right: 8px;
  margin-bottom: 8px;
  border-radius: 2px;
  background-color: #fff;
  box-shadow: 0 3px 4px 0 rgba(0, 0, 0, 0.25);
}
.btn-demo:hover {
  box-shadow: 0 0 6px #4285f4;
  cursor: pointer;
}
.btn-demo:active {
  background: #1669F2;
}

/* ==========================================================================
   Page
   ========================================================================== */
.page-wrapper {
  margin: 0 auto;
  padding-left: 1em;
  padding-right: 1em;
  max-width: 960px;
}

.page-title {
  margin-bottom: 24px;
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  letter-spacing: -2px;
}

@media print {
  #auth-container,
  #nav-container,
  section.link-container,
  #footer,
  div.page-likes,
  #user-feedback-div,
  #edit-post-container {
    display: none;
  }
}
header, .header {
  margin-bottom: 8px;
}

.header-container {
  display: flex;
  flex-direction: column;
  margin-top: 24px;
}

#header-logo-container {
  display: flex;
  justify-content: space-between;
}

#header-logo {
  width: 100%;
}

.auth-container {
  position: relative;
  width: 104px;
  text-align: center;
}

.auth-avatar,
.auth-avatar-initials {
  position: absolute;
  border: 2px solid #fff;
  top: -4px;
  right: 32px;
  border-radius: 50%;
  height: 40px;
  width: 40px;
}

.auth-avatar-initials {
  padding-top: 8px;
  line-height: 22px;
  font-size: 12px;
}

.profile-avatar-initials {
  position: absolute;
  border: 2px solid #fff;
  top: 8px;
  left: 0;
  border-radius: 50%;
  height: 100px;
  width: 100px;
  font-size: 36px;
  line-height: 62px;
  padding: 16px;
  text-align: center;
}

.profile-author-avatar {
  position: absolute;
  border: 2px solid #fff;
  top: 8px;
  left: 0;
  border-radius: 50%;
  height: 100px;
  width: 100px;
}

.chat-avatar-initials {
  position: absolute;
  border: 2px solid #fff;
  top: 0;
  left: 0;
  border-radius: 50%;
  height: 64px;
  width: 64px;
  font-size: 24px;
  line-height: 48px;
  padding: 8px;
  text-align: center;
}

.mobile-auth-container {
  height: 56px;
  text-align: right;
  margin-left: auto;
  display: none;
}

.mobile-auth-avatar,
.mobile-auth-avatar-intials {
  border-radius: 50%;
  width: 40px;
}

.token-warning {
  background: darkorange;
  color: #fff;
  width: 32px;
  height: 32px;
  border-radius: 16px;
  position: absolute;
  right: 12px;
  top: -12px;
  border: 2px solid white;
  padding-top: 2px;
}

.token-expired {
  background: red;
  color: #fff;
  width: 32px;
  height: 32px;
  border-radius: 16px;
  position: absolute;
  right: 12px;
  top: -12px;
  border: 2px solid white;
  padding-top: 2px;
}

#header-img,
#header-img-dark {
  height: 50px;
  margin-left: -8px;
}

#sub-header-img,
#sub-header-img-dark {
  height: 24px;
  margin-bottom: 6px;
}

.sub-header-logo-container {
  height: 43px;
  padding-top: 2px;
}

.header-sub-bold {
  font-size: 1.8rem;
  font-weight: 400;
}

.header-sub-bold {
  font-size: 1.8rem;
  font-weight: 400;
}

.header-sub {
  font-size: 1.5rem;
  font-weight: 100;
  margin-left: 8px;
}

.welcome-msg {
  float: right;
  font-size: 1rem;
  font-weight: 100;
  margin-left: 8px;
}

h1, .h1 {
  font-size: 32px;
  letter-spacing: -0.07rem;
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  margin-top: 32px;
}

h2, .h2 {
  font-size: 24px;
  letter-spacing: -0.07rem;
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  margin-top: 8px;
}

h3, .h3 {
  font-size: 20px;
  letter-spacing: -0.07rem;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  margin-top: 8px;
}

@media (max-width: 820px) {
  .header-container {
    padding: 8px;
    margin-top: 0;
  }
  #header-logo-container {
    display: flex;
    justify-content: space-between;
  }
  #header-logo {
    width: inherit;
  }
  header, .header {
    margin-bottom: 0;
  }
  .auth-container {
    display: none;
  }
  .mobile-auth-container {
    display: block;
  }
  #header-img,
  #header-img-dark {
    height: 40px;
  }
  #sub-header-logo {
    display: inline-block;
    width: 45vw;
    height: inherit;
  }
  #sub-header-img,
  #sub-header-img-dark {
    width: 100%;
    height: inherit;
    margin-bottom: 2px;
  }
  .sub-header-logo-container {
    height: inherit;
  }
  .header-sub {
    display: inline-block;
    font-size: 16px;
    margin-left: 4px;
    font-weight: inherit;
  }
  .welcome-msg {
    display: block;
    float: inherit;
    margin-left: 2px;
  }
}
.header-image {
  position: relative;
  text-align: center;
  margin-top: 0px;
  opacity: 0.7;
  z-index: 1;
}
@media (min-width: 51.25em) {
  .header-image {
    margin-top: 0px;
  }
}
@media (min-width: 60em) {
  .header-image {
    margin-top: 0px;
  }
}
.header-image img {
  width: 100%;
}

.page-image {
  position: relative;
  text-align: center;
  margin-top: 0px;
  margin-bottom: 2em;
  z-index: 1;
}
@media (min-width: 51.25em) {
  .page-image {
    margin-top: 0px;
  }
}
@media (min-width: 60em) {
  .page-image {
    margin-top: 0px;
  }
}
.page-image img {
  width: 100%;
}

.page-image-caption {
  position: absolute;
  bottom: 0;
  right: 0;
  margin: 0 auto;
  padding: 0.25em 0.5em;
  color: #fff;
  font-size: 0.75rem;
  background: #000;
  text-align: right;
  z-index: 5;
  opacity: 0.5;
  border-radius: 4px 0 0 0;
}
.page-image-caption > * {
  margin: 0;
  padding: 0;
}
.page-image-caption a {
  color: #fff;
}

.page-sidebar {
  font-size: 0.75rem;
  /* @include breakpoint($large) {
     text-align: center;
   }*/
}
.page-sidebar .page-date,
.page-sidebar .read-time {
  font-family: "Open Sans", "Verdana", "Helvetica", "Arial", sans-serif;
  white-space: nowrap;
  opacity: 0.7;
}
@media (min-width: 60em) {
  .page-sidebar .read-time {
    display: block;
  }
}
.page-sidebar .read-time + .page-date::before {
  content: "•";
  padding: 0 0.5em;
}
@media (min-width: 60em) {
  .page-sidebar .read-time + .page-date::before {
    content: "";
    padding: 0;
  }
}

.page-author {
  clear: both;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 1em;
}
.page-author::after {
  clear: both;
  content: "";
  display: table;
}
.page-taxonomies-title {
  display: inline;
  padding-right: 0.5em;
  font-size: 1rem;
  font-weight: normal;
  text-transform: uppercase;
}
@media (min-width: 60em) {
  .page-taxonomies-title {
    display: inline-block;
    margin: 1.5em 0 0.5em;
    padding: 0;
    font-size: 0.75rem;
    font-weight: normal;
    text-transform: uppercase;
  }
}

.page-taxonomies {
  margin-right: 1em;
  padding: 0;
  list-style: none;
  margin-bottom: 0;
}
@media (min-width: 60em) {
  .page-taxonomies {
    display: block;
  }
}

.page-taxonomy {
  text-align: center;
  text-transform: lowercase;
  float: left;
  font-size: 12px;
  min-width: 48px;
  margin-bottom: 8px;
  margin-right: 8px;
  padding: 0 8px 4px 8px;
  height: 32px;
  line-height: 28px;
  border-radius: 16px;
  background-color: #f1f1f1;
  border: 2px solid #fff;
}
.page-taxonomy a {
  color: inherit;
}
.page-taxonomy a:hover {
  text-decoration: underline !important;
}

a.page-taxonomy {
  text-align: center;
  float: left;
  font-size: 12px;
  min-width: 100px;
  margin-bottom: 8px;
  margin-right: 8px;
  padding: 0 8px 4px 8px;
  height: 32px;
  border-radius: 16px;
  color: #fff !important;
}
a.page-taxonomy:hover {
  text-decoration: underline !important;
}

.tag-chip {
  text-align: center;
  text-transform: lowercase;
  float: left;
  font-size: 12px;
  min-width: 48px;
  margin-bottom: 8px;
  margin-right: 8px;
  padding: 0 8px 4px 8px;
  height: 32px;
  line-height: 28px;
  border-radius: 16px;
  background-color: #f1f1f1;
  border: 2px solid #fff;
}
.tag-chip a {
  color: inherit;
}
.tag-chip a:hover {
  text-decoration: underline !important;
}

a.tag-chip {
  text-align: center;
  float: left;
  font-size: 12px;
  min-width: 100px;
  margin-bottom: 8px;
  margin-right: 8px;
  padding: 0 8px 4px 8px;
  height: 32px;
  border-radius: 16px;
  color: #fff !important;
}
a.tag-chip:hover {
  text-decoration: underline !important;
}

a.review-tag {
  background-color: var(--colour-bg);
  border-color: var(--colour-text);
  color: var(--colour-text) !important;
  display: inline-flex;
}
a.review-tag:hover {
  text-decoration: underline !important;
}

.page-share {
  margin-top: 2em;
  margin-bottom: 2em;
}

.page-comments {
  margin-bottom: 2em;
}

.page-pagination {
  margin: 2em 0 1em;
  clear: both;
}
@media (min-width: 60em) {
  .page-pagination {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.page-previous,
.page-next {
  display: block;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  text-decoration: none;
}

.page-next {
  margin-top: 1em;
}
@media (min-width: 60em) {
  .page-next {
    margin-top: 0;
    text-align: right;
  }
}

.page-pagination-label {
  margin: 0;
  padding: 0;
  font-size: 1rem;
}

.page-pagination-title {
  margin: 0;
  padding: 0;
  font-family: "Open Sans", "Verdana", "Helvetica", "Arial", sans-serif;
  font-size: 0.9rem;
  font-style: italic;
}

.search-form {
  padding: 0;
  border: none !important;
}

.hidden {
  display: none;
}

/*
   Wide Layout Overrides
   ========================================================================== */
.layout--home .page-wrapper,
.layout--posts .page-wrapper,
.layout--categories .page-wrapper,
.layout--tags .page-wrapper,
.layout--category .page-wrapper,
.layout--tag .page-wrapper,
.layout--collection .page-wrapper,
.layout--add-post .page-wrapper,
.layout--edit-post .page-wrapper,
.layout--search .page-wrapper {
  max-width: 960px;
}
.layout--home .page-title,
.layout--posts .page-title,
.layout--categories .page-title,
.layout--tags .page-title,
.layout--category .page-title,
.layout--tag .page-title,
.layout--collection .page-title,
.layout--add-post .page-title,
.layout--edit-post .page-title,
.layout--search .page-title {
  text-align: left;
}

@media (min-width: 60em) {
  .layout--post .page-wrapper {
    display: grid;
    grid-column-gap: 3em;
    grid-row-gap: 0;
    grid-template-columns: 175px 1fr;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}
@media (min-width: 60em) {
  .layout--post .page-header {
    grid-column: 1/-1;
    clear: both;
  }
}
.layout--post .page-sidebar {
  margin-bottom: 1em;
}
@media (min-width: 60em) {
  .layout--post .page-sidebar {
    float: left;
    width: 18%;
  }
}
@supports (display: grid) {
  .layout--post .page-sidebar {
    width: auto;
  }
}
.layout--post .page-sidebar a {
  color: inherit;
  text-decoration: none;
}
.layout--post .page-sidebar a:hover {
  text-decoration: underline;
}
@media (min-width: 60em) {
  .layout--post .page-content {
    float: right;
    width: 78%;
    min-width: 0;
  }
}
@supports (display: grid) {
  .layout--post .page-content {
    width: auto;
    margin: 0;
  }
}
.layout--post .page-content a {
  color: var(--colour-primary);
}
.layout--post .page-content a:hover {
  color: var(--colour-hyperlink-hover);
}
.layout--post .page-share {
  clear: both;
}

.page--wide .page-wrapper {
  max-width: 960px;
}

.footer {
  text-align: center;
}

.footer-body {
  background-color: var(--c-themeQuaternaryDark);
  width: 100%;
  padding: 8px;
  font-size: 14px;
}
.footer-body li.footer-item {
  display: inline;
  border-right: 1px solid;
  padding: 2px 16px;
  margin: 16px 0;
}
.footer-body li.footer-item:last-child {
  border-right: none !important;
}

.footer-span {
  color: var(--c-themePrimaryLight);
  margin: 0 16px 0 16px;
}

a {
  color: var(--c-themePrimaryLight);
  text-decoration: inherit;
}

a.theme {
  color: var(--c-themePrimaryLight);
  text-decoration: inherit;
}

a.tag {
  color: #fff !important;
}

a:hover {
  color: var(--colour-hyperlink-hover);
  text-decoration: underline;
}

.footer-gutter {
  color: var(--c-themeQuaternaryDark);
  padding: 16px 0 24px 0;
}

@media screen and (max-width: 1320px) {
  .footer-body {
    padding: 4px;
  }
  .footer-span {
    margin: 0 4px 0 4px;
  }
}
@media screen and (max-width: 576px) {
  ul.footer-body {
    list-style: none;
    font-size: 16px;
  }
  ul.footer-body li {
    display: inherit !important;
    border-right: none !important;
    border-bottom: 1px dashed;
    margin-left: 15% !important;
    margin-right: 15% !important;
    padding-bottom: 16px !important;
    line-height: 24px !important;
  }
  ul.footer-body li.item-last {
    border-bottom: none !important;
  }
  .footer-span {
    margin: inherit;
  }
}
/* ==========================================================================
   Author
   ========================================================================== */
article.author-list-container {
  display: flex;
  border-bottom: solid 1px;
  padding-top: 32px;
  padding-bottom: 32px;
}
article.author-list-container .author-content-container {
  position: relative;
  padding: 8px;
}
article.author-list-container .author-content-container .author-name-hdr {
  margin-top: 24px;
  margin-bottom: 4px;
}
article.author-list-container .author-content-container .author-post-bio {
  bottom: 12px;
  position: absolute;
  white-space: nowrap;
}

.author-avatar {
  margin-right: 1em;
  width: 50px;
  height: auto;
  border-radius: 50%;
}
@media (min-width: 60em) {
  .author-avatar {
    margin-right: 0;
    margin-bottom: 1em;
    width: 100px;
    height: auto;
  }
}

.anon-avatar {
  display: inline-flex;
  color: #fff;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  border: 1px #fff solid;
  margin-right: 16px;
}
.anon-avatar .anon-avatar-label {
  font-size: 36px;
}
@media (min-width: 60em) {
  .anon-avatar {
    margin-right: 0;
    margin-bottom: 1em;
    width: 100px;
    height: 100px;
  }
  .anon-avatar .anon-avatar-label {
    font-size: 48px;
  }
}

.dev-avatar-label {
  font-size: 1rem;
}

.author-avatar-list {
  margin-right: 1em;
  width: 112px;
  height: auto;
  border-radius: 50%;
}
@media (min-width: 60em) {
  .author-avatar-list {
    margin-right: 0;
    width: 100px;
    height: auto;
  }
}

.author-info {
  margin-left: 32px;
}

.livedoc-info {
  margin-left: 32px;
  margin-bottom: 16px;
}

section.author-bio {
  font-size: 1.1em;
  margin-bottom: 32px;
}

.badge-permission {
  position: absolute;
  left: -10px;
  top: 0;
  width: 40px;
}

.badge-award {
  position: absolute;
  right: -10px;
  top: 0;
  width: 40px;
}

.badge-role {
  position: absolute;
  left: -10px;
  bottom: 0;
  width: 40px;
}

.badge-list {
  width: 32px;
}

@media (max-width: 820px) {
  article.author-list-container .author-content-container .author-name-hdr {
    font-size: 2rem;
  }
  article.author-list-container .author-content-container .author-post-bio {
    bottom: -16px;
    white-space: inherit;
    line-height: 1.1em;
  }
  .badge-permission {
    left: -6px;
    width: 24px;
  }
  .badge-award {
    right: 6px;
    width: 24px;
  }
  .badge-role {
    left: -6px;
    width: 24px;
  }
}
.badge-permission-small {
  position: absolute;
  left: 0;
  top: 0;
  width: 24px;
}

.badge-award-small {
  position: absolute;
  left: 40px;
  top: 0;
  width: 24px;
}

.badge-role-small {
  position: absolute;
  left: 0;
  top: 48px;
  width: 24px;
}

.post-avatar {
  position: absolute;
  display: inline-flex;
  top: 8px;
  height: 64px;
  width: 64px;
  border-radius: 50%;
  border: solid 2px #fff;
}

.import-post-avatar {
  border: none !important;
}

.author-name {
  font-size: 20px;
}

.repo-name {
  font-size: 16px;
}

a.repo-url {
  color: var(--colour-hyperlink);
  text-decoration: underline;
}
a.repo-url:hover {
  color: var(--colour-hyperlink-hover);
}

.author-meta-data {
  display: flex;
}

.author-links {
  display: none;
  margin-top: 8px;
  padding: 0;
  list-style: none;
}
@media (min-width: 60em) {
  .author-links {
    display: block;
  }
}

.tags-meta-data {
  height: 40px;
}

.author-link {
  display: inline;
  padding-right: 6px;
}
.author-link a {
  text-decoration: none;
}

#avatar-container {
  position: relative;
  min-height: 100px;
  margin-bottom: 24px;
}

.author-container {
  flex: 1;
}

.post-link-container {
  position: relative;
}

.post-link,
.post-link-gh,
.livedoc-link {
  position: relative;
  margin-right: 8px;
  width: 100px;
}

.livedoc-link {
  margin-right: 64px;
}

.post-link > a {
  display: block;
  padding: 4px 16px;
  width: 100px;
  border-radius: 24px;
  position: absolute;
  top: 50%;
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.post-link-gh > a,
.livedoc-link > a {
  display: block;
  padding: 4px 16px;
  width: 152px;
  border-radius: 24px;
  position: absolute;
  top: 50%;
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.post-link > a:hover {
  width: 100px;
  text-decoration: inherit;
}

.post-link-gh > a:hover {
  width: 152px;
  text-decoration: inherit;
}

.livedoc-link > a:hover {
  width: 152px;
  text-decoration: inherit;
}

.import-link {
  position: relative;
  margin-right: 8px;
  align-content: center;
  width: 150px;
}

.avatar-label-text {
  position: absolute;
  top: 4px;
  left: 48px;
  font-size: 16px;
  min-width: 120px;
  color: var(--colour-text);
}

a:hover .avatar-label-text {
  text-decoration: underline;
  text-decoration-thickness: 2px;
  color: var(--colour-text);
}

/*
Like Post CSS
*/
.page-likes {
  clear: both;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 1em;
}
.page-likes::after {
  clear: both;
  content: "";
  display: table;
}
@media (min-width: 60em) {
  .page-likes {
    display: block;
  }
}

.like-button {
  border: none;
  background: transparent;
  color: var(--colour-text);
  padding: 4px 16px;
  border-radius: 24px;
  width: 100px;
  cursor: pointer;
  position: absolute;
  top: 50%;
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.like-button:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.edit-post-container {
  height: 116px;
  margin-bottom: 16px;
  padding-right: 32px;
  display: flex;
}

.post-icon {
  font-size: 24px;
  margin-right: 22px;
  color: var(--colour-text);
}

.page-date {
  color: var(--colour-active-grey);
}

.likes-count {
  position: absolute;
  top: 8px;
  left: 56px;
  font-size: 16px;
  color: var(--colour-text);
}

@media (max-width: 540px) {
  .avatar-container {
    display: none;
  }
  .dev-avatar {
    display: none;
  }
  .author-info {
    margin-left: 0;
  }
  .livedoc-info {
    margin-left: 0;
  }
  .author-meta-data {
    display: block;
  }
  .avatar-label-text, .import-label-text {
    display: none;
  }
  .edit-post-container {
    display: flex;
    width: 100%;
    height: 32px;
    margin-bottom: 32px;
    padding-right: 0;
    float: right;
  }
  .spacer {
    flex: 1;
  }
  .post-link-container {
    width: 72px !important;
  }
  .post-link,
  .post-link-gh,
  .livedoc-link {
    width: 56px;
  }
  .livedoc-link {
    margin-right: 0px;
  }
  .post-link > a:hover,
  .post-link-gh > a:hover,
  .livedoc-link > a:hover {
    width: 56px;
  }
  .like-button:hover {
    width: 88px;
  }
  .tags-meta-data {
    height: 56px;
  }
}
/* Import label */
.import-label-text {
  position: absolute;
  left: 32px;
  font-size: 16px;
  min-width: 150px;
  color: var(--colour-text);
}

ul.role-list {
  list-style: none;
  padding-left: 0;
  margin-top: 4px;
  margin-bottom: 24px;
}

li.role-item {
  margin-bottom: 4px;
}

li.achievement-item {
  padding-top: 16px;
}

.role-item-icon {
  height: 24px;
  width: 24px;
  margin-right: 16px;
}

.role-item-image {
  height: 32px;
  margin-right: 8px;
}

.member-view-profile > a {
  color: var(--colour-hyperlink);
  text-decoration: underline;
}

.member-view-azure-settings > a {
  color: var(--colour-hyperlink);
  text-decoration: underline;
}

.tag-item-icon {
  margin-left: 8px;
  color: var(--colour-white);
}

#profile-container {
  display: flex;
  flex-direction: column;
}

.achievement-item-button {
  height: 80px;
  width: 80px;
  border-radius: 50%;
  cursor: pointer;
  background-color: var(--colour-background);
  border: none;
}

.icon-achievement {
  height: 80px;
  width: 80px;
}

.poke-item-button {
  height: 64px;
  width: 64px;
  border-radius: 50%;
  cursor: pointer;
  background-color: var(--colour-background);
  border: none;
}

/*.poke-item-button[disabled="false"]:hover {*/
.poke-item-button:hover {
  cursor: pointer;
  background-color: var(--colour-passive-grey);
  border: none;
}

.poke-item-button[disabled=false]:hover {
  background-color: var(--colour-passive-grey);
  border: 2px solid var(--colour-white);
}

#avatar-container {
  width: 100px;
}

#mobile-avatar-container {
  width: 100%;
  position: relative;
  display: flex;
  margin-bottom: 16px;
}

.mobile-profile-author-avatar {
  position: relative;
  margin: auto;
  border: 2px solid #fff;
  top: 8px;
  left: 0;
  border-radius: 50%;
  height: 100px;
  width: 100px;
}

#mobile-user-header {
  font-size: 24px;
  text-align: center;
  margin-bottom: 0;
}

#mobile-user-member-since {
  font-size: 16px;
  text-align: center;
  margin-bottom: 16px;
}

#mobile-user-header {
  font-size: 24px;
  text-align: center;
  margin-bottom: 0;
}

#mobile-user-member-since {
  font-size: 16px;
  text-align: center;
  margin-bottom: 16px;
}

.profile-header-container {
  display: flex;
  flex-direction: column;
  padding-left: 32px;
}
.profile-header-container #user-header {
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 0;
}
.profile-header-container #user-member-since {
  font-size: 16px;
  margin-bottom: 16px;
}

.metrics-container {
  display: flex;
  padding-top: 36px;
  flex: 1;
  width: 100%;
  justify-content: end;
}
.metrics-container .posts-container,
.metrics-container .feedback-container {
  width: 200px;
  display: flex;
}
.metrics-container #user-feedback {
  width: 64px;
}
.metrics-container .metric-hdr {
  padding-top: 3px;
}
.metrics-container #user-posts {
  width: 64px;
}
.metrics-container .metric-hdr {
  padding-top: 8px;
}

.card-row {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  width: 100%;
  padding-bottom: 24px;
  padding-bottom: 24px;
}

.card-column {
  display: flex;
  flex-direction: column;
  flex-basis: 100%;
  flex: 1;
}

.profile-card {
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.mobile-card {
  padding-left: 56px;
  padding-right: 56px;
  margin-bottom: 16px;
}

.desktop-card {
  padding: 56px 32px 56px 32px;
  margin-bottom: 16px;
  margin-top: 32px;
}
.desktop-card .card-inner {
  display: flex;
}

@media screen and (max-width: 960px) {
  .desktop-card {
    padding-left: 0;
    padding-right: 0;
  }
}
@media (max-width: 820px) {
  .profile-header-container {
    padding: 8px;
    margin-top: 0;
  }
}
.mobile-metric-hdr {
  text-align: center;
  font-size: 20px;
  font-weight: 400;
}

.mobile-metric {
  text-align: center;
  font-size: 24px;
  font-weight: 600;
}

.fa-hourglass-start {
  color: var(--colour-active-grey);
}

.fa-envelope {
  color: var(--colour-primary-darker);
}

.icon-poke, .icon-hourglass {
  width: 40px;
  height: 40px;
}

.moderating-tags-list {
  padding-bottom: 16px;
}

.profile-small-padding {
  margin-top: 1px;
}

.profile-large-padding {
  margin-top: 20px;
}

#shrink-margin-bottom {
  margin-bottom: 1px; /* Reduce the bottom margin for this specific h3 */
}

ul.admin-list {
  list-style: none;
  padding-left: 0;
  margin-top: 16px;
}
ul.admin-list li {
  margin-bottom: 8px;
}

.link-header {
  margin-bottom: 8px;
}
a .link-header:hover::after {
  text-decoration-color: var(--colour-faint-underline-hover);
}

.member-item {
  margin-bottom: 8px;
  cursor: pointer !important;
}
.member-item:hover {
  text-decoration-color: var(--colour-faint-underline-hover);
  text-decoration: underline;
}

h2.member-name {
  font-size: 28px;
  margin-top: 4px;
  margin-bottom: 4px;
}

h3.member-header {
  margin-bottom: 4px;
}

.member-last-visited,
.member-post-count {
  margin-bottom: 4px;
}

.member-view-profile {
  font-size: 14px;
  margin-bottom: 24px;
  float: left;
  padding-right: 24px;
}

.member-view-azure-settings {
  font-size: 14px;
  margin-bottom: 24px;
}

ul.member-list {
  list-style: none;
  padding-left: 0;
  margin-top: 0;
}
ul.member-list li.member-list-item {
  margin-bottom: 0;
}

.member-activity-container {
  margin-bottom: 16px;
}

.member-activity-date {
  font-size: 12px;
}

/* Shared Canvas styles */
.canvas-container-value-canvas {
  padding: 16px;
}

.canvas-title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 24px;
}

.canvas-header-container {
  display: flex;
  justify-content: center;
  padding: 32px;
  align-items: center;
}

.canvas-body-container {
  display: flex;
  flex-wrap: wrap;
  /* allows wrapping if screen gets smaller */
  justify-content: space-between;
  gap: 24px;
}

.canvas-highlighted-text {
  color: #1A7D8F;
  line-height: 40px;
}

.canvas-slide-container {
  border: 2px solid #1A7D8F;
  border-radius: 16px;
  padding: 32px;
  font-size: 20px;
}

.canvas-slide-mt-5 {
  margin-top: 24px;
  /* Equivalent to Bootstrap's mt-5 (adjust value as needed) */
}

/* Styles for Roadmap release canvas*/
.canvas-container-roadmap-release {
  padding: 16px;
}

.roadmap-header-container {
  align-items: center;
  font-family: system-ui;
}

.roadmap-body-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px;
}

.roadmap-body-container-small {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 16px;
}

.roadmap-release-header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.roadmap-release-block-container {
  flex: 1 1 15%;
  min-width: 180px;
  box-sizing: border-box;
}

.roadmap-release-item-container {
  padding: 10px;
  color: #fff;
  font-size: 1.4em;
}

.roadmap-release-list-container {
  padding: 10px;
  background: #E5F2F4;
}

.roadmap-release-list {
  padding: 8px;
  min-height: 320px;
}

.roadmap-release-item-name {
  font-size: 24px;
}

.roadmap-release-list-item {
  list-style-type: none;
  margin-bottom: 4px;
  font-size: 14px;
  line-height: 32px;
  padding: 14px;
  margin-bottom: 8px;
  border-radius: 6px;
  color: #fff;
  /*font-weight: bold;*/
  /*text-align: center;*/
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s;
  /*font-size: 1.2em;*/
}

/*.roadmap-release-list-item:hover {
    transform: scale(1.05);
  }*/
.roadmap-subheader-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  /*gap: 8px;*/
  margin-bottom: 8px;
}

.roadmap-chip {
  display: inline-block;
  padding: 0.2em 0.5em;
  margin-right: 0.5em;
  background-color: #e0e0e0;
  color: #333;
  border-radius: 12px;
  font-size: 0.75em;
  font-weight: bold;
}

.canvas-tag-chip {
  text-align: center;
  font-size: 12px;
  min-width: 80px;
  margin-bottom: 8px;
  margin-left: 8px;
  padding: 4px 16px 8px 16px;
  border-radius: 8px;
  color: #fff;
  white-space: nowrap;
}

/* Styles for Value proposition canvas */
.value-canvas-header-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.value-canvas-header-spacer {
  width: 32px;
}

.value-canvas-header-icon-container {
  display: flex;
  margin: 0 32px 0;
}

.value-canvas-header-icon {
  font-size: 80px;
  margin-bottom: 8px;
}

.value-canvas-header-img img {
  width: 64px;
  height: 64px;
  margin-bottom: 8px;
}

.value-canvas-header-name {
  width: 120px;
  font-size: 24px;
}

.value-canvas-block-container {
  flex: 1 1 15%;
  min-width: 180px;
  box-sizing: border-box;
}

.value-canvas-item-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 24px;
}

.value-canvas-item-icon {
  font-size: 48px;
}

.value-canvas-item-img img {
  width: 32px;
  height: 32px;
}

.value-canvas-item-name {
  font-size: 24px;
}

.value-canvas-item-subheader {
  font-size: 14px;
  color: #777;
}

.value-canvas-list {
  padding: 8px;
  min-height: 280px;
}

.value-canvas-list-item {
  list-style-type: none;
  margin-bottom: 4px;
  font-size: 14px;
  line-height: 32px;
}

/* Styles for Metric okrs canvas */
.metric-canvas-body-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 8px;
  gap: 8px;
}

.metric-canvas-key-header-container {
  display: flow-root;
  width: 100%;
}

.metric-canvas-key-header {
  float: right;
  font-weight: 600;
}

.metric-canvas-item-name {
  font-size: 40px;
  color: #777;
}

.metric-canvas-item-subheader {
  font-size: 16px;
  color: #777;
}

.metric-canvas-header-icon-container {
  display: flex;
  margin: 0 32px 0;
}

.metric-canvas-header-icon {
  font-size: 80px;
  margin-bottom: 8px;
  padding-left: 8px;
}

.metric-canvas-block-container {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  width: 100%;
}

.metric-canvas-header-container,
.metric-canvas-item-container {
  display: flex;
  flex-direction: row;
  /*min-width: 472px;*/
  width: 50%;
}

.metric-canvas-header-container-last {
  display: flex;
  flex-direction: row;
  flex-grow: 1;
  width: 50%;
}

.metric-canvas-item-container-last {
  flex-grow: 1;
  width: 50%;
}

.metric-canvas-list-container {
  width: 100%;
  height: 100%;
  min-height: 104px;
}

.metric-canvas-item-name-container {
  display: flex;
  flex-direction: column;
  padding-top: 12px;
  padding-left: 16px;
}

.metric-canvas-list {
  padding: 8px;
}

.metric-canvas-list-item {
  list-style-type: none;
  margin-bottom: 4px;
  font-size: 14px;
}

@media screen and (max-width: 576px) {
  .value-canvas-header-icon-container {
    margin: 0 24px 0;
  }
  .value-canvas-header-name {
    width: 104px;
  }
  .value-canvas-header-icon {
    font-size: 56px;
  }
  .metric-canvas-body-container {
    gap: 12px;
  }
  .metric-canvas-header-container,
  .metric-canvas-item-container {
    min-width: inherit;
  }
  .metric-canvas-header-container,
  .metric-canvas-header-container-last {
    display: none;
  }
  .metric-canvas-header-container-last {
    width: 50%;
  }
  .roadmap-release-block-container {
    width: 100%;
  }
  .roadmap-subheader-chips {
    flex-wrap: inherit;
    justify-content: inherit;
    gap: 0;
    margin-bottom: 8px;
  }
}
@media screen and (max-width: 576px) {
  .metric-canvas-header-container,
  .metric-canvas-header-container-last {
    display: none;
  }
  .metric-canvas-header-container-last {
    width: 50%;
    flex-grow: 1;
  }
  .metric-canvas-item-container-last {
    flex-grow: 1;
    width: 50%;
  }
}
.canvas-tag {
  min-width: 144px !important;
  cursor: pointer;
  text-align: center;
  text-transform: lowercase;
  float: left;
  font-size: 12px;
  margin-bottom: 8px;
  margin-right: 8px;
  padding: 0 8px 0 8px;
  height: auto;
  line-height: 28px;
  border-radius: 16px;
  border: 2px solid #fff;
  white-space: normal;
  word-break: break-word;
}
.canvas-tag:hover {
  text-decoration: underline !important;
}

.canvas-subheader {
  clear: both;
  padding-top: 24px;
}

#nfr-list {
  list-style-type: none;
  padding: 0;
}

#nfr-list li {
  padding: 10px;
  margin-bottom: 5px;
  border-bottom: 1px solid var(--colour-trim-grey);
  display: flex;
  flex-wrap: wrap; /* Allow wrapping of elements if needed */
  align-items: flex-start; /* Ensure items align at the top */
}

#nfr-list li span {
  display: inline-flex;
  align-items: center;
}

#nfr-list li .nfr-text {
  flex: 1;
  white-space: normal; /* Allow wrapping */
  overflow: visible;
  text-overflow: unset;
}

.nfr-chip {
  display: inline-block;
  background-color: #f1f1f1;
  border-radius: 15px;
  padding: 2px 8px;
  margin-left: 10px;
  margin-right: 10px;
  font-weight: bold;
  font-size: 0.9rem;
  color: #333;
  flex-shrink: 0; /* Prevent shrinking of the chip */
  align-self: flex-start; /* Prevent chip from expanding vertically */
}

@media (max-width: 540px) {
  #nfr-list li .nfr-text {
    flex: unset;
  }
}
.form-container {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.column {
  flex: 1;
}

.btn-fab-mini {
  margin-right: 0;
  margin-top: 10px;
  margin-bottom: 0;
  padding-bottom: 0;
  border-radius: 50%;
  height: 32px;
  width: 32px;
  margin-left: 8px;
  margin-right: 8px;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.2);
  cursor: pointer;
}

input.config-form-value[type=text],
input.config-form-value[type=number],
select.config-form-value {
  width: 100%;
  padding: 8px 16px;
  margin: 4px 0 8px;
  line-height: 24px;
  display: inline-block;
  box-sizing: border-box;
  border-width: 1px;
}

.form-label {
  font-size: 14px;
}

.error-label {
  color: var(--colour-error-label);
  font-size: small;
}

.model-row {
  font-size: 14px;
  cursor: pointer;
}

.livedoc-header h3 {
  display: inline-block;
}

.livedoc-hdr-btn {
  display: inline-block;
  float: right;
  padding-top: 8px;
  margin-right: 16px;
  cursor: pointer;
}
.livedoc-hdr-btn.disabled {
  pointer-events: none;
  cursor: not-allowed !important;
}

.livedoc-package-btn {
  display: inline-block;
  float: right;
  cursor: pointer;
}
.livedoc-package-btn.disabled {
  pointer-events: none;
  cursor: not-allowed !important;
}

.livedoc-hdr-text {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .form-container {
    flex-direction: column;
  }
  .title-value {
    display: none;
  }
}
.input-with-icon {
  display: flex;
  align-items: center;
  gap: 8px;
  /* spacing between input and icon */
}

.input-with-icon input {
  flex: 1;
}

.container,
.container-fluid {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  width: 100%;
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  margin-right: auto;
  margin-left: auto;
}

.alert {
  position: relative;
  padding: 1rem 1rem;
  margin-bottom: 1rem;
  border: 1px solid transparent;
  border-radius: 0.25rem;
}
.alert p a {
  color: inherit;
  text-decoration: underline;
}

.alert-success {
  color: #0f5132;
  background-color: #d1e7dd;
  border-color: #badbcc;
}

.alert-warning {
  color: #664d03;
  background-color: #fff3cd;
  border-color: #ffecb5;
}

.alert-danger {
  color: #842029;
  background-color: #f8d7da;
  border-color: #f5c2c7;
}

@media (min-width: 1200px) {
  h4.alert-heading {
    font-size: 1.5rem;
  }
}
.alert-heading {
  color: inherit;
}

h4.alert-heading {
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-weight: 500;
  line-height: 1.2;
}

hr:not([size]) {
  height: 1px;
}

hr {
  margin: 1rem 0;
  color: inherit;
  background-color: currentColor;
  border: 0;
  opacity: 0.25;
}

.mb-0 {
  margin-bottom: 0 !important;
}

/* ==========================================================================
   Entries (Posts, collection documents, etc.)
   ========================================================================== */
.entry {
  clear: both;
  position: relative;
}
.entry::after {
  clear: both;
  content: "";
  display: table;
}
.entry a {
  color: inherit;
}

.entry-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.entry-title {
  margin-bottom: 0.5rem;
  font-family: "Roboto", sans-serif;
  font-weight: inherit;
  letter-spacing: -1px;
  word-wrap: break-word; /* break long words that could overflow */
}
.entry-title a {
  text-decoration: none;
}
.entry-title a[rel=bookmark]::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
}

.entry-image {
  -webkit-box-ordinal-group: 0;
  -ms-flex-order: -1;
  order: -1;
  width: 100%;
  margin-bottom: 0.5rem;
}

.entry-meta .entry-date,
.entry-meta .read-time {
  font-family: "Open Sans", "Verdana", "Helvetica", "Arial", sans-serif;
  white-space: nowrap;
}
.entry-meta .read-time + .entry-date::before {
  content: "•";
  padding: 0 0.5em;
}

.entry-excerpt a,
.u-bookmark-of {
  position: relative;
  z-index: 10;
}

.label-pinned {
  margin-left: 32px;
}

/*
   Entries List Layout
   ========================================================================== */
.entries-list .entry {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-bottom: 2rem;
}
.entries-list .entry-title {
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
}
.entries-list .entry-excerpt,
.entries-list .entry-content {
  -webkit-box-ordinal-group: 4;
  -ms-flex-order: 3;
  order: 3;
  /* remove space after last child element */
}
.entries-list .entry-excerpt > *:last-child,
.entries-list .entry-content > *:last-child {
  margin-bottom: 0;
}
.entries-list .entry-excerpt {
  /* normalize font sizes */
}
.entries-list .entry-excerpt > * {
  font-size: 1rem;
}
.entries-list .entry-meta {
  -webkit-box-ordinal-group: 3;
  -ms-flex-order: 2;
  order: 2;
  margin-bottom: 1em;
  font-size: 0.75rem;
}
.entries-list .more-link {
  margin-top: -1em;
}
.entries-list .more-link a {
  text-decoration: none;
}

/*
   Entries Grid Layout
   ========================================================================== */
.entries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  grid-gap: 2em;
}
.entries-grid .entry {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding-bottom: 2rem;
}
.entries-grid .entry-title {
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
}
.entries-grid .entry-excerpt,
.entries-grid .entry-content {
  -webkit-box-ordinal-group: 4;
  -ms-flex-order: 3;
  order: 3;
  /* remove space after last child element */
}
.entries-grid .entry-excerpt > *:last-child,
.entries-grid .entry-content > *:last-child {
  margin-bottom: 0;
}
.entries-grid .entry-excerpt {
  /* normalize font sizes */
}
.entries-grid .entry-excerpt > * {
  font-size: 1rem;
}
.entries-grid .entry-meta {
  -webkit-box-ordinal-group: 3;
  -ms-flex-order: 2;
  order: 2;
  margin-bottom: 1em;
  font-size: 0.75rem;
}
.entries-grid .more-link {
  margin-top: -1em;
}
.entries-grid .more-link a {
  text-decoration: none;
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
/*
   Default button
   ========================================================================== */
.btn {
  /* default */
  display: inline-block;
  margin-bottom: 0.25em;
  padding: 0.5em 1em;
  font-family: "Open Sans", "Verdana", "Helvetica", "Arial", sans-serif;
  font-size: 1rem;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  border-width: 0;
  border-radius: 0.25rem;
  cursor: pointer;
  /* fills width of parent container */
  /* disabled */
  /* extra large button */
  /* large button */
  /* small button */
}
.btn .icon {
  margin-right: 0.5em;
}
.btn .icon + .hidden {
  margin-left: -0.5em; /* override for hidden text*/
}
.btn--block {
  display: block;
  width: 100%;
}
.btn--block + .btn--block {
  margin-top: 0.25em;
}
.btn--disabled {
  pointer-events: none;
  cursor: not-allowed;
  filter: alpha(opacity=65);
  box-shadow: none;
  opacity: 0.65;
}
.btn--x-large {
  font-size: 2rem;
}
.btn--large {
  font-size: 1.5rem;
}
.btn--small {
  font-size: 0.75rem;
}

/*
Subscription CSS
*/
.btn-subscribe {
  width: 200px;
  height: 42px;
  margin-bottom: 24px;
  border-radius: 5rem;
  background-color: var(--colour-primary);
  color: var(--colour-white);
  box-shadow: 0 3px 4px 0 rgba(0, 0, 0, 0.25);
}
.btn-subscribe:hover {
  box-shadow: 0 0 6px #4285f4;
  cursor: pointer;
}
.btn-subscribe:active {
  background: #1669F2;
}

.subscribe-icon {
  fill: var(--colour-white);
  height: 20px;
  width: 20px;
  vertical-align: top;
}

.subscribe-label {
  padding-left: 16px;
}

.message-label {
  padding-left: 24px;
}

/******/
.subscribe-button {
  width: 200px;
  height: 42px;
  margin-bottom: 24px;
  border-radius: 5rem;
  background-color: var(--colour-primary-dark);
  color: var(--colour-white);
  box-shadow: 0 3px 4px 0 rgba(0, 0, 0, 0.25);
  border: none;
}
.subscribe-button:hover {
  box-shadow: 0 0 6px #4285f4;
  cursor: pointer;
}
.subscribe-button:active {
  background: #1669F2;
}

.subscribe-button .button-text {
  margin-left: 5px;
}

.hidden {
  display: none;
}

/* ==========================================================================
   Icons
   ========================================================================== */
.icon {
  display: inline-block;
  position: relative;
  top: -0.05em; /* fine-tune alignment */
  width: 1em;
  height: 1em;
  line-height: 1;
  vertical-align: middle;
  fill: currentColor;
}
.icon--bitbucket {
  fill: #205081;
}
.icon--codepen {
  fill: #000;
}
.icon--dribbble {
  fill: #ea4c89;
}
.icon--email {
  fill: #000;
}
.icon--facebook {
  fill: #3b5998;
}
.icon--flickr {
  fill: #0063dc;
}
.icon--github {
  fill: #181717;
}
.icon--gitlab {
  fill: #e24329;
}
.icon--googleplus {
  fill: #dc4e41;
}
.icon--instagram {
  fill: #e4405f;
}
.icon--lastfm {
  fill: #d51007;
}
.icon--linkedin {
  fill: #0077b5;
}
.icon--pinterest {
  fill: #bd081c;
}
.icon--rss {
  fill: #ffa500;
}
.icon--soundcloud {
  fill: #f30;
}
.icon--stackoverflow {
  fill: #fe7a16;
}
.icon--tumblr {
  fill: #36465d;
}
.icon--twitter {
  fill: #1da1f2;
}
.icon--xing {
  fill: #005a5f;
}
.icon--youtube {
  fill: #cd201f;
}

/* ==========================================================================
   NOTICE TEXT BLOCKS
   ========================================================================== */
/**
 *  Default Kramdown usage (no indents!):
 *  <div class="notice" markdown="1">
 *  #### Headline for the Notice
 *  Text for the notice
 *  </div>
 */
.search-container {
  margin-left: 16px;
  border: 1px solid;
  height: 52px;
  box-sizing: border-box;
}

.search-input-mobile {
  float: left;
  height: 50px;
  line-height: 50px;
  width: 80%;
  padding: 0 10px;
  border: none;
  box-sizing: border-box;
}

.btn-search {
  border: none;
  width: 20%;
  height: 50px;
  float: right;
  background-color: #ffffff;
  border-color: transparent;
  border-left: 1px solid transparent;
  border: none;
  padding: 0 10px;
  background-position: 16px 50%;
  text-align: center;
  box-sizing: border-box;
  cursor: pointer;
  padding-top: 8px;
  font-size: 20px;
}

#btn-search-desktop,
#btn-search-members {
  position: absolute;
  right: 0;
  margin-right: 0;
  height: 32px;
  width: 104px;
  top: 50%;
  font-weight: 400;
  border: 1px solid;
  border-radius: 0;
  line-height: 1em !important;
  transform: translateY(-50%);
  background-color: transparent;
  cursor: pointer;
  padding: 6px 24px;
  margin-bottom: 0;
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.search-container.desktop,
.search-container.member-search {
  margin-left: 0;
  width: 100%;
  height: 32px;
  border: none !important;
  box-sizing: border-box;
  border-radius: 0;
}

@media screen and (max-width: 912px) {
  .search-input-group {
    width: 304px !important;
  }
}
@media screen and (max-width: 576px) {
  .search-container {
    width: 100%;
  }
}
.search-input-group {
  float: right;
  position: relative;
  width: 512px;
  display: flex;
  /*flex-wrap: wrap;*/
  align-items: stretch;
}

#input-desktop-search,
#input-member-search {
  padding-left: 36px;
  border: 1px solid;
  -webkit-appearance: none;
  z-index: 0;
  position: relative;
  flex: 1 1 auto;
  width: 1%;
  min-width: 0;
  margin-bottom: 0;
  max-width: 100%;
  background-color: transparent;
}
#input-desktop-search::placeholder,
#input-member-search::placeholder {
  background-color: transparent;
  color: #72767E;
}

.search-icon {
  height: 22px;
  width: 22px;
  position: absolute;
  left: 8px;
  top: 16px;
  transform: translateY(-50%);
  overflow: hidden;
  vertical-align: middle;
}
.search-icon path {
  fill: #939393;
}

input[type=search] {
  border: none;
  margin: 0;
  padding: 7px 8px;
  font-size: 14px;
  border: 1px solid transparent;
  border-radius: inherit;
}

/* ==========================================================================
   Syntax highlighting
   ========================================================================== */
/* Inline code block */
code.highlighter-rouge {
  margin: 0;
  padding: 0.2em 0.4em;
  font-size: 85%;
  border-radius: 3px;
}

/* Multi-line code blocks */
div.highlighter-rouge,
figure.highlight {
  position: relative;
  margin-bottom: 1em;
  font-family: Menlo, Consolas, Monaco, "Courier New", Courier, monospace;
  line-height: 1.8;
}
div.highlighter-rouge > pre,
div.highlighter-rouge pre.highlight,
figure.highlight > pre,
figure.highlight pre.highlight {
  margin: 0;
  padding: 1em;
}

.highlight table {
  margin-bottom: 0;
  font-size: 1rem;
  border: 0;
}
.highlight table td {
  padding: 0;
  width: calc(100% - 1em);
  border: 0;
  /* line numbers*/
  /* code */
}
.highlight table td.gutter {
  padding-right: 1em;
  width: 1em;
  border-right: 1px solid;
  text-align: right;
}
.highlight table td.code {
  padding-left: 1em;
}
.highlight table pre {
  margin: 0;
}

.highlight pre {
  width: 100%;
}

.gist td,
.gist th {
  border-bottom: 0;
}

#toggle-container-carousel {
  position: absolute;
  bottom: 4px;
  left: 16px;
}

@media screen and (max-width: 1368px) {
  #toggle-container-carousel {
    bottom: -4px;
  }
}
#toggle-container-search {
  position: absolute;
  bottom: -24px;
  right: 104px;
  display: block;
}

@media screen and (max-width: 820px) {
  #toggle-container-search {
    display: none;
  }
}
#toggle-wrapper-toggle-mobile {
  position: relative;
  display: flex;
  height: 48px;
  border-radius: 36px;
  padding: 12px 16px 0px 0px;
  border: 2px solid transparent;
  cursor: pointer;
}

#toggle-container-mobile {
  position: absolute;
  bottom: -24px;
  right: 104px;
  display: none;
}

@media screen and (max-width: 820px) {
  #toggle-container-mobile {
    min-width: 160px;
    bottom: -142px;
    right: 0;
    display: block;
  }
}
.toggle-wrapper-highlight:hover {
  text-decoration: underline;
}

[role=switch] {
  position: relative;
  display: flex;
  height: 32px;
  border-radius: 36px;
  padding: 4px 16px;
  border: 2px solid transparent;
  cursor: pointer;
}

[role=switch] .label {
  font-family: "Open sans";
  padding-right: 8px;
  line-height: 18px;
}

[role=switch] .switch {
  position: relative;
  display: inline-block;
  user-select: none;
  -moz-transition: 0.4s ease;
  -o-transition: 0.4s ease;
  -webkit-transition: 0.4s ease;
  transition: 0.4s ease;
  -webkit-tap-highlight-color: transparent;
  height: 18px;
  width: 28px;
  border-width: 4px;
  border-radius: 48px;
  border-style: solid;
  cursor: pointer;
}

[role=switch] .switch:before {
  content: "";
  position: absolute;
  display: block;
  -moz-transition: 0.2s cubic-bezier(0.24, 0, 0.5, 1);
  -o-transition: 0.2s cubic-bezier(0.24, 0, 0.5, 1);
  -webkit-transition: 0.2s cubic-bezier(0.24, 0, 0.5, 1);
  transition: 0.2s cubic-bezier(0.24, 0, 0.5, 1);
  height: 13px;
  width: 24px;
  top: -1px;
  left: -2px;
  border-radius: 48px;
}

[role=switch] .switch:after {
  content: "";
  position: absolute;
  display: block;
  box-shadow: 0 0 0 4px rgb(255, 255, 255), 0 4px 0px 0 hsla(0, 0%, 0%, 0.04), 0 4px 9px hsla(0, 0%, 0%, 0.13), 0 3px 3px hsla(0, 0%, 0%, 0.05);
  -moz-transition: 0.35s cubic-bezier(0.54, 1.6, 0.5, 1);
  -o-transition: 0.35s cubic-bezier(0.54, 1.6, 0.5, 1);
  -webkit-transition: 0.35s cubic-bezier(0.54, 1.6, 0.5, 1);
  transition: 0.35s cubic-bezier(0.54, 1.6, 0.5, 1);
  height: 10px;
  width: 10px;
  top: 0;
  left: 0;
  border-radius: 28px;
}

[role=switch][aria-checked=true] .switch:before {
  -moz-transition: width 0.2s cubic-bezier(0, 0, 0, 0.1);
  -o-transition: width 0.2s cubic-bezier(0, 0, 0, 0.1);
  -webkit-transition: width 0.2s cubic-bezier(0, 0, 0, 0.1);
  transition: width 0.2s cubic-bezier(0, 0, 0, 0.1);
}

[role=switch][aria-checked=true] .switch:after {
  left: 10px;
}

[role=switch]:focus span.switch {
  background-color: white;
}

.form-container {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.column {
  flex: 1;
}

.btn-fab-mini {
  margin-right: 0;
  margin-top: 10px;
  margin-bottom: 0;
  padding-bottom: 0;
  border-radius: 50%;
  height: 32px;
  width: 32px;
  margin-left: 8px;
  margin-right: 8px;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.2);
  cursor: pointer;
}

input.config-form-value[type=text],
input.config-form-value[type=number],
select.config-form-value {
  width: 100%;
  padding: 8px 16px;
  margin: 4px 0 8px;
  line-height: 24px;
  display: inline-block;
  box-sizing: border-box;
  border-width: 1px;
}

.form-label {
  font-size: 14px;
}

.error-label {
  color: var(--colour-error-label);
  font-size: small;
}

.model-row {
  font-size: 14px;
  cursor: pointer;
}

.content-import-header h3 {
  display: inline-block;
}

.content-import-hdr-btn {
  display: inline-block;
  float: right;
  padding-top: 8px;
  margin-right: 16px;
  cursor: pointer;
}
.content-import-hdr-btn.disabled {
  pointer-events: none;
  cursor: not-allowed !important;
}

.content-import-package-btn {
  display: inline-block;
  float: right;
  cursor: pointer;
}
.content-import-package-btn.disabled {
  pointer-events: none;
  cursor: not-allowed !important;
}

.content-import-hdr-text {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .form-container {
    flex-direction: column;
  }
  .title-value {
    display: none;
  }
}
.input-with-icon {
  display: flex;
  align-items: center;
  gap: 8px;
  /* spacing between input and icon */
}

.input-with-icon input {
  flex: 1;
}

/* Utility Clases */
/* ==========================================================================
   Accessibility Modules
   ========================================================================== */
/* Text meant only for screen readers */
.screen-reader-text,
.screen-reader-text span,
.screen-reader-shortcut {
  position: absolute !important;
  width: 1px;
  height: 1px;
  clip: rect(0, 0, 0, 0);
  border: 0;
  overflow: hidden;
}
.screen-reader-text:focus,
.screen-reader-text span:focus,
.screen-reader-shortcut:focus {
  display: block;
  top: 5px;
  left: 5px;
  width: auto;
  height: auto;
  padding: 0.75em 1em;
  clip: auto !important;
  border-radius: 0.125em;
  font-weight: bold;
  line-height: normal;
  text-decoration: none;
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  z-index: 100000;
}

.screen-reader-text:focus,
.screen-reader-shortcut:focus {
  width: auto;
  height: auto;
  clip: auto !important;
  text-decoration: none;
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  z-index: 100000;
}

/* ==========================================================================
   Animations
   ========================================================================== */
/* add .animated class to elements you wish to animate
 * along with the type of animation (eg: <div class="animated fadeIn"></div>)
 */
.animated {
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
}

/*
   Fade-in animation .fadeIn
   ========================================================================== */
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

/*
   Fade-in down animation .fadeInDown
   ========================================================================== */
@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
}
@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}

/*
   Drop animation .drop
   ========================================================================== */
@-webkit-keyframes drop {
  0% {
    -webkit-transform: translateY(-500px);
  }
  100% {
    -webkit-transform: translateY(0);
  }
}
@keyframes drop {
  0% {
    -webkit-transform: translateY(-500px);
    transform: translateY(-500px);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
.drop {
  -webkit-animation-name: drop;
  animation-name: drop;
}

/* ==========================================================================
   Alignment
   ========================================================================== */
.align-baseline {
  vertical-align: baseline !important;
} /* Browser default */
.align-top {
  vertical-align: top !important;
}

.align-middle {
  vertical-align: middle !important;
}

.align-bottom {
  vertical-align: bottom !important;
}

.align-text-bottom {
  vertical-align: text-bottom !important;
}

.align-text-top {
  vertical-align: text-top !important;
}

/*
   Image Alignment
   ========================================================================== */
.align-center,
div.align-center,
a img.align-center {
  display: block;
  margin-right: auto;
  margin-left: auto;
}

figure.align-center img {
  display: block;
  margin-right: auto;
  margin-left: auto;
}
figure.align-center figcaption {
  text-align: center;
}

.align-right,
a img.align-right {
  margin-bottom: 1rem;
  margin-left: 1rem;
  float: right;
}

.align-left,
a img.align-left {
  margin-right: 1rem;
  margin-bottom: 1rem;
  float: left;
}

/* ==========================================================================
   Clearfix
   ========================================================================== */
.clearfix {
  clear: both;
}
.clearfix::after {
  clear: both;
  content: "";
  display: table;
}

/* ==========================================================================
   Floats
   ========================================================================== */
.float-left {
  float: left !important;
}

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

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

/* ==========================================================================
   Text
   ========================================================================== */
/*
   Alignment
   ========================================================================== */
.text-justify {
  text-align: justify !important;
}

.text-nowrap {
  white-space: nowrap !important;
}

.text-left {
  text-align: left !important;
}

.text-right {
  text-align: right !important;
}

.text-center {
  text-align: center !important;
}

/*
   Transformation
   ========================================================================== */
.text-lowercase {
  text-transform: lowercase !important;
}

.text-uppercase {
  text-transform: uppercase !important;
}

.text-capitalize {
  text-transform: capitalize !important;
}

.text-truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.text-sentencecase {
  text-transform: lowercase !important;
}

.text-sentencecase:first-letter {
  text-transform: uppercase !important;
}

.text-transform-none {
  text-transform: none !important;
}

/*
   Sizing
   ========================================================================== */
.small {
  font-size: 80%;
}

/* ==========================================================================
   Responsive Embed
   Credit: Nicolas Gallagher and SUIT CSS.

   <!-- 16:9 aspect ratio -->
   <div class="responsive-embed responsive-embed-16by9">
     <iframe class="responsive-embed-item" src="..."></iframe>
   </div>

   <!-- 4:3 aspect ratio -->
   <div class="responsive-embed responsive-embed-4by3">
     <iframe class="responsive-embed-item" src="..."></iframe>
   </div>
   ========================================================================== */
.responsive-embed {
  display: block;
  position: relative;
  width: 100%;
  margin-bottom: 1.5rem;
  padding: 0;
  overflow: hidden;
}
.responsive-embed::before {
  display: block;
  content: "";
}
.responsive-embed .responsive-embed-item,
.responsive-embed iframe,
.responsive-embed embed,
.responsive-embed object,
.responsive-embed video {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.responsive-embed-21by9::before {
  padding-top: 42.8571428571%;
}

.responsive-embed-16by9::before {
  padding-top: 56.25%;
}

.responsive-embed-4by3::before {
  padding-top: 75%;
}

.responsive-embed-1by1::before {
  padding-top: 100%;
}

/* ==========================================================================
   User feedback form
   ========================================================================== */
.feedback-input {
  width: 100%;
  border: 1px solid;
  outline: none;
  font-size: 14px;
  line-height: 2;
  padding-top: 5px;
  resize: none;
}

/* Customize radio buttons as clickable buttons */
#feedback-options {
  margin-bottom: -16px;
  z-index: 1;
  align-items: center;
  justify-content: center;
}

input[type=radio] { /* Hide the default radio button */
  position: absolute;
  left: -9999px;
}

.feedback-option-div > label {
  display: inline-block;
  padding-top: 8px;
  padding-bottom: 8px;
  padding-left: 10px;
  padding-right: 12px;
  border-radius: 20px;
  background-color: var(--colour-background);
  color: var(--colour-text);
  min-width: 200px;
  border: 1px solid var(--colour-text);
}

.feedback-option-div > label > span.feedback-icon-label {
  padding-left: 16px;
}

/* Default mode*/
input[type=radio] + label > span, input[type=radio] + label {
  background-color: var(--colour-background);
  color: var(--colour-text);
  border-color: var(--colour-text);
}

/* Style the label when the associated radio button is checked */
input[type=radio]:checked + label > span {
  background-color: var(--colour-bg-contrast);
  color: var(--colour-background);
  border-color: var(--colour-background);
}

input[type=radio]:checked + label {
  background-color: var(--colour-bg-contrast);
  color: var(--colour-background);
  border-color: var(--colour-background);
}

/* Style the label when the associated radio button is on hover */
input[type=radio]:hover:not(:checked) + label > span {
  text-decoration: underline;
}

input[type=radio]:hover:not(:checked) + label > span,
input[type=radio]:hover:not(:checked) + label {
  background-color: var(--colour-trim-grey);
}

.feedback-option-div {
  float: left;
  padding-left: 16px;
  padding-right: 16px;
}

.feedback-icon {
  height: 20px;
  width: 20px;
  vertical-align: top;
}

.feedback-icon-colour {
  fill: currentColor;
}

.feedback-icon-colour-checked {
  fill: var(--colour-white);
}

#new-feedback-text {
  padding: 10px;
  resize: none;
}

#user-feedback::placeholder, #new-feedback-text::placeholder {
  background-color: var(--colour-white);
  color: var(--colour-helper-grey);
}

.support-span > a {
  color: var(--colour-hyperlink);
  text-decoration: underline;
}
.support-span > a:hover {
  color: var(--colour-hyperlink-hover);
}

.up-vote-icon, .down-vote-icon {
  height: 24px;
  width: 24px;
  /* bottom margin for down vote */
}

.feedback-button-bar {
  padding-top: 5px;
  width: 100%;
}

.btn-feedback {
  width: 200px;
  height: 42px;
  margin-bottom: 8px;
  border-radius: 0.25rem;
  background-color: var(--colour-white);
  box-shadow: 0 3px 4px 0 rgba(0, 0, 0, 0.25);
}
.btn-feedback:hover {
  box-shadow: 0 0 6px #4285f4;
  cursor: pointer;
}
.btn-feedback:active {
  background: #1669F2;
}

/* TO DO */
.success-message {
  padding: 10px;
  border-radius: 10px;
  color: var(--colour-text);
  justify-content: center;
  text-align: center;
  border: 1px solid var(--colour-success);
  font-size: small;
}

.feedback-container {
  padding-top: 48px;
}

.post-footnote ul {
  padding-top: 20px;
}

.post-footnote ul li {
  margin-left: -20px;
}

/* Copyright */
.post-copyright div {
  margin-left: 8px;
  margin-top: -6px;
  padding-left: 24px;
  padding-bottom: 8px;
}

.top-posts-label {
  margin-bottom: 16px;
}

a.disabled {
  pointer-events: none;
  cursor: default;
}

#word-cloud-container {
  width: 100%;
  max-width: 100%; /* Ensures it takes full width on smaller screens */
  margin: 0 auto;
}

#word-cloud {
  width: 100%;
  height: 500px; /* Default height */
}

/* Media queries for responsive design */
@media only screen and (max-width: 1600px) {
  #word-cloud {
    height: 600px;
  }
}
@media only screen and (max-width: 820px) {
  #word-cloud {
    height: 450px; /* Adjust height for tablets */
  }
}
@media only screen and (max-width: 430px) {
  #word-cloud {
    height: 300px; /* Adjust height for mobile devices */
  }
}
div.jqcloud {
  font-family: inherit;
  /* margin-top: -60px;
   margin-bottom: -60px;*/
  margin-left: auto;
  margin-right: auto;
}
div.jqcloud span.w10 {
  color: currentColor;
  font-size: 300%;
  font-weight: 900;
}
div.jqcloud span.w9 {
  color: currentColor;
  font-size: 275%;
  font-weight: 800;
}
div.jqcloud span.w8 {
  color: currentColor;
  font-size: 250%;
  font-weight: 700;
}
div.jqcloud span.w7 {
  color: currentColor;
  font-size: 220%;
  font-weight: 600;
}
div.jqcloud span.w6 {
  color: currentColor;
  font-size: 200%;
  font-weight: 500;
}
div.jqcloud span.w5 {
  color: currentColor;
  font-size: 180%;
  font-weight: 400;
}
div.jqcloud span.w4 {
  color: currentColor;
  font-size: 160%;
  font-weight: 300;
}
div.jqcloud span.w3 {
  color: currentColor;
  font-size: 140%;
  font-weight: 200;
}
div.jqcloud span.w2 {
  color: currentColor;
  font-size: 130%;
}
div.jqcloud span.w1 {
  color: currentColor;
  font-size: 120%;
}
div.jqcloud a {
  color: inherit;
}

.no-posts-message {
  margin-bottom: 24px;
}

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