.row-header{
    position: sticky;
    top: 60px;
    width: 100%;
    z-index: 5;
    background-color: #8760fb;
} 
.custom-card.doc-header{
    /* min-height: 230px !important; */
    background-color: #8760fb;

}
.custom-card.doc-header.doc-header .card-body{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.custom-card.doc-header .card-body-text{
    color: #FFF;
    text-align: center;
}
.custom-card.doc-header .card-body-text h3{
    font-size: 32px;
    margin-bottom: 0px;
}
.custom-card.doc-header .card-body p{
    font-size: 17px;
}
.custom-card.doc-header .card-body .card-body-action{
    width: 100%;
    max-width: 560px;
}
.custom-card.doc-header .card-body .card-body-action input{
    /* min-width: 560px; */
    width: 100%;
    min-height: 38px;
    border-radius: 8px;
    font-size: 16px;
    border: 0px;
}
.custom-card.doc-header .card-body-text .app_doc_header_langs{
    display: flex;
    justify-content: center;
    flex-direction: row;
    gap: 12px;
    flex-wrap: wrap;
}
.custom-card.doc-header .card-body-text .app_doc_header_langs .doc-lang{
    padding: 12px;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s;
    min-width: 75px;
    font-weight: 500;
}
.custom-card.doc-header .card-body-text .app_doc_header_langs .doc-lang img{
    height: 32px;
    max-width: 60px;
    object-fit: contain;
}
.custom-card.doc-header .card-body-text .app_doc_header_langs .doc-lang p{
    margin: 0px;
}
.custom-card.doc-header .card-body-text .app_doc_header_langs .doc-lang:hover{
    background-color: #7a52f3;
}
.custom-card.doc-header .card-body-text .app_doc_header_langs .doc-lang.active{
    background-color: #FFF;
    color: #663399;
}
.documentation .sticky-aside{
    position: sticky;
    top: 110px;
    height: 100%;
    display: flex;
    /* justify-content: flex-end; */
}
@media screen and (min-width:991px) {
    .documentation > .row:first-child{
        gap: 44px;
    }
}
@media screen and (min-width: 1200px) {
    .documentation > .row:first-child{
        gap: 0px;
    }
}
@media screen and (max-width: 991px) {
    .documentation .sticky-aside{
        display: block;
        top: 0px;
        position: static;
    }
}
.documentation aside {
    transition: all 0.4s;   
    max-height: 90vh;
    overflow-y: scroll;
    max-width: 420px;
    min-width: 215px;
    flex-grow: 1;
    padding-bottom: 24px;
}
@media screen and (max-width: 991px) {
    .documentation aside{
        max-width: 100%;
        max-height: max-content;
        overflow: auto;
    }
    .documentation.container-fluid{
        margin-top: 70px !important;
    }
}
.documentation aside > p{
    color: rgb(226, 226, 226);
    font-family: "Rubik", sans-serif;
    font-size: 14px;
    margin-bottom: 9px !important;
}
.documentation aside > p {
    font-size: 14px;
    font-weight: 600;
    color: #8760fb;
    margin-bottom: 15px !important;
}
.documentation aside ul {
    list-style: none;
    padding: 0px;
    border-left: 2px solid rgb(146 88 246 / 54%);
    padding: 0px 12px;
    display: flex;
    flex-direction: column;
    /* gap: 8px; */
    position: relative;
    max-width: 360px;
}
.documentation aside ul li,
.documentation aside ul li a {

    color: #878787;
    /* font-weight: 500; */
    font-size: 14px;
    display: flex;
    align-items: center;
    position: relative;
    white-space: nowrap;
    cursor: pointer;
    border-radius: 6px;
    text-decoration: none;
}
.documentation aside ul li a{
    padding: 0px !important;
    display: block;
    width: 100%;
    height: 100%;
    padding: 6px 8px !important;
}
.documentation aside ul li:hover{
    color: #FFF !important;
    background-color: #9258f659;
}
.documentation aside ul li:hover a{
    color: #FFF;
}
.documentation aside ul li.active{
    color: #FFF;
    background-color: #9258f6a8;
}
.documentation aside ul li.active a{
    color: #FFF;
}
.documentation aside .close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    display: none;
    border: 0px;
}
.documentation aside .close-btn img {
    width: 10px;
}
.documentation aside .close-btn.active {
    display: block;
}
.documentation #aside-button{
    background-color: transparent;
    padding: 0px;
    border: 0px;
}
.documentation #aside-button:focus{
    outline: none;
}
.documentation #aside-button img{
    width: 20px;
}
/* Content */

