@import url('https://fonts.cdnfonts.com/css/segoe-ui-4');

div, p, span, label, input, textarea, h1, h2, h3, h4, h5, h6, table, tr, td, th {
    font-family: 'Segoe UI', sans-serif;
}

.pre-loader{
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background: rgb(54, 54, 54);
}

.load{
    position: absolute;
    top: 40%;
    left: 45%;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 10px solid transparent;
    border-top: 10px solid #C41E3A;
    border-bottom: 10px solid #C41E3A;
    animation: rotateAntiCW 1.8s linear infinite;
}

.load::after{
    content: '';
    position: absolute;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 10px solid transparent;
    border-left: 10px solid #C9CC3F;
    border-right: 10px solid #C9CC3F;
    animation: rotate 1s linear infinite;
}

@keyframes rotate{
    0%{transform: rotate(0deg);}
    100%{transform: rotate(-360deg);}
}

@keyframes rotateAntiCW{
    0%{transform: rotate(0deg);}
    100%{transform: rotate(360deg);}
}

body {
    display: none;
}

body.clsDark hr{
    background-color: #585758;
}

body.clsDark .icon {
    color: #569CCA;
}


body.clsDark ::-moz-selection { /* Code for Firefox */
    background: #00579a;
  }
  
  body.clsDark  ::selection {
    background: #00579a;
  }

  body.clsLight ::-moz-selection { /* Code for Firefox */
    background: #0170c5;
  }
  
  body.clsLight ::selection {
    background: #0170c5;
  }


/* Site Header */
body.clsDark .site-header {
    background: #252526;
    color: #CCCCCC;
    border-bottom: 1px solid #585758;  
}

body.clsDark .site-title{
    color: #CCCCCC;
}

body.clsLight .site-header {
    background: #f8f8f8;
    color: #171717;
    border-bottom: 1px solid #d9d9d9;  
}

body.clsLight .site-title{
    color: #171717;
}



.site-title:hover {
    background-image: none;
}

/* Search */

body.clsDark .search-results a{
    color: #CCCCCC;
}

body.clsDark .search-active .search-results {
    background: #171717;
    color: #CCCCCC;
}

body.clsDark .search-result:hover, body.clsDark .search-result.active{
    background: #2f2f2f;
}

/* SideBar */
body.clsDark .main-header{
    border-bottom: 1px solid #404040;
}

@media (min-width: 31.25rem){
    .main-header nav.aux-nav{
        display:none;
    }
}
@media (min-width: 50rem){
    .main-header nav.aux-nav{
        display:inline-block;
    }
}

body.clsDark .side-bar{
    border-right: 1px solid #404040;
}

body.clsDark .side-bar, 
body.clsDark .search-input, 
body.clsDark .search-active, 
body.clsDark .main-header{
    background: #252526;
    color: #CCCCCC;
}

body.clsDark .side-bar .nav-list-item .nav-list-link{
    color: #CCCCCC;
}

body.clsLight .main-header{
    border-bottom: 1px solid #d9d9d9;
}

body.clsLight .side-bar{
    border-right: 1px solid #d9d9d9;
}

body.clsLight .side-bar, 
body.clsLight .search-input, 
body.clsLight .search-active, 
body.clsLight .main-header{
    background: #f8f8f8;
    color: #171717;
}

body.clsDark .side-bar .nav-list-item .nav-list-link{
    color: #CCCCCC;
}

.side-bar .nav-list-item .nav-list-link:hover, 
.side-bar .nav-list-item .nav-list-link.active {
    font-weight: 450;
}

body.clsDark .side-bar .nav-list-item .nav-list-link:hover, 
body.clsDark .side-bar .nav-list-item .nav-list-link.active {
    background: #4d4d58;
    color: white;
}

body.clsLight .side-bar .nav-list-item .nav-list-link:hover, 
body.clsLight .side-bar .nav-list-item .nav-list-link.active {
    background: #e1e1e1;
    color: #171717;
    /* font-weight: bold; */
}

body.clsLight .side-bar .nav-list-item .nav-list-link{
    color: #171717;
}

/* Body */

body.clsDark{
    background-color: #1E1E1E;
    color: #CCCCCC;
}

body.clsLight{
    background-color: #FFFFFF;
    color: #171717;
}

body{
    font-weight: 400;
    line-height: 160%;
    min-height: 100vh;
}

body.clsDark p, 
body.clsDark h1, 
body.clsDark h2, 
body.clsDark h3, 
body.clsDark h4, 
body.clsDark h5, 
body.clsDark h6, 
body.clsDark span, 
body.clsDark label{
    color: #CCCCCC !important;
}

body.clsDark a{
    color: #569CCA;
}

body.clsLight a{
    color: #0065BA;
}


body.clsLight p, 
body.clsLight h1, 
body.clsLight h2, 
body.clsLight h3, 
body.clsLight h4, 
body.clsLight h5, 
body.clsLight h6, 
body.clsLight span, 
body.clsLight label{
    color: #171717 !important;
}



