.static {
    position: absolute;
    background: white;
}

.static:hover {
    opacity: 0;
}


/* In-copy links */

button,
a {
    color: #006d9a;
}


/* Hover links */

button:hover,
button:focus,
a:hover,
a:focus {
    color: #004256;
}


/* Body */

body,
p {
    line-height: 1.5;
    color: #131314;
    font-weight: 400;
    font-size: 15px;
    page-break-inside: avoid;
}


/* Bold */

b,
optgroup,
strong {
    font-weight: 600;
}


/* Headings */

article h1:first-of-type {
    border-bottom: 1px solid #E1E3E3;
    padding-bottom: 30px;
    padding-right: 200px;
    margin-top: 15px;
}

article h1 {
    font-size: 36px;
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 35px;
    color: #131314;
}

article h2 {
    font-size: 26px;
    font-weight: 600;
    line-height: 1.5;
    color: #004256;
    margin-top: 25px;
}

article h3 {
    font-size: 22px;
    font-weight: 600;
    line-height: 1.5;
    color: #131314;
    margin-top: 30px;
}

article h4 {
    font-size: 18px;
    line-height: 1.5;
    color: #006d9a;
    font-weight: 600;
    border-bottom: none;
    margin-top: 25px;
    margin-bottom: 10px;
}

article h5 {
    font-size: 16px;
    line-height: 1.25em;
    font-weight: 600;
    color: #131314;
    margin-top: 20px;
}

article h6 {
    font-size: 14px;
    line-height: 1.25em;
    font-weight: 600;
    color: #006D9A;
    margin-top: 14px;
}

article h1,
h2,
h3,
h4,
h5,
h6 {
    word-break: keep-all;
}


/* When H3 follows H2 */

article h2+h3 {
    margin-top: 20px;
}


/* When H4 follows H3 */

article h3+h4 {
    margin-top: 20px;
}


/* When blockquote follows H1 */

article h1+blockquote {
    margin-top: 0px;
}


/* When a blockquote follows a table */

table+blockquote {
    margin-top: 15px;
}


/* Clickability fix for selector on sm devices */

@media (min-width: 768px) and (max-width: 991px) {
    article h1:first-of-type:before {
        height: 0;
        margin-top: 0;
    }
}

@media (max-width: 768px) {
    article {
        margin: 120px 0 0 0 !important;
    }
}

/* Blockquote */

blockquote {
    border-left: 5px solid #F0F3F6;
    font-size: 15px;
    margin-top: 30px;
    margin-bottom: 20px;
}


/* Code */

code {
    color: #a94c9d;
    background-color: #f1f1f1;
    border-color: #F0F3F6;
    border-radius: 3px;
    padding-top: 3px;
    padding-right: 7px;
    padding-bottom: 3px;
    padding-left: 7px;
    line-height: 1.4;
}

pre {
    border: 1px solid #a1a1a1;
    padding: 20px;
    margin: 20px auto;
    border-radius: 5px;
    display: block;
    background-color: #f1f1f1;
    font-weight: 400;
}

.fa-code {
    font-size: 19px;
}


/* Images */

.article img {
    max-width: 100%;
    border: solid;
    border-width: thin;
    border-color: #D7DDE4;
    margin-top: 10px;
    margin-bottom: 10px;
}

.noborder {
    border: none !important;
}

.img-small {
    max-width:50% !important;
}

/* use for icons that need to be inserted inline with text (for example for a step in a procedure that refers to a button that only has an image on it and not text)*/ 
.button-icon {
    max-height: 15px;
    border: none !important;
    margin-bottom: 0px !important;
    margin-top: 0px !important;
}

/* Tables */

.table {
    margin-bottom: 20px;
    font-size: 14px;
}

.table-bordered,
.table-bordered>tbody>tr>td,
.table-bordered>tbody>tr>th,
.table-bordered>tfoot>tr>td,
.table-bordered>tfoot>tr>th,
.table-bordered>thead>tr>td,
.table-bordered>thead>tr>th {
    border-top: none;
    border-left: none;
    border-right: none;
    padding: 5px;
    border-bottom: 1px solid #D7DDE4;
    font-size: 14px;
}

tr>th, th {
    font-weight: 600;
    color: #006d9a;
}

.table-bordered>thead>tr>td,
.table-bordered>thead>tr>th {
    border-bottom: 1px solid #006d9a;
    padding-top: 15px;
    font-size: 14px;
}

td:nth-of-type(1) {
    font-weight: 400;
}

.table-striped>tbody>tr:nth-of-type(2n+1) {
    background-color: white;
}


/* Callouts */

.alert {
    color: #333;
    background-color: white;
    border: solid 1px;
    box-shadow: none;
    margin-top: 20px;
    margin-bottom: 20px;
    padding-left: 40px;
}