.documentation main section {
    margin-bottom: 32px;
    max-width: 1200px;
}
.documentation main section h3 {
    font-size: 14px;
    font-weight: 400;
    color: #0070ff;
    margin-bottom: 8px;
}
.documentation main section h4 {
    font-size: 22px;
    font-weight: 500;
    color: #515151;
}
.documentation main section h5 {
    font-size: 18px;
    font-weight: 500;
    color: #515151;
}
pre{
    margin: 0px !important;
    background-color: #121212;
    border-radius: 0px;
}
pre code{
    background-color: #121212 !important;
    font-family: "JetBrains Mono", monospace;
    font-size: 12px;
    font-weight: 500;
    text-shadow: none;
}
pre code::-webkit-scrollbar-track
{
	background-color: #7a7a7a !important;
}
pre code::-webkit-scrollbar
{
	width: 4px !important;
	background-color: #a5a5a5 !important;
}
pre code::-webkit-scrollbar-thumb
{
	background-color: #383838 !important;
}
pre::-webkit-scrollbar-track
{
	background-color: #7a7a7a;
}
pre::-webkit-scrollbar
{
	width: 4px;
	background-color: #a5a5a5;
}
pre::-webkit-scrollbar-thumb
{
	background-color: #383838;
}
div.tab {
    overflow: hidden;
    border: 1px solid #2b2b2b;
    background-color: #141414;
    border-bottom: 0px;
    display: flex;
    flex-wrap: wrap;
}

  
  /* Style the buttons inside the tab */
  
  div.tab button {
    background-color: inherit;
    float: left;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 14px 16px;
    transition: 0.3s;
    color: #FFF;
    font-size: 12px;
    font-weight: 500;
  }
  
  
  /* Change background color of buttons on hover */

  
  /* Create an active/current tablink class */
  
  div.tab button.active {
    /* background-color: #ccc; */
    color: #4180f9;
    border-bottom: 1px solid #4180f9;
  }
  
  
  /* Style the tab content */
  
  .tabcontent-1,.tabcontent-2,.tabcontent-3,.tabcontent-4,.tabcontent-5,.tabcontent-6, .tabcontent-7,.tabcontent-8 {
    display: none;
    /* padding: 6px 12px; */
    border: 1px solid #2b2b2b;
    border-top: none;
  }
  .tabcontent:first-child{
    display: block;
  }
.documentation .documentation-content .sub-topic p{
    color: #707070 ;
    font-size: 15px;
    margin-bottom: 4px;
    /* font-weight: 500; */
}
.sub-topic p.sim-note{
    /* display: none; */
    border-left: 4px solid #0070ff;
    background-color: rgb(78 78 78 / 61%);
    padding: 8px 10px;
    color: rgb(243, 243, 243) !important;
    /* op */
}
.documentation main section #software-tools-head {
    margin-top: 40px !important;
}
.documentation main section #software-tools-p {
    color: #475467 !important;
    font-size: 18px;
}
/* Start Accordion */
#doc-accordion{
    margin-top: 32px;
}
#doc-accordion .accordion-item{
    background-color: #0A0A0C;
    border: 1px solid #27292c80;
}

#doc-accordion .accordion-item .accordion-button{
    color: #e0e2e6 !important;
    font-weight: 400;
    font-family: "Rubik", sans-serif !important;
    font-size: 17px;
}
#doc-accordion .accordion-item .accordion-body{
    font-family: "Rubik", sans-serif !important;
    color: #a0a2a6;
    font-size: 15px;

}

#doc-accordion .accordion-item .accordion-body ul {
    list-style: none;
}
#doc-accordion .accordion-item .accordion-body ul > li{
    position: relative;
}
#doc-accordion .accordion-item .accordion-body ul > li:before {
    content: "";
    width: .75em;
    height: .125em;
    position: absolute;
    top: calc(.875em - .0625em);
    left: -1.5em;
    border-radius: 999px;
    background-color: #d0d1d5;
}

/* End Accordion */
.documentation .custom-search{
    margin-bottom: 24px;
}
.documentation .custom-search .search-input {
    flex-grow: 1;
    border: 1px solid #2f2b431A;
    box-shadow: 0px -1px 0px 0px #2f2b431A inset;
    box-shadow: 0px 1px 3px 0px #2f2b431A;
    display: flex;
    padding: 8px 12px;
    border-radius: 12px;
    gap: 8px;
    max-width: 440px;
    width: 100%;
    height: 100%;
}
.documentation .custom-search .search-input input {
    width: 100%;
    border: 0px;
}
.documentation .custom-search .search-input input:focus {
    box-shadow: 0px !important;
    outline: none !important;
}
.documentation .documentation-content .sub-topic{
    margin-bottom: 40px;
    scroll-margin-top: 85px;
}

