@charset "utf-8";

.fa-icon,
blockquote:before {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}

/**********
 Variables
 **********/
body {
  /* Text */
  --text-font-family: 'Redgate', 'Roboto', sans-serif;
  --heading-font-family: 'Redgate', 'Roboto', sans-serif;
  --text-font-size: 15px;
  --text-font-size-large: calc(15px + 2px);
  --heading-1-font-size: 48px;
  --heading-2-font-size: 32px;
  --heading-3-font-size: 24px;
  --heading-4-font-size: 20px;
  --heading-5-font-size: 15px;
  --heading-6-font-size: calc(15px - 2px);
  /* Other */
  --border-radius-base: 16px;
  --border-radius-small: calc(16px / 2);
  --border-radius-button: 50px;
  --logo-height: 40px;
  --border-width: 1px;
  --white-color: #fff;
  /* Assets */
  --assets-check-svg: url(/hc/theming_assets/01HZMP67431ANJ5FWKGFT7Z3F7);
  --assets-circle-svg: url(/hc/theming_assets/01HZMP66RNSA3DQZ0FYAG09NWH);
}

/**********
 Light mode
 **********/
body {
  --primary-color: #cc0000;
  --secondary-color: #ffc107;
  --primary-bg-color: #FFFFFF;
  --primary-bg-color-always: #FFFFFF;
  --secondary-bg-color: #f4f8fa;
  --secondary-bg-color-always: #f4f8fa;
  --primary-text-color: #000C20;
  --secondary-text-color: rgba(55, 55, 55, 1);
  --link-color: rgba(5, 5, 5, 1);
  --border-color: #DDE2EB;
  --info-color: #1863BC;
  --success-color: #67C30B;
  --warning-color: #F1D52F;
  --danger-color: #cc0000;
  --primary-color-light-hover: #ad0000;
  --primary-color-hover: #8f0000;
  --primary-color-active: maroon;
  --secondary-color-hover: #c99700;
  --secondary-color-active: #ba8b00;
  --secondary-bg-color-hover: #e6eff4;
  --secondary-bg-color-active: #dfebf0;
  --secondary-text-color-hover: #2d2d2d;
  --secondary-text-color-active: #282828;
  --link-color-hover: #000;
  --link-color-active: #000;
  --bg-image-opacity: 0.5;
  --bg-image-opacity-dark: 0.5;
  --bg-image-color: var(--primary-text-color);
}

.layout--style-filled .section:nth-child(even),
.layout--style-invert .section:nth-child(odd),
.section--secondary {
  /* Invert colors */
  --primary-bg-color: #f4f8fa;
  --secondary-bg-color: #FFFFFF;
}

/*********
 Dark mode
 *********/
.ui-dark body {
  /* UI dark colors */
  --primary-color: #1863BC;
  --secondary-color: #6DBC1D;
  --primary-bg-color: #000C20;
  --primary-bg-color-always: #000C20;
  --secondary-bg-color: #182233;
  --secondary-bg-color-always: #182233;
  --primary-text-color: #FFFFFF;
  --secondary-text-color: #8290A8;
  --link-color: #1863BC;
  --border-color: #242f42;
  --info-color: #1863BC;
  --success-color: #67C30B;
  --warning-color: #F1D52F;
  --danger-color: #e64545;
  --primary-color-light-hover: #1b71d7;
  --primary-color-hover: #2d81e4;
  --primary-color-active: #3b89e6;
  --secondary-color-hover: #8ce036;
  --secondary-color-active: #93e243;
  --secondary-bg-color-hover: #2c3e5d;
  --secondary-bg-color-active: #304567;
  --link-color-hover: #4891e8;
  --link-color-active: #5699e9;
  --bg-image-opacity: 0.5;
  --bg-image-opacity-dark: 0.75;
  --bg-image-color: var(--primary-bg-color);
}

.ui-dark .layout--style-filled .section:nth-child(even),
.ui-dark .layout--style-invert .section:nth-child(odd),
.ui-dark .section--secondary {
  /* Invert colors */
  --primary-bg-color: #182233;
  --secondary-bg-color: #000C20;
}

/***********
 Base styles
 ***********/
*,
*:before,
*:after {
  box-sizing: border-box;
}