.alert h5 {
    font-size: 15px;
    text-transform: none;
    padding-bottom: 5px;
    margin-bottom: 0px !important;
}

.alert h5:before {
    position: relative;
    top: 1px;
    display: inline-block;
    font-family: 'FontAwesome';
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    margin-right: 8px;
    font-weight: normal;
    margin-left: -25px;
    vertical-align: text-top;
}

.alert h5:after {
    content: ": ";
}

.alert h5,
.alert >p:first-of-type
 {
  display: inline;
  line-height: 1.25;
  padding-bottom: 7px;
}

.alert-info {
    background-color: #E2F5FF;
    border-color: #C6EAFF;
}

.alert-info h5, .alert-info p, .alert-info li {
    color: #004358;
  }

.alert-info h5:before {
    content: "\f05a";
}

.alert-warning {
    background-color: #F6DAD2;
    border-color: #eeb5a5;
}

.alert-warning h5, .alert-warning p, .alert-warning li {
    color: #662613;
}

.alert-warning h5:before {
    content: "\f071";
}

.alert-danger {
    background-color: #fff8d8;
    border-color: #fff0b2;
}

.alert-danger h5, .alert-danger p, .alert-danger li {
    color: #953C09;
  }

.alert-danger h5:before {
    content: "\f06a";
}

.label-info {
    background-color: #00aeff;
    line-height: 2.25;
}


/* Left-side color on landing page boxes (which are .alert only) */

#install-box,
#user-box,
#developer-box,
#admin-box,
#platform-box,
#CADS-box,
#ACO-box,
#OPM-box,
.blue-box,
.green-box,
.orange-box,
.gray-box {
    margin-top: 25px;
}

#install-box,
#user-box,
.blue-box {
    color: #131314;
    border-left: #006d9a solid 6px;
    border-top: #006d9a solid 1px;
    border-right: #006d9a solid 1px;
    border-bottom: #006d9a solid 1px;
}

#CADS-box, #platform-box,.green-box {
    border-left: #528052 solid 6px;
    border-top: #528052 solid 1px;
    border-right: #528052 solid 1px;
    border-bottom: #528052 solid 1px;
}

#developer-box, #admin-box, .orange-box {
    border-left: #ce4709 solid 6px;
    border-top: #ce4709 solid 1px;
    border-right: #ce4709 solid 1px;
    border-bottom: #ce4709 solid 1px;
}

#ACO-box, #OPM-box, .gray-box {
     border-left: #353737 solid 6px;
    border-top: #353737 solid 1px;
    border-right: #353737 solid 1px;
    border-bottom: #353737 solid 1px;
}

/* TOC */

.toc .level1>li {
    color: #131314;
    font-size: 14px;
    /* text-transform: uppercase; */
    margin-bottom: 5px;
    font-weight: 400;
}

.toc .level2>li {
    text-transform: none !important;
}

.toc .nav>li>a {
    color: #131314;
    padding-top: 10px;
    line-height: 1.2;
}

.toc .nav>li.active>a {
    color: #004256;
    border-bottom-width: 4px;
}

.toc .nav>li>a:hover,
.toc .nav>li>a:focus {
    color: #004256;
}

.toc .nav>li.active>a:hover,
.toc .nav>li.active>a:focus {
    color: #004256;
}


/* little plus or minus in TOC */

.expand-stub {
    margin-top: 6px;
    font-weight: normal;
}

.expand-stub+a {
    margin-top: 6px;
    font-weight: normal;
}

.toc .nav>li>.expand-stub {
    margin-top: 7px;
}


/* 2nd and 3rd level expandable menu items in left-side menu - make same font size as 1st level */

.toc .level2,
.toc .level3,
.toc .level4 {
    font-size: 14px;
}

.toc .level3,
.toc .level4 {
    padding-left: 5px;
    margin-top: 0px;
}

.toc .level5,
.toc .level6 {
    font-size: 12px;
    padding-left: 5px;
}

.toc ul {
    margin-top: 0px;
}

body .toc {
    overflow-x: unset;
}

:not(.level1)>li>.line-above {
    margin-top: 10px;
}

/* TOC filter */

.toc-filter {
    border-radius: 0px;
    margin: 25px 0;
    color: #888888;
    border: 1px solid #D7D7D7;
}

.toc-filter>input {
    font-size: 14px;
    color: #888888;
    padding: 0 30px 0 5px;
}

.toc-filter>.filter-icon {
    right: 10px;
    left: auto;
    color: #A1A1A1;
}


/* Reduce horizontal width of center column */

.col-md-10 {
    width: 75%;
}


/* Move right pane to the left a little */

.col-md-2 {
    padding-left: 0px;
}


/* Move right pane to the left so it is not squished on the right */

.nav>li>a {
    margin-left: 0px;
}


