:root,
[data-theme=default] {
  --color-sophos-orange: #FF8300;
  --color-sophos-blue-title: var(--color-sophos-blue);
  --color-sophos-darkblue: #051024;
  --color-sophos-blue: #001a47;
  --color-header: var(--color-sophos-blue);
  --color-button-font: #ffffff;
  --color-bg: white;
  --color-bg-lighter: #f5f6f7;
  --color-font: #333;
  --color-grey: #464a4f;
  --color-strong: 333;
  --color-link: #055bb5;
  --color-btn-menu-toggle: lighten(var(--color-sophos-blue), 10%);
  --color-highlight:var(--color-sophos-blue);
  --color-footer: var(--color-font);
  --color-input-border: #d9dddf;
  --color-input-bg: white;
  --color-table-header-bg: var(--color-sophos-blue);
  --color-table-header: white;
  --color-table-hover: #B2DDF5;
  --color-codeblock-bg: #e7e7e7;
  --color-sbutton: var(--color-link);
  --color-xg-article: #424344;
}
:root #light,
[data-theme=default] #light {
  display: none;
}
:root #dark,
[data-theme=default] #dark {
  display: inline;
}

[data-theme=dark] {
  --color-sophos-blue: #001a47;
  --color-header: var(--color-sophos-blue);
  --color-bg: #0D0D0E;
  --color-bg-lighter: #363738;
  --color-font: #F2F4F4;
  --color-grey: #a2a5aa;
  --color-offwhite: #a2a5aa;
  --color-strong: white;
  --color-link: #B2DDF5;
  --color-btn-menu-toggle: lighten(var(--color-sophos-blue), 10%);
  --color-highlight: #001a47;
  --color-footer: var(--color-font);
  --color-input-border: var(--color-grey);
  --color-input-bg: var(--color-bg);
  --color-table-header-bg: var(--color-sophos-blue);
  --color-table-odd: var(--color-bg);
  --color-table-even: var(--color-bg);
  --color-table-hover: var(--color-bg-lighter);
  --color-codeblock-bg: var(--color-bg-lighter);
  --color-codeblock: var(--color-font);
  --color-sbutton: white;
  --color-xg-article: #0092C2;
}
[data-theme=dark] #light {
  display: inline;
}
[data-theme=dark] #dark {
  display: none;
}

.container-fluid {
  padding-left: 0px;
  margin-left: 20px;
  margin-right: 20px;
  width: 95%;
  max-width: 1600px;
}

body {
  font-family: "Inter", arial, sans-serif;
  margin-right: 1rem;
  font-size: 0.8rem;
  background-color: var(--color-bg);
  color: var(--color-font);
}

.bg-sophos {
  background-color: var(--color-bg);
}

#tab-content {
  margin-top: 30px;
}

/* Typography */
.h1,
h1 {
  font-size: 1.5rem;
  margin-bottom: 0.2em;
  color: var(--color-sophos-blue);
}

.h2,
h2 {
  font-size: 1.25rem;
  color: var(--color-sophos-blue);
  font-weight: 700;
}

.h3,
h3 {
  font-size: 1rem;
  color: var(--color-sophos-orange);
  font-weight: 700;
}

.h4,
h4 {
  font-size: 1rem;
  color: var(--color-xg-article);
  font-weight: 700;
}

h5 {
  font-size: 0.95rem;
  font-weight: 600;
}

.p,
.th,
li {
  margin-bottom: 0.3em;
}

.xg {
  padding-top: 10px;
  padding-bottom: 10px;
  padding-right: 1rem;
}

.btn-outline-important {
  color: var(--color-button-font);
  background-color: var(--color-sophos-orange) !important;
  background-image: none;
  border-color: var(--color-button-font);
}

.xglistitem {
  color: var(--color-xg-article);
  font-weight: 700;
}

article {
  margin: 2px 0;
  margin-left: 16px;
}

article:nth-of-type(even) {
  background: var(--color-bg);
  border-radius: 5px;
}

article:nth-of-type(odd) {
  border: 0px solid var(--color-bg);
  border-radius: 5px;
  background-color: var(--color-bg-lighter);
}

div > article:last-child {
  margin-bottom: 40px;
}

code {
  font-size: 100%;
  color: var(--color-font);
  font-family: monospace;
}

/* Tables */
.table {
  width: -moz-fit-content;
  width: fit-content;
}

.table > thead > tr > th {
  color: var(--color-table-header);
  background-color: var(--color-table-header-bg);
}

.table-hover tbody tr:hover {
  background-color: var(--color-table-hover);
}