a{
    cursor: pointer;
    text-decoration: none;
    word-wrap: break-word;
    background-image: none !important;
}

body.clsDark a:hover {
    color: #278cda;
}

a:hover {
    text-decoration: underline;
}

.side-bar a:hover{
    text-decoration: none;
}

.main-content h1  {
    margin-top: 0; 
}

.main-content a {
    white-space: normal !important;
}

body.clsDark code, 
body.clsDark pre, 
body.clsDark tt {
    background-color: #2f2f2f;
    border: 1px solid #404040;
}

body.clsLight code, 
body.clsLight pre, 
body.clsLight tt {
    background-color: #f2f2f2;
    border: 1px solid #d3d3d3;
}

code, pre, tt {
    font-size: 12px;
}

code, code span, code p{
    font-family: ui-monospace,SFMono-Regular,SF Mono,Menlo,Consolas,Liberation Mono,monospace;
}

li .codeContent .highlight {
    margin-top: 0rem !important;
}

body.clsDark pre, 
body.clsDark pre.highlight, 
body.clsDark figure.highlight{
    background-color: #2f2f2f;
    border: 1px solid #404040;
}

body.clsLight pre, 
body.clsLight pre.highlight, 
body.clsLight figure.highlight{
    background-color: #f2f2f2;
    border: 1px solid #d3d3d3;
}

pre, pre.highlight, figure.highlight{
    padding: 0.75rem;
    margin-top: 0;
    margin-bottom: 0;
    border-radius: 4px;
    width: 100%;
}

body.clsDark pre.highlight code, 
body.clsDark pre code{
    background-color: #2f2f2f;
    color: #e3e1e1;
}

body.clsLight pre.highlight code, 
body.clsLight pre code{
    background-color: #f2f2f2;
    color: #171717;
}

pre.highlight code, pre code{
    line-height: 1.8;

    border: none;

    font-size: 13.6px;
    white-space: pre;
    word-break: normal;
}

body.clsDark pre.highlight span{
    color: #e3e1e1 !important;
}

body.clsLight pre.highlight span{
    color: #171717 !important;
}


div.highlight{
    position: relative;
}


body.clsDark .codeHeader{
    background-color: #404040;
    border: 1px solid #404040;
}

body.clsLight .codeHeader{
    background-color: #d3d3d3;
    border: 1px solid #d3d3d3;
}


.codeHeader{
    border-bottom: 0;
    min-height: 35px;
    line-height: 2em;
    padding-left: 10px;
    margin-bottom: 0px !important;
}

.codeContent{
    margin-top: 0px !important;
    border-radius: 0px 0px 5px 5px;
}

.codeContent pre{
    border-radius: 0px 0px 5px 5px;
}

body.clsDark .codeContent code{
    border: solid 1px #2f2f2f !important;
}

body.clsLight .codeContent code{
    border: solid 1px #f2f2f2 !important;
}

body.clsDark .site-footer p{
color:  white;
}

thead th, th, td{
    border-bottom: 1px solid rgb(96 92 96 / 50%);
    text-align: left;
}

body.clsDark th{
    border: 1px solid #404040;
    background: #262626;
}

body.clsDark td {
    background-color: #2f2f2f;
    border: 1px solid #404040;
}

body.clsDark .btn-dark{
    background: #454c56;
    color: #dbe3df !important;
}

body.clsLight th{
    border: 1px solid #d3d3d3;
    background: #ecebeb;
}

body.clsLight td {
    background-color: #f2f2f2;
    border: 1px solid #d3d3d3;
}


.btn-dark{
    height: 32px;
    border-radius: 0;
    overflow: hidden;
}

    body.clsDark .btn-dark:hover{
    background: #2b3036;
    color: #eef7f2 !important;
}
 
body.clsDark .fa {
    color: #dbe3df !important;
}


body.clsLight .fa {
    color: #569CCA !important;
}


body.clsDark #cookie_bar{
    background-color: #2f2f2f !important;
    color: #e3e1e1;
    border-top: 1px solid #585758 !important;
}

body.clsDark #cookie_bar a{
    color: #e3e1e1;
    text-decoration: none;
}

body.clsLight .cookie_close{
    color: #e3e1e1 !important;
}

body.clsDark .u-userLauncherColor:not([disabled]) {
    background-color: #e2e2e2 !important;
}

/* Scrollbar */
/* width */
::-webkit-scrollbar {
    width: 7px;
  }

  /* Track */
  ::-webkit-scrollbar-track {
    background: #f1f1f1; 
  }
   
  /* Handle */
  ::-webkit-scrollbar-thumb {
    background: #888; 
  }
  
  /* Handle on hover */
  ::-webkit-scrollbar-thumb:hover {
    background: #555; 
  }



  /* Theme Change Buttons */