/* Side affix */

.sideaffix {
    position: absolute;
    top: 0;
    right: 25px;
    margin-top: 0;
    overflow: visible;
}

.sideaffix-buffer {
    position: relative;
    width: 100%;
    padding: 0 15px;
}


/* Contribution link */

.sideaffix>div.contribution>ul>li>a.contribution-link {
    padding: 3px 0;
    font-weight: normal;
    font-size: 13px;
}


/* Side nav */

.sidenav,
.toc-toggle {
    padding: 0;
}

.article.grid-right {
    width: 100%;
    max-width: 935px;
}

@media (max-width: 768px) {
    .sidenav {
        position: fixed;
        top: 104px;
        width: 100%;
        z-index: 1;
        margin-left: -2.5%;
        border-bottom: 1px solid #E1E3E3;
        overflow: auto;
        max-height: calc(100% - 104px);
    }

    .sidetoc,
    body .toc,
    .sidefilter,
    .sidetoggle {
        background-color: #f1f1f1 !important;
    }

    .toc-filter {
        margin: 0;
    }

    article h1:first-of-type {
        padding-right: 0;
    }

    .article.grid-right {
        margin: 0;
    }

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

    .toc li:after {
        content: "";
        margin: 0 !important;
    }

    .toc .nav>li,
    .toc .nav>li>a {
        display: block !important;
    }
}


/* Side TOC */

.sidetoc {
    top: 180px;
    border-right: 1px solid #E1E3E3 !important;
}

.sidetoc,
body .toc,
.sidefilter,
.sidetoggle {
    background-color: white;
}

.sidetoc.shiftup {
    bottom: 0px;
}

.sidetoc,
.sidefilter {
    border-left: none;
    border-right: none;
}

.sidetoggle {
    padding-bottom: 15px;
}

.sidefilter {
    border-right: 1px solid #E1E3E3 !important;
}


/* Affix */


/* Bootstrap docs like sidebar
   ------------------------------------------------------- */

.affix {
    position: fixed;
    max-width: 200px;
}

.affix h5 {
    display: block;
}


/* Active & hover links */

.affix ul>li>a:hover,
.affix ul>li.active>a,
.affix ul>li>a:focus {
    color: #004256;
    text-decoration: none;
    background-color: transparent;
    border-left-color: #004256;
}


/* All active links */

.affix ul>li.active>a,
.affix ul>li.active:hover>a,
.affix ul>li.active:focus>a {
    font-weight: 600;
}


/* Nested active links */

.affix ul ul>li.active>a,
.affix ul ul>li.active:hover>a,
.affix ul ul>li.active:focus>a {
    font-weight: 500;
}


/* All links */

.affix ul>li>a {
    color: #131314;
    border-left: 2px solid transparent;
    padding-top: 4px;
    padding-left: 20px;
    padding-right: 40px;
    font-size: 13px;
    font-weight: 400;
}


/* Nested links */

.affix ul ul>li>a {
    padding-top: 1px;
    padding-bottom: 1px;
    padding-left: 30px;
    font-size: 12px;
}

/* Search form */

.form-control {
    background-color: #FFFFFF;
    border: 1px solid #FFFFFF;
    border-radius: 0px;
}

.form-control:focus {
    border-color: #006d9a;
}

.form-control,
output {
    color: #6D6E70;
}

#search {
    border: none;
}


/* Search results */

.sr-item>.item-href {
    color: #131314;
}

.pagination>.active>a {
    background-color: #004256;
    border-color: #004256;
}

.pagination>li>a {
    color: #004256;
}

.pagination>.disabled>a,
.pagination>.disabled>a:focus,
.pagination>.disabled>a:hover,
.pagination>.disabled>span,
.pagination>.disabled>span:focus,
.pagination>.disabled>span:hover {
    color: #6D6E70;
    border-color: #D7DDE4;
}


/* Footer */

.footer {
    background-color: #f0f3f6;
    border-top: none;
    font-size: 14px;
}


/* Help button nav bar icon */

#help {
    font-size: 18px;
    padding-left: 1px;
    padding-right: 0px;
    padding-bottom: 0px;
    padding-top: 12px;
    border-radius: 0px;
    background-color: #384655;
    color: white;
}


/* Custom to custom template from Github */


/* Remove center align from Navbar and Collapsible section */

.collapse.in,
.collapsing {
    text-align: unset;
}

@media (min-width: 768px) {

    .sidetoc,
    .sidefilter {
        margin-left: -15px;
        border-right: none;
        border-left: none;
    }
}


/*Home page */

#home-page-subhead {
    font-size: 18px;
    line-height: 1.5;
    color: #131314;
    font-weight: 600;
    margin-top: 25px;
    margin-bottom: 10px;
}


/*Home page column headers */