body,
html {
  min-height: 100vh;
}

[dir] body,
[dir] html {
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--text-font-family);
  font-size: var(--text-font-size);
  font-weight: 400;
  line-height: 1.5;
  color: var(--primary-text-color);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

[dir] body {
  background-color: var(--secondary-bg-color);
}

input,
button,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

a {
  color: var(--link-color);
  text-decoration: none;
}

a:hover {
  color: var(--link-color-hover);
}

a:active,
a.is-active {
  color: var(--link-color-active);
}

[dir] a.is-disabled {
  cursor: default;
}

a.is-disabled,
a.is-disabled:hover,
a.is-disabled:active,
a.is-disabled.is-active {
  color: var(--secondary-text-color);
}

[dir] a,
[dir] button,
[dir] [type=submit],
[dir] [type=button],
[dir] [type=reset] {
  cursor: pointer;
}

a,
input,
button,
select,
textarea,
label {
  transition: all 400ms cubic-bezier(0.17, 0.67, 0.54, 1);
}

a:focus,
input:focus,
button:focus,
select:focus,
textarea:focus,
label:focus {
  outline: none;
}

a.focus-visible,
input.focus-visible,
button.focus-visible,
select.focus-visible,
textarea.focus-visible,
label.focus-visible {
  outline: auto 5px -webkit-focus-ring-color;
}

[dir] figure {
  margin: 0;
}

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

audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

/********
 Headings
 ********/
h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
  font-family: var(--heading-font-family);
  font-weight: 700;
}

h1,
.h1 {
  font-size: var(--heading-2-font-size);
  line-height: 1.2;
}

[dir] h1,
[dir] .h1 {
  margin: 0 0 1.2em;
}

[dir] .markdown h1,
[dir] .markdown .h1 {
  margin-top: 1.2em;
}

@media only screen and (min-width: 568px) and (max-aspect-ratio: 13 / 9), only screen and (min-width: 668px) and (min-height: 416px), only screen and (min-width: 980px) {
  h1,
  .h1 {
    font-size: var(--heading-1-font-size);
    line-height: 1.1;
  }

  [dir] h1,
  [dir] .h1 {
    margin: 0 0 1em;
  }

  [dir] .markdown h1,
  [dir] .markdown .h1 {
    margin-top: 1em;
  }
}

h2,
.h2 {
  font-size: var(--heading-3-font-size);
  line-height: 1.3;
}

[dir] h2,
[dir] .h2 {
  margin: 0 0 1.3em;
}

[dir] .markdown h2,
[dir] .markdown .h2 {
  margin-top: 1.3em;
}

@media only screen and (min-width: 568px) and (max-aspect-ratio: 13 / 9), only screen and (min-width: 668px) and (min-height: 416px), only screen and (min-width: 980px) {
  h2,
  .h2 {
    font-size: var(--heading-2-font-size);
    line-height: 1.2;
  }

  [dir] h2,
  [dir] .h2 {
    margin: 0 0 1.2em;
  }

  [dir] .markdown h2,
  [dir] .markdown .h2 {
    margin-top: 1.2em;
  }
}

h3,
.h3 {
  font-size: var(--heading-4-font-size);
  line-height: 1.4;
}

[dir] h3,
[dir] .h3 {
  margin: 0 0 1.4em;
}

[dir] .markdown h3,
[dir] .markdown .h3 {
  margin-top: 1.4em;
}

@media only screen and (min-width: 568px) and (max-aspect-ratio: 13 / 9), only screen and (min-width: 668px) and (min-height: 416px), only screen and (min-width: 980px) {
  h3,
  .h3 {
    font-size: var(--heading-3-font-size);
    line-height: 1.3;
  }

  [dir] h3,
  [dir] .h3 {
    margin: 0 0 1.3em;
  }

  [dir] .markdown h3,
  [dir] .markdown .h3 {
    margin-top: 1.3em;
  }
}

h4,
.h4 {
  font-size: var(--heading-4-font-size);
  line-height: 1.4;
}

[dir] h4,
[dir] .h4 {
  margin: 0 0 1.4em;
}

[dir] .markdown h4,
[dir] .markdown .h4 {
  margin-top: 1.4em;
}

