
/* search section template */

.help_center_piece {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 0px 20px;
}


.help_center_piece .navigation_button_container {
    margin: 10px 30px;
    position: relative;
}

.help_center_piece .navigation_button_container:hover svg {
    opacity: 0.7;
}


/* NAVIGATION */

.search-content {
    max-height: 400px;
    overflow-y: auto;
}


.side_navigation {
  position: absolute;
  left: 0px;
  padding: 5px;
  width: 250px;
  overflow-y: auto;
  height: 100%;
}

.side_navigation ul li {
    width: 210px !important;
}

.main_content {
    display: block;
    width: calc(100% - 250px);
    margin-left: 250px;
    overflow-y: auto;
    height: 100%;
}

.nav_text_container {
    width: 100%;
    height: calc(100vh - 72px);
    position: relative;
    padding-top: 10px;
    padding-bottom: 10px;
    overflow: hidden;
}

.content_toggle {
    border: 1px solid #000000;
    outline: none;
    background: none;
    padding: 3px 6px;
    font-size: 15px !important;
    color: #000000;
    margin: 10px 5px;
    display: none;
}

.content_toggle:hover  {
    color: #ffffff;
    background-color: #000000;
}


.transtion_move .side_navigation,
.transtion_move .main_content {
    -webkit-transition: all 0.33s cubic-bezier(0.685, 0.0473, 0.346, 1);
    -moz-transition: all 0.33s cubic-bezier(0.685, 0.0473, 0.346, 1);
    -o-transition: all 0.33s cubic-bezier(0.685, 0.0473, 0.346, 1);
    -ms-transition: all 0.33s cubic-bezier(0.685, 0.0473, 0.346, 1);
    transition: all 0.33s cubic-bezier(0.685, 0.0473, 0.346, 1);
}
    