#home-page-col-head,
#home-page-col-head-install,
#home-page-col-head-user,
#home-page-col-head-platform,
#home-page-col-head-dev,
#home-page-col-head-admin,
#home-page-col-head-ACO,
#home-page-col-head-CADS,
#home-page-col-head-OPM,
.home-page-col-head-blue,
.home-page-col-head-green,
.home-page-col-head-orange,
.home-page-col-head-gray {
    font-weight: 400;
    font-size: 28px;
    line-height: 1.5;
    margin-top: 25px;
}

.home-page-col-head-blue,
#home-page-col-head,
#home-page-col-head-install,
#home-page-col-head-user {
    color: #006d9a;
}

.home-page-col-head-green,
#home-page-col-head-CADS,
#home-page-col-head-platform
 {
    color: #528052;
}

.home-page-col-head-orange,
#home-page-col-head-dev,
#home-page-col-head-admin
 {
    color: #ce4709;
}

.home-page-col-head-gray,
#home-page-col-head-ACO,
#home-page-col-head-OPM {
    color: #353537;
}


/* Home page boxes */

.row#home-page {
    margin-right: -30px;
    margin-left: -30px;
}

.home-box {
    background-color: white;
    margin-top: 25px;
    margin-bottom: 30px;
    padding: 15px;
    border-radius: 5px;
}
  
.home-box h5

 {
    font-size: 18px;
    line-height: 1.25;
    text-transform: none;
    margin-top:0px;
    margin-bottom:0px;
    padding-bottom: 15px;
}
  
.home-box p:last-of-type {
    margin-bottom: 0px;
}

/* -------------------------------------------------------------- */


/* New Docs Template */

.docs-navbar {
    width: 100%;
    height: 64px;
    display: flex;
    align-items: center;
    background-color: #00aeff;
    position: relative;
    z-index: 100;
}

.docs-logo {
    display: flex;
    align-items: center;
}

.docs-navbar-right {
    margin-left: auto;
    margin-right: -20px;
    display: flex;
}

.docs-navbar-left {
    margin-left: 60px;
    display: flex;
}

.docs-navbar-link {
    height: 100%;
    padding: 0 20px;
    text-decoration: none;
    color: white;
    display: flex;
    align-items: center;
    font-size: 16px;
    font-weight: 300;
    cursor: pointer;
}

.navbar-nav li {
    font-size: 16px;
    font-weight: 300;
}

.docs-navbar-link:hover {
    color: white;
}

.navbar-nav li>a {
    color: white;
    padding: 21px;
}

.navbar-nav li>a:hover,
.navbar-nav li>a:focus {
    background-color: #00aeff;
}

.nav .open>a,
.nav .open>a:focus,
.nav .open>a:hover {
    background-color: #049ae0;
}

.navbar-nav .caret {
    width: 7px;
    height: 20px;
    margin-left: 5px;
    border: 0 !important;
}

.navbar-nav .caret::after {
    font-family: "FontAwesome";
    content: "\f107";
    font-size: 14px;
    display: flex;
}