h5,
.h5 {
  font-size: var(--heading-5-font-size);
  line-height: 1.5;
}

[dir] h5,
[dir] .h5 {
  margin: 0 0 1.5em;
}

[dir] .markdown h5,
[dir] .markdown .h5 {
  margin-top: 1.5em;
}

h6,
.h6 {
  font-size: var(--heading-6-font-size);
  line-height: 1.5;
}

[dir] h6,
[dir] .h6 {
  margin: 0 0 1.5em;
}

[dir] .markdown h6,
[dir] .markdown .h6 {
  margin-top: 1.5em;
}

/**********************
 Other default elements
 *********************/
[dir] p,
[dir] ul,
[dir] ol,
[dir] dl,
[dir] pre,
[dir] table,
[dir] blockquote {
  margin: 1.5em 0 1.5em;
}

[dir] li {
  margin: 0.75em 0 0.75em;
}

small,
.small {
  font-size: var(--heading-6-font-size);
}

[role="main"] {
  flex-grow: 1;
  position: relative;
}

hr {
  display: block;
  height: 0;
}

[dir] hr {
  border: 0;
  border-top: 1px solid var(--border-color);
  margin-top: 1.5em;
  margin-bottom: 1.5em;
}

pre {
  display: block;
  max-width: 100%;
  overflow-x: auto;
  color: var(--primary-bg-color);
}

[dir] pre {
  padding: 8px 16px;
  border-radius: var(--border-radius-base);
  background-color: var(--primary-text-color);
}

.ui-dark pre {
  color: var(--secondary-text-color);
}

[dir].ui-dark pre {
  background-color: var(--secondary-bg-color);
}

blockquote {
  display: block;
  position: relative;
  z-index: 2;
}

[dir=ltr] blockquote {
  padding-left: 16px;
  border-left: 1px solid var(--border-color);
}

[dir=rtl] blockquote {
  padding-right: 16px;
  border-right: 1px solid var(--border-color);
}

@media only screen and (min-width: 568px) and (max-aspect-ratio: 13 / 9), only screen and (min-width: 668px) and (min-height: 416px), only screen and (min-width: 980px) {
  [dir=ltr] blockquote {
    padding-left: 24px;
  }

  [dir=rtl] blockquote {
    padding-right: 24px;
  }
}

@media only screen and (min-width: 980px) {
  [dir=ltr] blockquote {
    padding-left: 32px;
  }

  [dir=rtl] blockquote {
    padding-right: 32px;
  }
}

blockquote:before {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  top: -4px;
  font-size: 60px;
  color: var(--secondary-bg-color);
}

[dir=ltr] blockquote:before {
  left: 8px;
}

[dir=rtl] blockquote:before {
  right: 8px;
}

@media only screen and (min-width: 568px) and (max-aspect-ratio: 13 / 9) and (max-width: 979px), only screen and (min-width: 668px) and (min-height: 416px) and (max-width: 979px) {
  [dir=ltr] blockquote:before {
    left: 12px;
  }

  [dir=rtl] blockquote:before {
    right: 12px;
  }
}

@media only screen and (min-width: 980px) {
  [dir=ltr] blockquote:before {
    left: 16px;
  }

  [dir=rtl] blockquote:before {
    right: 16px;
  }
}

.list-unstyled {
  list-style: none;
}

[dir=ltr] .list-unstyled {
  padding-left: 0;
}

[dir=rtl] .list-unstyled {
  padding-right: 0;
}

dl.details {
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  -ms-grid-columns: 1fr 2fr;
  grid-template-columns: 1fr 2fr;
}

[dir] dl.details {
  margin-bottom: 32px;
  margin-top: 0;
}

dl.details > *:nth-child(1) {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
}

dl.details > *:nth-child(2) {
  -ms-grid-row: 1;
  -ms-grid-column: 2;
}

dl.details > dt {
  font-weight: 700;
}

[dir] dl.details > dt {
  margin-bottom: 12px;
}

[dir=ltr] dl.details > dt {
  margin-right: 8px;
}

[dir=rtl] dl.details > dt {
  margin-left: 8px;
}

[dir] dl.details > dd {
  margin-bottom: 12px;
}

dl.details > div {
  -ms-grid-column: 1;
  -ms-grid-column-span: 2;
  grid-column: 1 / 3;
}