.expose .side_navigation {
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.expose .main_content {
    -webkit-transform: translate3d(250px, 0, 0);
    -moz-transform: translate3d(250px, 0, 0);
    -o-transform: translate3d(250px, 0, 0);
    -ms-transform: translate3d(250px, 0, 0);
    transform: translate3d(250px, 0, 0);
}


/* SIDE MENU DROPDOWN */

ul.side_nav_list li a {
  -webkit-transition: 0.2s linear;
  -moz-transition: 0.2s linear;
  -ms-transition: 0.2s linear;
  -o-transition: 0.2s linear;
  transition: 0.2s linear;
}

ul.side_nav_list li ul {
  overflow: hidden;
  visibility: hidden;
  max-height: 0px;
  /* -webkit-transition: max-height 0.3s ease-in;
  -moz-transition: max-height 0.3s ease-in;
  -o-transition: max-height 0.3s ease-in;
  -ms-transition: max-height 0.3s ease-in;
  transition: max-height 0.3s ease-in; */
}

ul.side_nav_list li ul.engaged {
  visibility: visible;
  /* max-height: 120px; */
}


ul.side_nav_list li a i,
ul.side_nav_list ul li a i {
  width: 16px;
  height: auto;
  text-align: center;
  margin-right: 5px;
  float:right;
}

ul.side_nav_list li a,
ul.side_nav_list ul li a {
  color: #000000;
  display: block;
}

ul.side_nav_list li,
ul.side_nav_list ul li {
  border-left: 4px solid transparent;
  padding: 4px 5px !important;
  color: #000000;
  width:100% !important;
}

ul.side_nav_list li a:hover,
ul.side_nav_list li.active a {
  color: #005f69 !important;
  background: #b1c7ca !important;
  border-left: 4px solid #005f69 !important;
}


.guide_content_body {
    padding: 20px;
}






@import url("/webfonts/font_styles.css");

/* FONT METRICS */



.guide_content_body p {
  font-family: 'Merriweather', Helvetica, sans-serif;
  color: #000000;
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 20px;
  margin-top: 20px;
}


.article_heading {
  font-size: 40px !important;
}


.guide_content_body a {
  outline: 0;
  color: #2a737e;
  cursor: pointer;
  display: inline-block;
  position: relative;
  font-size: 17px;
}

.guide_content_body a:focus, 
.guide_content_body a:hover, 
.guide_content_body a:active {
  outline: 0;
  color: #43adbb;
  text-decoration: none;
}



.guide_content_body a:after {
  content: '';
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #43adbb;
  transform-origin: bottom right;
  transition: transform 0.25s ease-out;
}

.guide_content_body a:hover:after {
  transform: scaleX(1);
  transform-origin: bottom left;
}


.guide_content_body span {
  font-family: 'Merriweather', Helvetica, sans-serif;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 900;
  font-family: 'Merriweather Black', Helvetica, sans-serif;
  color: #515769;
  line-height: 1.4;
  margin: 30px 0 15px;
}

h1>a, h2>a, h3>a, h4>a, h5>a, h6>a {
  color: #515769;
}

h1>a:hover, h2>a:hover, h3>a:hover, h4>a:hover, h5>a:hover, h6>a:hover {
  color: #999caa;
  text-decoration: none;
}

h1>a:focus, h2>a:focus, h3>a:focus, h4>a:focus, h5>a:focus, h6>a:focus {
  text-decoration: none;
}

strong {
  font-weight: 800;
}

.heading {
  font-size: 18px;
}
/* END */

.article_text_content .table td {
  color: #000000;
  font-size: 15px;
}

h1 {
  font-size: 28px;
}

h2 {
  font-size: 24px;
}

h3 {
  font-size: 20px;
}

h4 {
  font-size: 18px;
}

h5 {
    font-size: 16px;
}


/* LIST STYLING */
ul, ol {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

em,
ol li, 
ul li,
u,
s {
  font-size: 17px;
  font-weight: 300;
  font-family: 'Merriweather', Helvetica, sans-serif;
  color:  #000000;
  line-height: 1.8;
}


.docen-ui-unordered > li,
.docen-ui-tick-list > li {
    margin: 10px 0px;
    margin-left: 20px;
}

ul.docen-ui-tick-list,
ul.docen-ui-unordered {
    list-style-type: none;
}

ul.docen-ui-unordered > li::before {
    margin-right: 0.3em;
    content: "\25A0";
    color: black;
    font-weight: bold;
    display: inline-block;
    width: 1.2em; 
    margin-left: -1.5em;
    font-size: 1.1rem;
}

ul.docen-ui-tick-list > li::before {
    content: "✔";
    color: black;
    font-weight: bold;
    margin-right: 0.3em;
    display: inline-block;
    width: 1.2em; 
    margin-left: -1.5em;
    font-size: 1.1rem;
}

ol.docen-ui-ordered {
    list-style-type: none;
    counter-reset: item;
}

ol.docen-ui-ordered > li {
    counter-increment: item;
    margin: 10px 0px;
    margin-left: 20px;
}

ol.docen-ui-ordered > li:before {
    margin-right: 0.3em;
    content: counter(item);
    background: black;
    border-radius: 100%;
    color: white;
    width: 1.5rem;
    text-align: center;
    display: inline-block;
    margin-left: -1.5em;
    font-size: 0.8rem;
}


/* Nested lists inside items: restart counter if needed */
ol.docen-ui-ordered li > ol.docen-ui-ordered {
    counter-reset: subitem;
}

/* Nested list item */
ol.docen-ui-ordered li > ol.docen-ui-ordered > li {
    counter-increment: subitem;
    margin: 5px 0px;
}

/* Nested list item number — e.g., lowercase letters */
ol.docen-ui-ordered li > ol.docen-ui-ordered > li:before {
    content: counter(subitem, lower-alpha);
    background: #444;
    border-radius: 100%;
    color: white;
    width: 1.2em;
    height: 1.2em;
    line-height: 1.2em;
    text-align: center;
    font-size: 0.9em;
    margin-right: 0.3em;
    margin-left: -1.5em;
    display: inline-block;
}


.docen-ui-align-left {text-align: left;}
.docen-ui-align-center {text-align: center;}
.docen-ui-align-right {text-align: right;}
.docen-ui-align-justify {text-align: justify;}


/* Indentation levels: you can expand this if needed */
.docen-ui-indent-0 { margin-left: 0em; }
.docen-ui-indent-1 { margin-left: 2em; }
.docen-ui-indent-2 { margin-left: 4em; }
.docen-ui-indent-3 { margin-left: 6em; }
.docen-ui-indent-4 { margin-left: 8em; }


/* popup */
figure.docen-ui-image {
    text-align: center;
    margin: 0;
    display: block;
}

figure.docen-ui-image img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}


p img {
  display: block;              
  max-width: 100%;            
  height: auto;               
  margin: 1rem auto;          
  border-radius: 4px;
  /* box-shadow: 0 4px 10px rgba(0,0,0,0.15); */
}




.docen-ui-table-wrapper figcaption,
.docen-ui-image figcaption,
.content-media__object figcaption {
    padding: 0.5em;
    background: transparent;
    font-weight: bold;
    flex-shrink: 0;
    color: #555;
    font-size: 1.8em;
    margin-bottom: 5px;
}


/* install video */

figure.content-media__object {
    position:relative;
    width: 75%;
    display: block;
    margin: auto;
    background-repeat: no-repeat;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}


.content-media--video {
    width: 100%;
    height: auto;
    background-color: transparent;
}

.video-container {
    width: 100%;
    height: 100%;
    background: transparent;
    background: none;
    padding: 0.5px;
    transition: width .2s ease-in-out, height .2s ease-in-out, transform .38s ease-in-out;
    -webkit-transition: width .2s ease-in-out,  height .2s ease-in-out, -webkit-transform .38s ease-in-out;
}

.video-container.is-sticky {
    position: fixed;
    top: 400px;
    right: 140px;
    max-width: 280px;
    max-height: 158px;
    width: 280px;
    height: 158px;
    z-index: 1000;
}

@media screen and (min-width: 1120px) {
    .video-container.is-sticky {
        transform: translateX(47%);
    }
}
@media screen and (min-width: 100px) {
    .video-container.is-sticky {
        transform: translateX(47%);
    }
}



blockquote.docen-ui-blockquote {
    border-left: 4px solid #aaa;
    padding: 0.5em 1em;
    margin: 1em 0;
    background: #f5f5f5;
    color: #333;
    font-style: italic;
    position: relative;
}

blockquote.docen-ui-blockquote footer {
    display: block;
    margin-top: 0.5em;
    font-size: 0.9em;
    color: #666;
    font-style: normal;
    text-align: right;
}



.docen-ui-editable-table {
    outline: none;
    height: 100%;
    width: 100%;
    border-collapse: collapse;
}


.docen-ui-editable-table td:focus,
.docen-ui-editable-table th:focus  {
    outline: none;
}

.docen-ui-editable-table td.selected,
.docen-ui-editable-table th.selected {
    background-color: #e6f0ff;
    border-color: #4a90e2;
    position: relative;
}

.docen-ui-table-wrapper {
    display: flex;
    position: relative;
    padding: 4px;
    border: 3px solid transparent;
    width: 75%;
    flex-direction: column;
    outline: none;
    margin: 0;
}

.docen-ui-table-wrapper-inner {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    overflow-x: scroll;
}

.docen-ui-table-wrapper figcaption {
    padding: 0.5em;
    background: #f5f5f5;
    font-weight: bold;
    flex-shrink: 0;
}


.docen-ui-table-wrapper .resize-handle {
    display: none;
}

.docen-block-width-10 { width: 10% !important ;}
.docen-block-width-20 { width: 20% !important;}
.docen-block-width-30 { width: 30%!important ;}
.docen-block-width-40 { width: 40% !important;}
.docen-block-width-50 { width: 50% !important;}
.docen-block-width-60 { width: 60% !important;}
.docen-block-width-70 { width: 70% !important;}
.docen-block-width-80 { width: 80% !important;}
.docen-block-width-90 { width: 90% !important;}
.docen-block-width-100 { width: 100% !important;}




/* Large phones & small tablets */
@media (max-width: 600px) {
    .docen-block-width-10 ,
    .docen-block-width-20 ,
    .docen-block-width-30 ,
    .docen-block-width-40 ,
    .docen-block-width-50 ,
    .docen-block-width-60,
     .docen-block-width-70 { width: 80% !important;}
}

/* Medium phones (typical mobile widths) */
@media (max-width: 414px) {
    .docen-block-width-10 ,
    .docen-block-width-20 ,
    .docen-block-width-30 ,
    .docen-block-width-40 ,
    .docen-block-width-50 ,
    .docen-block-width-60 ,
    .docen-ui-table-wrapper,
    .content-media__object,
    .docen-ui-image,
    .docen-block-width-70,
    .docen-block-width-80,
    .docen-block-width-80 { width: 100% !important;}
}





















/* MEDIA QUERIES */


@media screen and (max-width: 850px) {
    .main_content {
        width: 100%;
        margin-left: 0px; 
    }
    .side_navigation {
        -webkit-transform: translate3d(-300px, 0, 0);
        -moz-transform: translate3d(-300px, 0, 0);
        -o-transform: translate3d(-300px, 0, 0);
        -ms-transform: translate3d(-300px, 0, 0);
        transform: translate3d(-300px, 0, 0);
    }
    .content_toggle {display: inline-block;}
}




@media (max-width: 767px) {
  .help_center_piece {
    display: none;
  }
}

@media (min-width: 768px) and (max-width: 989px) { 
   .help_center_piece{
    display: none;
  } 
}

/* Tablets in landscape */
@media (min-width: 768px) and (max-width: 989px) and (orientation: landscape) {
   .help_center_piece {
    display: none;
  } 
}

/* Phones in portrait */
@media (max-width: 767px) and (orientation: portrait) {
 .help_center_piece {
    display: none;
  }
}


table {
  /* width: 100%; */
  border-collapse: collapse;
  margin: 24px 0;
  font-size: 14px;
}

th, td {
  border: 1px solid #e5e7eb;
  padding: 10px 12px;
  text-align: left;
}

th {
  background-color: #f9fafb;
  font-weight: 600;
}

tr:nth-child(even) {
  background-color: #fafafa;
}

tr:hover {
  background-color: #f3f4f6;
}


/* ----------------------------
   Code Blocks
---------------------------- */

/* pre {
  background: #0f172a;
  color: #e5e7eb;
  padding: 16px;
  border-radius: 8px;
  overflow-x: auto;
  margin: 20px 0;
  font-size: 14px;
  line-height: 1.5;
} */

pre code {
  background: none;
  padding: 0;
  color: inherit;
}


/* ----------------------------
   Inline Code
---------------------------- */

code {
  background: #f3f4f6;
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 13px;
  font-family: "SFMono-Regular", Consolas, Monaco, monospace;
  color: #d63384;
}


/* Base code block */

pre {
  padding: 16px;
  border-radius: 8px;
  overflow-x: auto;
  margin: 20px 0;
  font-size: 14px;
}

/* CURL / shell commands */

code.language-bash,
code.language-shell {
  color: #d1fae5;
}

pre:has(code.language-bash),
pre:has(code.language-shell) {
  background: #0f172a;
  border-left: 4px solid #22c55e;
}

/* JSON blocks */

code.language-json {
  color: #e5e7eb;
}

pre:has(code.language-json) {
  background: #111827;
  border-left: 4px solid #3b82f6;
}