.dropdown-menu {
    background-color: #f1f1f1;
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu li>a {
    color: #131314;
    font-weight: 300;
    padding: 12px 24px;
    width: 100%;
}

.dropdown-menu li>a:hover {
    background-color: #ddd !important;
    color: #131314 !important;
}

.dropdown-menu>.active>a,
.dropdown-menu>.active>a:focus {
    color: #131314;
    background-color: #f1f1f1;
}

.docs-navbar-divider {
    background-color: white;
    width: 1px;
    margin: 20px 0;
    display: block;
}

.docs-navbar-chevron {
    margin-left: 8px;
}

.docs-navbar-logo {
    margin-top: 2px;
}

.docs-container {
    font-family: 'Open Sans', sans-serif;
    width: 95%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
}

.docs-container-wrap {
    flex-wrap: wrap;
}

.docs-subnav {
    display: flex;
    width: 100%;
    height: 40px;
    background-color: #F6F7F8;
    border-bottom: 1px solid #E1E3E3;
    /* align-items: center;
	position: fixed;
	top: 64px;
	z-index: 99; */
}

.docs-sub-subnav {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 25px;
    background-color: #f36c21;
    color: white;
    border-bottom: 1px solid #E1E3E3;
    padding: 20px;
    /* align-items: center;
	position: fixed;
	top: 64px;
	z-index: 99; */
}

.docs-subnav-left {
    display: flex;
    align-items: center;
    overflow: hidden;
    width: inherit;
    -webkit-transition: width .3s ease-in-out;
    -moz-transition: width .3s ease-in-out;
    -o-transition: width .3s ease-in-out;
    transition: width .3s ease-in-out;
}

.docs-subnav-show {
    display: flex;
    align-items: center;
}

.docs-subnav-breadcrumb {
    color: #767676;
    font-size: 13px;
    text-decoration: none;
    min-width: 30px;
}

.docs-subnav-breadcrumb:hover {
    color: #00aeff;
}

.docs-subnav-breadcrumb-divider {
    color: #A8B0BA;
    font-size: 10px;
    margin: 0 15px;
}

.docs-subnav-breadcrumb-current {
    color: #767676;
    font-size: 13px;
    min-width: 30px;
}

.docs-subnav-select-container {
    position: relative;
}

.docs-subnav-select {
    font: inherit;
    font-size: 13px;
    display: flex;
    align-items: center;
    background-color: white;
    height: 30px;
    width: 100%;
    max-width: 180px;
    color: #131314;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: 1px solid #E5E5E5;
    padding: 0 30px 0 10px;
    cursor: pointer;
}

.docs-subnav-select::-ms-expand {
    display: none;
}

.docs-subnav-select-caret {
    position: absolute;
    top: 0;
    right: 0;
    color: #006E9A;
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    pointer-events: none;
}

.docs-subnav-right {
    margin-left: auto;
    display: flex;
    align-items: center;
    width: 200px;
    padding-left: 20px;
    /* border-left: 2px darkgray solid; */
    /* background-color: white; */
}

.docs-search {
    border: 1px lightgray solid;
    display: flex;
    align-items: center;
    width: 180px;
    padding: 2px 2px 2px 10px;
    margin: 6px 5px 6px auto;
}

.docs-search:focus-within {
    outline: solid #00aeff 1px;
}

.docs-subnav-search-icon {
    color: #131314;
    padding: 0 2px 1px 2px;
    display: inline-flex;
}

.docs-subnav-search-close {
    color: #131314;
    padding: 0 20px;
    font-size: 20px;
    cursor: pointer;
    display: none;
}

.docs-content {
    height: 100%;
    position: relative;
    top: 104px;
}

.docs-toc-container {
    min-width: 225px;
    height: calc(100vh - 130px);
    border-right: 1px solid #E1E3E3;
    padding-top: 25px;
    padding-right: 20px;
    overflow: auto;
    position: fixed;
}

.docs-toc-app {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.docs-toc-app h1 {
    color: #6D6E70;
    font-size: 24px;
    font-weight: 600;
    margin: 0;
}

.docs-product-logo {
    width: 40px;
    height: 40px;
    margin-right: 12px;
}

#search-query {
    color: #131314;
    font-size: 14px;
    font-family: 'Open Sans', sans-serif;
    padding-left: 10px;
    width: 150px;
    height: 25px;
    border: none;
    background-color: transparent;
    padding-top: 2px;
}

#search-query:focus-visible {
    outline: none;
}

.docs-toc-filter {
    position: relative;
    margin-bottom: 30px;
}

#docs-toc-input {
    color: #888888;
    font-size: 14px;
    font-family: 'Open Sans', sans-serif;
    display: block;
    height: 28px;
    font-size: 14px;
    width: 185px;
    border: 1px solid #D7D7D7;
    padding: 0 30px 0 10px;
}

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

.toc-subpages {
    display: none;
}

.toc-subpages li {
    margin-left: 20px;
}

.toc-subpages li a {
    width: 179px;
}

a.anchor {
    display: block;
    position: relative;
    top: -170px;
    visibility: hidden;
}

@media only screen and (max-width: 860px) {
    .docs-navbar-left {
        display: none;
    }
}

@media only screen and (max-width: 700px) {
    .docs-subnav-right {
        display: none;
    }
}


/* -------------------------------------------------------------- */


/* Page Feedback Input Styles */

.feedback-container,
.feedback-container-new {
    border: 1px solid #E1E3E3;
    padding: 20px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin: 80px auto;
    max-width: 600px;
}

.feedback-top-left {
    font-size: 16px;
    color: #131314;
}

.feedback-top-left>.form-group {
    margin-bottom: 0;
}

.feedback-top-right {
    margin-left: auto;
}

.feedback-button {
    border: 1.5px solid #ccc;
    color: #6D6E70;
    background-color: #f1f1f1;
    height: 36px;
    line-height: 31px;
    font-size: 14px;
    font-weight: 700;
    margin-left: 5px;
    border-radius: 5px;
    width: 80px;
}

.feedback-button:not(:disabled):hover {
    color: #131314;
    background-color: #e5e5e5;
}

.feedback-button:disabled:hover {
    cursor: not-allowed;
    color: #6D6E70;
}

.feedback-selected:disabled:hover {
    color: white !important;
}

.feedback-button i {
    margin-right: 5px;
    font-size: 16px;
}

#feedback-response {
    color: #6D6E70;
    font-size: 16px;
    display: none;
}