[dir] dl.details > div {
  margin-bottom: 12px;
}

dl.details--type-2 {
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
}

[dir] dl.details--type-2 {
  margin-bottom: 0;
}

dl.details--type-2 > *:nth-child(1) {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
}

dl.details--type-2 > *:nth-child(2) {
  -ms-grid-row: 1;
  -ms-grid-column: 2;
}

dl.details--type-2 > dd {
  color: var(--secondary-text-color);
}

@media only screen and (min-width: 980px), only screen and (max-width: 567px) and (max-aspect-ratio: 13 / 9) {
  [dir=ltr] dl.details--type-2 > dd {
    text-align: right;
  }

  [dir=rtl] dl.details--type-2 > dd {
    text-align: left;
  }
}

[dir] dl.details--no-margin {
  margin-bottom: 0;
}

.text-secondary {
  font-size: var(--heading-6-font-size);
  line-height: 1.5;
  color: var(--secondary-text-color);
}

/******
 Tables
 ******/
.table-container {
  display: block;
  width: 100%;
  overflow-x: auto;
}

[dir] .table-container {
  border: 1px solid var(--border-color);
}

.table-container table:not(.pika-table) {
  width: calc(100% + 3px);
  max-width: calc(100% + 3px);
}

[dir] .table-container table:not(.pika-table) {
  margin: -1px;
}

table:not(.pika-table) {
  width: 100%;
  max-width: 100%;
  border-spacing: 0;
  border-collapse: collapse;
}

table:not(.pika-table) thead {
  font-weight: 700;
}

[dir] table:not(.pika-table) thead {
  background-color: var(--secondary-bg-color);
}

[dir] table:not(.pika-table) tfoot {
  background-color: var(--secondary-bg-color);
}

table:not(.pika-table) thead,
table:not(.pika-table) tbody,
table:not(.pika-table) tfoot {
  width: 100%;
  max-width: 100%;
}

[dir=ltr] table:not(.pika-table) th {
  border-left: 1px solid var(--border-color);
}

[dir=rtl] table:not(.pika-table) th {
  border-right: 1px solid var(--border-color);
}

[dir] table:not(.pika-table) td {
  padding: 8px;
  border: 1px solid var(--border-color);
}

/*******
 Iframes
 *******/
.iframe {
  display: block;
  width: 100%;
  height: 0;
  position: relative;
}

.iframe iframe {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}

[dir=ltr] .iframe iframe {
  left: 0;
}

[dir=rtl] .iframe iframe {
  right: 0;
}

[dir] .markdown > * {
  margin: 1.5em 0 1.5em;
}

/* Wysiwyg body */
.wysiwyg-body p code {
  display: inline-block;
  color: var(--primary-text-color);
  white-space: pre;
}

[dir] .wysiwyg-body p code {
  padding: 0 0.25em;
  border-radius: 2px;
  border: 1px solid var(--border-color);
  background-color: var(--secondary-bg-color);
}

.wysiwyg-body a {
  text-decoration: underline;
}

.wysiwyg-body a:hover {
  text-decoration: none;
}

.wysiwyg-body blockquote {
  font-style: italic;
  overflow: hidden;
}

[dir=ltr] .wysiwyg-body blockquote {
  border-left: 5px solid var(--border-color);
  margin-left: 0;
  margin-right: 0;
  padding-left: 1.5em;
  padding-right: 1.5em;
}

[dir=rtl] .wysiwyg-body blockquote {
  border-right: 5px solid var(--border-color);
  margin-right: 0;
  margin-left: 0;
  padding-right: 1.5em;
  padding-left: 1.5em;
}

.comments__item-body.wysiwyg-body blockquote:before {
  color: var(--primary-bg-color);
}

[dir] .comments__item-body.wysiwyg-body p code,
[dir].ui-dark .comments__item-body pre {
  background-color: var(--primary-bg-color);
}

[dir] .dropdown__content {
  position: absolute;
}

.cookie-consent a {
  background-color: rgba(0, 0, 0, 0);
}

.cookie-consent a:active, .cookie-consent a:hover {
  outline: 0;
}

.cookie-consent h1 {
  font-size: 2em;
  margin: .67em 0;
}