.clsDarkTheme a, .clsLightTheme a{
text-decoration: none;
}

.clsDarkTheme i, .clsLightTheme i{
    font-size: 15px;
    }


/* CSS for collapsable */

.clsCollapseTarget {
    border-bottom-left-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
}

.clsCollapseTarget.collapse:not(.show) {
    display: block;
    height: 250px;
    overflow: hidden;
  }
 
  .clsCollapseTarget.collapsing {
    height: 250px;
  }

  div.clsCollapserInvokerArea{
    padding: 3px 0;
    background: rgb(1 1 1 / 31%);
    border-radius: 0 0 3px 3px;
    display: block;
    width: 100%;
    background-color: #2c2b2b;
    border: 1px solid #404040;
    border-top: none;
    padding-left: 5px;
  }

  div.clsCollapserInvokerArea:hover{
    background-color: #242323;
  }

  div.clsCollapserInvokerArea div.clsPDFcoAd{
      margin-top: 5px;
  }
 
  a.clsCollapseInvoker{
    text-align: left;
    text-decoration: none;
  }

  

  body.clsLight a.clsCollapseInvoker{
    background-color: #f2f2f2;
    border: 1px solid #d3d3d3;
  }

  body.clsLight a.clsCollapseInvoker:hover{
    background-color: #dfdede;
  }
  
  a.clsCollapseInvoker span.spnShowHide{
    color: inherit !important;
  }

  /* a.clsCollapseInvoker.collapsed::after {
    content: '+ Show More';
  }
 
  a.clsCollapseInvoker:not(.collapsed)::after {
    content: '- Show Less';
  } */
  

  /* Back to Top */
  #btnBackToTop {
    display: inline-block;
    background-color: #7c943b;
    width: 40px;
    height: 40px;
    text-align: center;
    border-radius: 4px;
    position: fixed;
    bottom: 15px;
    right: 165px;
    transition: background-color .3s, opacity .5s, visibility .5s;
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
    text-decoration: none;
}

#btnBackToTop::after {
    content: "\f062";
    font-family: "FontAwesome";
    font-weight: normal;
    font-style: normal;
    font-size: 2em;
    line-height: 40px;
    color: #fff;
}

#btnBackToTop:hover {
    cursor: pointer;
    background-color: #566828;
}

#btnBackToTop:active {
    background-color: #566828;
}

    #btnBackToTop.show {
        opacity: 1;
        visibility: visible;
    }

/*/ Back to Top /*/

#jsTreeSDKDocumentation ul{
    padding-left: 0em !important;
}

#jsTreeSDKDocumentation ul > li::before {
    position: absolute;
    margin-left: 0 !important;
    color: #959396;
    content: none !important;
}

span.introStyle a {
    margin-right: 5px;
    margin-left: 5px;
}

body.clsDark li.jstree-node.jstree-open i.jstree-icon.jstree-ocl {
    background-image: url('/assets/images/arrow-down-white.png') !important;
    background-size: 14px 14px;
    background-position: center;
}

body.clsDark li.jstree-node.jstree-closed i.jstree-icon.jstree-ocl {
    background-image: url('/assets/images/arrow-right-white.png') !important;
    background-size: 14px 14px;
    background-position: center;
    background-position-x: 7px;
}

body.clsLight li.jstree-node.jstree-open i.jstree-icon.jstree-ocl {
    background-image: url('/assets/images/arrow-down.png') !important;
    background-size: 14px 14px;
    background-position: center;
}

body.clsLight li.jstree-node.jstree-closed i.jstree-icon.jstree-ocl {
    background-image: url('/assets/images/arrow-right.png') !important;
    background-size: 14px 14px;
    background-position: center;
    background-position-x: 7px;
}

li.jstree-node.jstree-leaf i.jstree-icon.jstree-ocl {
display: none;
}

body.clsDark .jstree-default .jstree-clicked {
    background: #4b6774 !important;
    border-radius: 2px;
    box-shadow: inset 0 0 1px #999;
}

.search-active .search-results {padding: 15px;}

div#main-header ul.aux-nav-list li:nth-child(1) a.site-button, nav.aux-nav ul.aux-nav-list li:nth-child(1) a.site-button{
    height: 35px; 
    margin-top: 13px;
    font-size: 16px;
    color: white;
    background-color: #d90808;
    border-radius: 4px;
    box-sizing: border-box;
    vertical-align: baseline;
    text-decoration: none;
    font-weight: bold;
    padding-top: 0.3em;
    padding-bottom: 0.3em;
    padding-right: 2em;
    padding-left: 2em;
  }

  div.clsChangeTheme ul{
    list-style: none;
    display: inline-block;
    margin: 0;
    padding: 0;
}

.clsDark div.clsChangeTheme{
  color: #CCCCCC;
}

.clsLight div.clsChangeTheme{
color: #171717;
}