.feedback-selected {
    border: 1px solid #6D6E70;
    background-color: #6D6E70;
    color: white;
}

#feedback-survey {
    display: none;
    width: 100%;
    margin-top: 10px;
}

.feedback-radio {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    font-weight: 400;
    font-size: 14px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.feedback-radio input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.feedback-radio-hide {
    display: none;
}

.radiobtn {
    position: absolute;
    top: 0;
    left: 0;
    height: 22px;
    width: 22px;
    background-color: #fff;
    border: 2px solid #ccc;
    border-radius: 50%;
}

.feedback-radio:hover input~.radiobtn {
    border: 2px solid #00aeff;
}

.feedback-radio input:checked~.radiobtn {
    background-color: #00aeff;
    border: 2px solid #00aeff;
}

.radiobtn:after {
    content: "";
    position: absolute;
    display: none;
}

.feedback-radio input:checked~.radiobtn:after {
    display: block;
}

.feedback-radio .radiobtn:after {
    top: 5px;
    left: 5px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: white;
}

.feedback-suggestions label,
.feedback-email label {
    font-weight: 400;
    font-size: 14px;
    margin-top: 10px;
}

.feedback-suggestions textarea {
    border: 1px solid #E1E3E3;
    resize: vertical;
    margin-bottom: 10px;
    width: 100%;
}

.feedback-email input {
    border: 1px solid #E1E3E3;
    resize: vertical;
    margin-bottom: 40px;
    width: 100%;
}

.submit-feedback {
    background-color: #00a859;
    color: #fff;
    font-weight: 400;
    text-align: center;
    cursor: pointer;
    border: none;
    border-radius: 5px;
    height: 35px;
    min-width: 150px;
}

.submit-feedback:hover {
    background-color: #009750;
    color: #fff;
}

@media only screen and (max-width: 800px) {

    .feedback-container,
    .feedback-container-new {
        justify-content: center;
    }

    .feedback-top-left {
        text-align: center;
        width: 100%;
    }

    .feedback-top-right {
        margin: 10px 0;
    }

    .submit-feedback {
        display: block;
        margin: 0 auto;
    }
}


/* TOC headings */

:not(.level2)>li>.toc-heading,
:not(.level2)>li>.toc-heading-active {
    font-weight: bold;
    font-size: 15px;
    text-transform: uppercase;
    margin-left: -10px !important;
}

:not(.level2)>li>a:first-child.toc-heading:hover,
:not(.level2)>li>a:first-child.toc-heading:focus {
    color: inherit !important;
    cursor: default;
}

.toc-heading-active:hover {
    color: #00aeff
}

.line-below {
    padding-bottom: 20px !important;
    border-bottom: 1px solid #E1E3E3 !important;
}

.margin-below-toc {
    margin-bottom: 100px;
}


/* Styling for code copy buttons  ------------------------- */

.copy-code-button {
    color: #131314;
    background-color: #f1f1f1;
    border: 1px solid #a1a1a1;
    border-radius: 3px 3px 3px 3px;
    /* right-align */
    display: block;
    margin-left: auto;
    margin-right: 0;
    margin-bottom: -15px;
    padding: 3px 12px;
    font-size: 0.8em;
    font-weight: 500;
}

.copy-code-button:hover,
.copy-code-button:focus {
    cursor: pointer;
    background-color: #e5e5e5;
    color: #131314;
}

.copy-code-button:focus {
    /* Avoid an ugly focus outline on click in Chrome,
       but darken the button for accessibility.
       See https://stackoverflow.com/a/25298082/1481479 */
    background-color: #f1f1f1;
    color: #00aeff;
    font-weight: 600;
    outline: 0;
}

.copy-code-button:active {
    background-color: #D9D9D9;
}

pre {
    /* Avoid pushing up the copy buttons. */
    /* margin: 0; */
}

/* This code hides cross references between PDF pages. Corresponding code (.web-only) that hides cross references in the web app is in /templates/pdf/styles/main.css. */
.pdf-only {
    display: none;
}

/*
  .sidetoc, .sidefilter {
    margin-top: 56px;
  }
  */

.statusMessage {
    background-color: #aae2c8;
    font-size: 13.5px;
    font-weight: 600;
    padding-top: 15px;
    padding-bottom: 20px;
    padding-right: 15px;
    margin-top: -16px;
    margin-right: 16px;
    margin-left: -40px;
    margin-bottom: 10px;
    padding-left: 5em;
    text-indent: -5em;
}

#statusIcon {
    font-size: 24px;
    margin-left: 100px;
    transform: translate(0, 5px);
    margin-right: -36px;
}

.toc-deprecated:before {
    content: 'Deprecated' !important;
    background-color: #d7dde4;
    color: #131314;
    border-radius: 3px;
    font-size: 9px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.15px;
    margin-left: 0px;
    margin-top: 4px;
    margin-bottom: 4px;
    margin-right: 4px;
    padding: 3px 7px 3px 10px;
    position: relative;
    top: -1px;
}