.cookie-consent button {
  color: inherit;
  font: inherit;
  margin: 0;
}

.cookie-consent button {
  overflow: visible;
}

.cookie-consent button {
  text-transform: none;
}

.cookie-consent button {
  -webkit-appearance: button;
  cursor: pointer;
}

.cookie-consent h1, .cookie-consent p, .cookie-consent ul {
  margin: 0;
  padding: 0;
}

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

.cookie-consent ul {
  margin-left: 20px;
  margin-left: 1.25rem;
}

.cookie-consent li {
  margin-bottom: 10px;
  margin-bottom: 0.625rem;
}

.cookie-consent h1, .cookie-consent ul, .cookie-consent p {
  margin-bottom: 20px;
  margin-bottom: 1.25rem;
}

.cookie-consent p:last-child {
  margin-bottom: 0px;
  margin-bottom: 0rem;
}

.band {
  position: relative;
  width: 100%;
  overflow: hidden;
  clear: both;
}

.cookie-consent .band__inner-container {
  clear: both;
  padding-top: 40px;
  padding-top: 2.5rem;
  padding-bottom: 40px;
  padding-bottom: 2.5rem;
  padding-left: 20px;
  padding-left: 1.25rem;
  padding-right: 20px;
  padding-right: 1.25rem;
  width: 100%;
  max-width: 1320px;
  margin: auto;
}

.cookie-consent .band__inner-container:before, .cookie-consent .band__inner-container:after {
  content: " ";
  display: table;
}

.cookie-consent .band__inner-container:after {
  clear: both;
}

.cookie-consent .band__inner-container {
  *zoom: 1;
}

.cookie-consent .spaced-right--tight {
  margin-right: 20px !important;
  margin-right: 1.25rem !important;
}

.cookie-consent .spaced-bottom--tight {
  margin-bottom: 20px !important;
  margin-bottom: 1.25rem !important;
}

.cookie-consent .spaced-bottom--none {
  margin-bottom: 0px !important;
  margin-bottom: 0rem !important;
}

.cookie-consent .padded-v--tight {
  padding-top: 20px !important;
  padding-top: 1.25rem !important;
  padding-bottom: 20px !important;
  padding-bottom: 1.25rem !important;
}

.cookie-consent .spaced-bottom--none {
  margin-bottom: 0 !important;
}

.cookie-consent h1 {
  font-size: 36px;
  font-size: 2.25rem;
  line-height: 46px;
  font-weight: 500;
  color: #222;
  margin-top: 0;
  margin-bottom: 10px;
}

@media (max-width: 600px) {
  .cookie-consent h1 {
    font-size: 30px;
    font-size: 1.875rem;
    line-height: 40px;
  }
}

.cookie-consent .beta {
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 34px;
  font-weight: 500;
  color: #222;
  margin-top: 0;
  margin-bottom: 10px;
}

@media (max-width: 600px) {
  .cookie-consent .beta {
    font-size: 22px;
    font-size: 1.375rem;
    line-height: 32px;
  }
}

.cookie-consent .gamma {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 28px;
  font-weight: 500;
  margin-top: 0;
  margin-bottom: 10px;
  color: #222;
}

.cookie-consent .text--normal {
  font-weight: normal !important;
}

.cookie-consent .text--normal.gamma {
  color: inherit;
}

.cookie-consent a {
  transition: all .3s ease;
  text-decoration: none;
  color: #336dc2;
}

.cookie-consent a:active, a:hover {
  color: #183559;
}

.cookie-consent .grid:before, .cookie-consent .grid:after {
  content: " ";
  display: table;
}

.cookie-consent .grid:after {
  clear: both;
}

.cookie-consent .grid__col {
  display: block;
  float: left;
  padding-left: 0%;
  padding-right: 0%;
}

@media (max-width: 600px) {
  .cookie-consent .grid .grid__col {
    display: block;
    width: 100%;
    margin-left: 0;
    border: none;
  }
}

.cookie-consent .grid__col--span-9-of-12 {
  width: 75%;
}

.cookie-consent .list--horizontal {
  margin-left: 0px;
  margin-left: 0rem;
  list-style: none;
}

.cookie-consent .list--horizontal li {
  display: inline-block;
}