/* Buttons */
.btn-outline-primary {
  color: var(--color-font);
  background-color: var(--color-bg-lighter) !important;
  background-image: none;
  border-color: var(--color-input-border);
}
.btn-outline-primary:not(:disabled):not(.disabled).active {
  color: var(--color-button-font) !important;
  background-color: var(--color-sophos-blue) !important;
  border-color: var(--color-sophos-blue) !important;
}

.show > .btn-outline-primary.dropdown-toggle {
  color: var(--color-highlight) !important;
  background-color: var(--color-font) !important;
  border-color: var(--color-font) !important;
}

.btn-outline-primary:hover, .btn-outline-primary:focus {
  color: var(--color-button-font) !important;
  background-color: var(--color-sophos-blue) !important;
  border-color: var(--color-sophos-blue) !important;
}

/* Links */
a:link, a:visited {
  text-decoration: none;
  color: var(--color-link);
}
a:hover, a:focus {
  text-decoration: none;
  color: var(--color-note-warning);
}

.badge-info,
.btn-primary {
  background-color: var(--color-highlight) !important;
}

img {
  padding: 5px;
}

span.option,
span.cmdname,
.userinput,
.uicontrol {
  font-weight: bold;
}

.sysout,
.codeblock {
  font-family: "Courier New", Courier, monospace;
}

.codeblock {
  color: var(--color-font);
  background-color: var(--color-bg-lighter);
  padding: 0.5em;
}

.code {
  font-size: 90%;
  color: var(--color-font);
  background-color: var(--color-bg-lighter);
  word-break: break-word;
}

sup,
sub {
  font-size: 75%;
}

.dlterm {
  color: var(--color-highlight);
}

.boldItalic,
.italic,
.varname {
  font-weight: normal;
  font-style: normal;
}

.underlined,
.defkwd {
  text-decoration: none;
}

.parmname,
.kwd {
  font-weight: normal;
}

pre.screen {
  padding: 5px;
  border: outset;
  background-color: var(--color-bg-lighter);
  color: var(--color-font);
  margin-bottom: 2px;
  white-space: pre;
}
pre.pre {
  margin-bottom: 0.6em;
}

.nav-link {
  display: block;
  padding: 0.25rem !important;
}

section {
  margin-bottom: 40px;
}

.section {
  border-bottom-color: var(--color-font);
  border-bottom-style: solid;
  border-bottom-width: 1px;
}

.section:last-child {
  border: none !important;
  margin-bottom: 15px !important;
}

sticky-top {
  position: sticky;
  top: 0;
  z-index: 1020;
}

.date {
  font-size: 0.75rem;
  color: var(--color-font);
  font-weight: 500;
  margin-top: 0.25rem;
}

.upgradeYes {
  background-color: rgb(204, 255, 204);
  color: rgb(70, 147, 0);
  text-align: center;
}
.upgradeYes:before {
  background-image: url("https://docs.sophos.com/images/svg/green_tick.svg");
  background-size: 20px 20px;
  display: inline-block;
  width: 20px;
  height: 20px;
  content: "";
}

.upgradeNA {
  color: #ffa500;
  text-align: center;
}
.upgradeNA::before {
  background-image: url("https://docs.sophos.com/images/svg/orange_warning.svg");
  background-size: 20px 20px;
  display: inline-block;
  width: 20px;
  height: 20px;
  content: "";
}

.upgradeNo {
  /* background-color: rgb(204, 255, 204); */
  color: red;
  text-align: center;
}
.upgradeNo:before {
  background-image: url("https://docs.sophos.com/images/svg/red_cross.svg");
  background-size: 20px 20px;
  display: inline-block;
  width: 20px;
  height: 20px;
  content: "";
}

.intro {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  flex: 1;
  border-bottom-color: var(--color-font);
  border-bottom-style: solid;
  border-bottom-width: 1px;
}
.intro > section {
  border: 0 !important;
}

.article__warning {
  border: 2px solid red !important;
}

@media only screen and (min-width: 601px) {
  .product_split {
    display: flex;
  }
  .product_split > section:first-child {
    padding-right: 15px;
    margin-left: 0px;
    border-right: 1px solid #dee2e6;
    border-bottom: none;
  }
  .product_split > section {
    margin-left: 10px;
    border-bottom: none;
  }
}
@media only screen and (min-width: 600px) {
  .intro {
    flex-direction: row;
    flex-wrap: unset;
  }
}
@media only screen and (max-width: 600px) {
  .product_split {
    display: block;
  }
  .product_split > section:first-child {
    border-bottom: 1px solid #dee2e6;
  }
  .stickynav {
    top: 0;
  }
}
.sophos-banner {
  text-align: center;
  width: auto;
  font-size: 16px;
  margin-left: -10px;
  margin-right: -10px;
  padding-top: 0.5em;
  padding-bottom: 0.5em;
}

.sophos-banner--eol {
  color: #ffffff;
  background-color: #da3e00;
}