/* "Page has moved/is obsolete" banner at top of page */

#nextWarning {
    background-color: #ffdbb7;
    font-size: 12px;
    font-weight: 400;
    height: 35px;
}

#nextWarning p {
    text-align: center;
    margin: auto;
    font-size: 13.5px;
    font-weight: 600;
}

#nextWarningToc {
    margin-top: 56px;
}

/* Which DOS versions apply to page */

#tag {
    font-size: 13.5px;
    font-weight: 600;
    padding-top: 15px;
    padding-bottom: 15px;
    padding-right: 15px;
    padding-left: 15px;
    margin-top: -16px !important;
    margin-left: -50px;
    margin-bottom: 10px !important;
    margin-right: 15px;
    text-indent: 4em;
    background: #d6f3ff;
}

#dosVersion {
    padding-left: 12px;
    font-weight: 400;
}

#success-checkmark {
    background: #00aeff;
    color: white;
    padding: 1px 4px;
    border-radius: 50%;
    padding-right: 1px;
    margin-right: 8px;
}

#version-bump {
    padding-right: 15px;
}

/* Styles a message in a line anywhere in the document with {{ term }} - see main.js */

.message {
    font-size: 13.5px;
    font-weight: 600;
    padding-top: 8px;
    padding-bottom: 8px;
    padding-left: 15px;
    margin-top: 35px;
    margin-bottom: -5px;
    text-indent: 2em;
    background: #d6f3ff;
    display: inline-block;
    width: 100%;
}

.message>.fa:before {
    margin-left: -52px;
    padding-right: 10px;
    color: #00aeff;
}

/* Formats the use case table, including inserting the use case header */

.use-case {  /* Sets the width of the use case table */
    width:100%;
  }
  
  .use-case td:first-child {  /* Sets the width of the first column */
    width:20%;
  }
  
  .use-case td:first-child img { /* Sets properties for the image in the first column */
  
    padding-right:15px;
    height: 125px;
    width: 125px;
    border:none !important;
  }
  
  .use-case::before { /* Adds the heading "Use Case" above the table; applies the same formatting to that heading that's used for h3 */
    content: "Use Case";
    font-size: 22px;
    font-weight: 600;
    line-height: 1.5;
    color: #131314;
    margin-top: 30px;
  }

  .word-break {
    word-break: break-all;
  }

/* ===== ARTICLE LIST STYLES ===== */

:root {
  --list-indent: 2rem;
  --list-spacing: 0.5rem;
  --list-item-spacing: 0.25rem;
  --list-color: #131314;
  --list-marker-color: inherit;
}

/* Base list styles - override docfx defaults */
article ul,
article ol {
  margin: var(--list-spacing) 0;
  padding-left: var(--list-indent);
  color: var(--list-color);
  line-height: 1.5;
  list-style: none;
  page-break-inside: avoid;
}

article li {
  margin: var(--list-item-spacing) 0;
  display: table;
}

/* ===== UNORDERED LIST MARKERS ===== */

/* Level 1: Filled circle */
article ul > li::before {
  content: "•";
  color: var(--list-marker-color);
  display: table-cell;
  padding-right: 10px;
  font-weight: bold;
}

/* Level 2: En dash */
article ul ul > li::before {
  content: "–";
  padding-right: 15px;
}

/* Level 3: Hyphen */
article ul ul ul > li::before {
  content: "-";
  padding-right: 10px;
}

/* Level 4: En dash (alternate) */
article ul ul ul ul > li::before {
  content: "–";
  padding-right: 10px;
}

/* ===== ORDERED LIST MARKERS ===== */
article ol {
  counter-reset: item;
}

article ol > li {
  counter-increment: item;
}

/* Level 1: 1, 2, 3... */
article ol > li::before {
  content: counter(item) ". ";
  color: var(--list-marker-color);
  display: table-cell;
  padding-right: 10px;
  font-weight: inherit;
  font-family: inherit;
}

/* Level 2: a, b, c... */
article ol ol {
  counter-reset: item;
}

article ol ol > li::before {
  content: counter(item, lower-alpha) ". ";
}

/* Level 3: i, ii, iii... */
article ol ol ol {
  counter-reset: item;
}

article ol ol ol > li::before {
  content: counter(item, lower-roman) ". ";
}

/* Level 4: A, B, C... */
article ol ol ol ol {
  counter-reset: item;
}

article ol ol ol ol > li::before {
  content: counter(item, upper-alpha) ". ";
}

/* ===== MIXED LIST HANDLING ===== */
/* When UL is nested in OL, reset counter context */
article ol ul {
  counter-reset: none;
}