/* Static */
.sub-topic .request-url{
    max-width: 100%;
    background: #484848;
    padding: 16px;
    border-radius: 12px;
    font-size: 12px;
    font-family: "JetBrains Mono", monospace;
}
.sub-topic .notice-parent{
    max-width: 100%;
    background: #9258f6;
    padding: 16px;
    border-radius: 12px;
    font-size: 14px;
}
.sub-topic .request-url .req-type{
    color: #f97583;
}
.sub-topic .request-url .req-value,
.sub-topic .notice-parent .notice-value{
    color: #FFF;
    word-break: break-word;
}
.sub-topic .notice-parent .notice-key{
    color: #ff7b72;
}
.sub-topic table{
    font-family: "Rubik", sans-serif !important;
    font-size: 13px;
    margin-top: 16px;
    width: 100%;
    
}
.sub-topic table thead tr td{
    color: #737575;
    padding: 0px 20px 15px 0px;
    /* font-weight: bold; */
}
.sub-topic table tbody{
    border-top: 1px solid #7e7e7e80;
    border-bottom: 1px solid #7e7e7e80;
}
.sub-topic table tbody tr {
    border-bottom: 1px solid #7e7e7e80;
}
.sub-topic table tbody tr td{
    padding: 10px 0px;
}
.sub-topic table tbody tr td{
    color: #e2e8f0;
}
.sub-topic table tbody tr td.attr{
    color: #18887a;
}
.sub-topic table tbody tr td.type{
    color: #94a3b8;
}
.sub-topic table tbody tr td:last-child{
    color: #4b87d6;
}
/* Static */
/* Change Proxy Section */
/* Steps Styling */
.sub-topic ul.integration-steps img{
    max-width: 500px;
    width: 100%;
}
.sub-topic ul.integration-steps {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.sub-topic ul.integration-steps > li{
    position: relative;
    color: #585858 !important;
}
.sub-topic ul.integration-steps > li p{
    margin-bottom: 4px;
}
.sub-topic ul.integration-steps > li:before {
    content: "";
    width: .75em;
    height: .125em;
    position: absolute;
    top: calc(.875em - .0625em);
    left: -1.5em;
    border-radius: 999px;
    background-color: #d0d1d5;
}
.block-code {
    background-color: rgb(72 72 72);
    border-radius: 12px;
    margin: 32px 0px;
    max-width: 100%;
    padding: 16px;
    border-radius: 12px;
    font-size: 12px;
    font-family: "JetBrains Mono", monospace;
    word-break: break-all;
}
.block-code .block-code-key{
    color: #2dd4bf;
}
.block-code .block-code-value{
    color: #d1d1d1;
}

/* Search-bar */
.card-body-action .search-bar-container{
    /* padding: 30px 60px; */
    max-width: 550px;
    /* margin: 0px auto; */
    position: relative;
    margin: 0px auto;
    width: 90%;

}
.card-body-action .search-bar-container .search-input-container{
    position: relative;
    display: flex;
    align-items: center;
}
.card-body-action .search-bar-container .shortcut-key{
    position: absolute;
    right: 20px;
    font-size: 9px;
    background-color: #FFF;
    padding: 4px 5px;
    border: 1px solid #6c717a;
}
.card-body-action .search-bar-container .search-input{
    width: 100%;
    /* height: 42px; */
    background-color: #FFF;
    box-shadow: none;
    color: #3d3d3d;
    border-radius: 8px;
    border: none;
    font-size: 14px;
    padding: 0px 12px;
    transition: outline-color 0.7s;
    padding-right: 85px;
}
.card-body-action .search-bar-container .search-input::placeholder {
    color: #3d3d3d;
    opacity: 1; /* Firefox */
    font-size: 14px;
  }
.card-body-action .search-bar-container .search-input:focus{
    /* outline: none; */
    outline: 2px solid #e4e4e4;
    background-color: rgba(249, 250, 251, 0.945);
}
#search-box{
    width: 100%;
    max-width: 550px;
    max-height: 280px;
    margin: 0px auto;
    background-color: #121212cc;
    backdrop-filter: blur(5px); 
    margin-top: 10px;
    border-radius: 8px;
    position: absolute;
    z-index: 99999;
    padding: 12px;
    text-align: left;
    visibility: hidden;
    overflow-y: scroll;
}
#search-box::-webkit-scrollbar-track
{
	background-color: #7a7a7a;
}
#search-box::-webkit-scrollbar
{
	width: 4px;
	background-color: #a5a5a5;
}
#search-box .search-box-title > p{
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    color: hsl(0deg 0% 100% / 62%);
    margin-bottom: 10px;
}
#search-box .search-box-title{
    border-bottom: 1px solid #414141;
}
#search-box .search-box-items{
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 10px;
    
}
#search-box .search-box-items .search-box-item{
    padding: 6px;
    border-radius: 6px;
    cursor: pointer;
    text-decoration: none;
}
#search-box .search-box-items .search-box-item:hover{
    background-color: #0095ff1a;
    
}
#search-box .search-box-items .search-box-item:hover .search-box-item-head{
    color: #0086e6;
}
#search-box .search-box-items .search-box-item .search-box-item-head{
    color: #d9d9d9;
    font-weight: 600;
    font-size: 15px;
    margin-bottom: 0px;
}
#search-box .search-box-items .search-box-item .search-box-item-content{
    font-size: 13px;
    color: #8c8c8c;
    font-weight: 500;
    margin-bottom: 0px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
}