.cookie-consent .list--bare {
  margin: 0px;
  margin: 0rem;
  padding: 0px;
  padding: 0rem;
  list-style: none;
}

.cookie-consent .button, .cookie-consent button {
  font-size: 16px;
  font-size: 1rem;
  line-height: 26px;
  padding: 12px 18px !important;
  background-color: #dcdcdc !important;
  color: #373737 !important;
  border-width: 0 !important;
  border-style: solid !important;
  border-color: rgba(0, 0, 0, 0) !important;
  border-radius: 5px;
  font-weight: 500;
  display: inline-block;
  width: auto;
  -webkit-font-smoothing: antialiased;
  word-break: normal;
  text-decoration: none !important;
  transition: all .3s ease;
}

.cookie-consent .button:hover, .cookie-consent button:hover {
  background-color: #b6b6b6 !important;
}

.cookie-consent .button:active, .cookie-consent button:active {
  background-color: #767676 !important;
}

.cookie-consent .button--small, .cookie-consent button.button--small {
  font-size: 16px;
  font-size: 1rem;
  line-height: 26px;
  padding: 8px 16px !important;
}

.cookie-consent .button--primary, .cookie-consent button.button--primary {
  background-color: #c00 !important;
  color: #fff !important;
}

.cookie-consent .button--primary:hover, .cookie-consent button.button--primary:hover {
  background-color: #a30000 !important;
}

.cookie-consent .button--primary:active, .cookie-consent button.button--primary:active {
  background-color: #7a0000 !important;
}

::placeholder {
  color: #333;
}

:disabled::placeholder {
  color: #b6b6b6;
}

.cookie-consent {
  position: fixed;
  display: flex;
  bottom: 0;
  left: 0;
  z-index: 999;
  background-color: rgba(0, 0, 0, .55) !important;
  height: 100%;
}

.cookie-consent .band__inner-container {
  margin-bottom: 0;
  background-color: #f2f2f2;
  max-width: 100%;
  padding: 10%;
}

.cookie-consent a {
  border-bottom-style: solid;
  border-bottom-width: 1px;
  border-bottom-color: #336dc2;
  font-weight: 500;
}

@media (max-width: 600px) {
  .cookie-consent p {
    font-size: 16px;
    font-size: 1rem;
    line-height: 26px;
  }
  .cookie-consent li {
    display: block;
  }
}

.cookie-consent .grid:before, .cookie-consent .grid:after {
  display: block;
}

/*! CSS Used from: https://cdn.red-gate.com/assets/styles/print.css?v=24526 ; media=print */
@media print {
  .band__inner-container {
    padding-left: 0;
    padding-right: 0;
  }
}

@media only screen and (min-width: 568px) {
  .helpers.helpers--type-2 .row {
    row-gap: 100px;
  }
}

.header__logo {
  display: none !important;
}

/**
 * Cookie dialog
 **/
.cookie-dialog {
    background-color: #000;
    background-color: rgba(0,0,0,.85);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1002
}

.cookie-dialog__inner {
    padding: 40px;
    padding: 2.5rem;
    border-radius: 9px;
    border-radius: 0.5625rem;
    position: absolute;
    width: 100%;
    max-width: 50%;
    max-height: 90%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    overflow: auto;
    background-color: #fff
}

@media(max-width: 950px) {
    .cookie-dialog__inner {
        max-width:75%
    }
}

@media(max-width: 600px) {
    .cookie-dialog__inner {
        max-width:95%
    }
}

.cookie-dialog h1 {
    font-size: var(--heading-2-font-size);
    margin-bottom: 10px;
}

.cookie-dialog h1 + p {
    margin-top: 0;
}

.cookie-dialog h2 {
    font-size: var(--heading-3-font-size);
    margin-bottom: 10px;
    margin-top: 20px;
}

.cookie-dialog h2 + p {
    margin-top: 0;
}

.cookie-dialog__groups {
    margin-left: 0px;
    margin-left: 0rem;
    padding-left: 0;
    list-style: none
}

.cookie-dialog__groups input {
    margin-right: 4px;
    margin-right: 0.25rem
}

.cookie-dialog__groups label {
    text-transform: capitalize;
    display: inline-block !important;
    margin-left: 4px;
    font-weight: normal !important;
}