/* When OL is nested in UL, establish new counter context */
article ul ol {
  counter-reset: item;
}

/* ===== SPECIAL OVERRIDES ===== */
/* Preserve existing spacing for nested items */
article ul li ul li:first-child,
article ol li ol li:first-child {
  margin-top: 6px;
}

article ul li ul li:last-child,
article ol li ol li:last-child {
  margin-bottom: 6px;
}

article ul li ul li ul li:first-child,
article ol li ol li ol li:first-child {
  margin-top: 6px;
}

article ul li ul li ul li:last-child,
article ol li ol li ol li:last-child {
  margin-bottom: 6px;
}

/* Last item in top-level lists */
article ul > li:last-child {
  padding-bottom: 10px;
}

/* ===== OVERRIDES ===== */
/* Preserve existing behavior for blockquotes */
blockquote ul > li::before {
  content: "•";
  float: left;
  display: table-cell;
  padding-right: 15px;
}

blockquote ul > li {
  padding-bottom: 5px;
  text-indent: -15px;
  padding-left: 15px;
  display: block; /* Override table display for blockquotes */
}

/* Preserve existing behavior for alerts */
.alert ul > li::before {
  content: "•";
  display: inline;
  padding-right: 0.5rem;
}

.alert ul > li {
  display: block; /* Override table display for alerts */
}

/* Preserve existing behavior for tables */
table > tbody > tr > td > ul > li {
  padding-right: 7px;
  display: table;
}

table > tbody > tr > td > ul > li > ul > li {
  display: table;
  padding-right: 15px;
}

/* Exclude tab group headers from list styling */
article .tabGroup > ul > li::before {
  content: "";
}

article .tabGroup > ul > li:last-child {
  padding-bottom: 0;
}

article .tabGroup > ul > li {
  display: inline-block; /* Override table display for tab groups */
}

/* ===== RESPONSIVE ADJUSTMENTS ===== */
@media (max-width: 768px) {
  :root {
    --list-indent: 1.5rem;
    --list-spacing: 0.4rem;
  }
}

/* ===== RELEASE NOTES STYLES ===== */

.release-notes details {
    border: 1px solid #ddd;
    margin-bottom: 10px;
    background-color: white;
}

.release-notes summary {
    padding: 15px 20px;
    background-color: #f5f5f5;
    border-bottom: .66667px solid #ddd;
    border-radius: 4px;
    cursor: pointer;
    font-size: 22px;
    font-weight: 600;
    color: inherit;
    user-select: none;
    position: relative;
}

.release-notes summary:hover {
    background-color: #e9ecef;
}

/* Custom arrow styling */
.release-notes summary::-webkit-details-marker {
    display: none;
}

.release-notes summary::before {
    content: "▶";
    position: absolute;
    right: 20px;
    color: #666;
    transition: transform 0.2s ease;
}

.release-notes details[open] summary::before {
    transform: rotate(90deg);
}

/* Content area */
.release-notes .release-content {
    padding: 20px;
    border-top: none;
    animation: slideIn 0.2s ease-out;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.release-notes .current-release summary:hover {
    background-color: #C6EAFF;
}

/* Typography within release content */
.release-notes .release-content h3 {
    color: #004256;
    margin-top: 0;
    margin-bottom: 15px;
}

.release-notes .release-content h4 {
    color: #006d9a;
    margin-top: 20px;
    margin-bottom: 10px;
}

.release-notes .release-content p {
    margin-bottom: 15px;
    line-height: 1.5;
}

/* Responsive design */
@media (max-width: 768px) {
    .release-notes summary {
        padding: 12px 15px;
        font-size: 16px;
    }
    
    .release-notes .release-content {
        padding: 15px;
    }
    
    .release-notes summary::before {
        right: 15px;
    }
}

/* ===== VIDEO LIBRARY - VIMEO ===== */

.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

@media (max-width: 900px) { .video-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .video-grid { grid-template-columns: 1fr; } }

.video-wrap { position: relative; width: 100%; padding-bottom: 56.25%; overflow: hidden; border-radius: 6px; }
.video-wrap iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: 0; }
.video-caption { margin-top: 0.5rem; font-size: 1.25rem; color: #333; }

.video-caption div {display: inline;}
.duration-badge {margin-left: 0.3rem;}

.poster-btn,.poster{position:absolute;top:0;left:0;width:100%;height:100%;border:0;padding:0;margin:0;background:none;cursor:pointer;}
.poster img{width:100%;height:100%;object-fit:cover;display:block;}
.play-button{position:absolute;left:50%;top:50%;transform:translate(-50%,-50%);width:64px;height:64px;border-radius:50%;background:rgba(0,0,0,0.6);display:flex;align-items:center;justify-content:center;color:white;font-size:24px;pointer-events:none;}