.cookie-dialog__controls button {
    margin-right: 10px;
    margin-right: 0.625rem
}

.cookie-dialog__close--corner {
    display: none !important; /* Hide on support theme as don't have icon font. */
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 0 !important;
    color: rgba(0,0,0,0)
}

.cookie-dialog__close--corner:before {
    font-size: 2rem
}

/* Cookie dialog button styles */
.cookie-dialog .button, .cookie-dialog button {
  font-size: 16px;
  font-size: 1rem;
  line-height: 26px;
  margin-right: 10px !important;
  padding: 12px 18px !important;
  background-color: #dcdcdc !important;
  color: #373737 !important;
  border-width: 0 !important;
  border-style: solid !important;
  border-color: rgba(0, 0, 0, 0) !important;
  border-radius: 5px;
  font-weight: 500;
  display: inline-block;
  width: auto;
  -webkit-font-smoothing: antialiased;
  word-break: normal;
  text-decoration: none !important;
  transition: all .3s ease;
}

.cookie-dialog .button:hover, .cookie-dialog button:hover {
  background-color: #b6b6b6 !important;
}

.cookie-dialog .button:active, .cookie-dialog button:active {
  background-color: #767676 !important;
}

.cookie-dialog .button--small, .cookie-dialog button.button--small {
  font-size: 16px;
  font-size: 1rem;
  line-height: 26px;
  padding: 8px 16px !important;
}

.cookie-dialog .button--primary, .cookie-dialog button.button--primary {
  background-color: #c00 !important;
  color: #fff !important;
}

.cookie-dialog .button--primary:hover, .cookie-dialog button.button--primary:hover {
  background-color: #a30000 !important;
}

.cookie-dialog .button--primary:active, .cookie-dialog button.button--primary:active {
  background-color: #7a0000 !important;
}

/* Instant search */
.js-instant-search__results {
  background-color: #f2f2f2;
}

.js-instant-search__results ol {
  margin-top: 0;
  margin-bottom: 0;
  padding-left: 0;
  list-style: none;
}

.js-instant-search__results li {
  margin: 0;
  padding: 0;
  border-top: 1px solid #dcdcdc;
}

.js-instant-search__results li:first-of-type {
  border-top: none;
}

.js-instant-search__results a {
  display: block;
}

.js-instant-search__results a:link,
.js-instant-search__results a:visited,
.js-instant-search__results a:focus,
.js-instant-search__results a:active {
  background-color: #f2f2f2;
  padding: 16px;
}

.js-instant-search__results a:hover,
.js-instant-search__results a:focus {
  background-color: #b1cef2;
}

.js-instant-search__results h3, .js-instant-search__results p {
  font-size: 13px;
  margin: 0;
  margin-bottom: 4px;
}

.js-instant-search__results .results__url {
  font-size: 12px;
  color: #336dc2;
  font-weight: 500;
}

.js-instant-search__results .js-instant-search__no-results {
  padding: 10px;
}

.js-instant-search__results,
.js-instant-search__results li:first-of-type a {
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.js-instant-search__results,
.js-instant-search__results li:last-of-type a {
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}

html[dir] .modal {
  z-index: 9999;
}

.js-instant-search {
  position: relative;
}

.js-instant-search__results {
  position: absolute;
  width: 100%;
}

[dir] .welcome__section {
  overflow: unset;
}

[dir] .welcome__bg {
  overflow: hidden;
}

.section.welcome {
  position: relative;
  z-index: 9;
}

[dir] .markdown a {
  color: var(--primary-color);
  text-decoration: underline 1px;
}

[dir] .markdown a:hover {
  color: var(--primary-color-hover);
  text-decoration: none;
}

/* P+SC custom */
.topic_blocks {
  margin-bottom: 1.5rem;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #ccc;
}
.topic_blocks:last-child {
  border-bottom: 0;  
}
.topic_blocks .topic_blocks {
  margin-bottom: 0rem;  
}
.toggle {
  cursor: pointer;
  transition: color .3s;
}
.toggle:hover {
  color: #cc0000;
}
.toggle.h1 {
  cursor: default;
}
.toggle.h1:hover {
  color: inherit;
}
.hidden {
  display:none;
}