/**
 * apidoc main css file
 */

/**
 * Define colors
 */
:root {
  --primary: #0088cc;
  --white: #fff;
  --light-gray: #ccc;
  --main-gray: #777;
  --dark-gray: #2d2d2d;
  --hover-gray: #666;
  --meth-get: #5cb85c;
  --meth-put: #e5c500;
  --meth-post: #4070ec;
  --meth-delete: #ed0039;
  --red: #dc3545;
}

.color-primary {
  color: var(--primary);
  font-size: 30px;
  font-weight: 700;
}

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

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

.border-danger {
  border: 1px solid var(--red);
}

/** for some reason the iOS safari style is applied on date inputs */
input[type="date"] {
  line-height: 1.4 !important;
}

/* ------------------------------------------------------------------------------------------
 * Content
 * ------------------------------------------------------------------------------------------ */
@font-face {
  font-family: "Glyphicons Halflings";
  src: url("./glyphicons-halflings-regular.eot");
  src: url("./glyphicons-halflings-regular.eot?#iefix") format("embedded-opentype"),
    url("./glyphicons-halflings-regular.woff") format("woff"),
    url("./glyphicons-halflings-regular.woff2") format("woff2"),
    url("./glyphicons-halflings-regular.ttf") format("truetype"),
    url("./glyphicons-halflings-regular.svg#glyphicons-halflingsregular") format("svg");
}

/* Hide vertical scrollbar on off canvas animation ("left" positioning) */
html {
  overflow-x: hidden;
  --top-spacing: 100px;
  scroll-padding-top: var(--top-spacing);
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Helvetica Neue", "Ubuntu", sans-serif;
  font-size: 14px;
  line-height: 1.5;
}

body::-webkit-scrollbar-button {
  height: 20px;
  /* increases scrollbar button height */
  color: #505865;
}

a:focus {
  background-color: var(--primary);
}

#content {
  margin-top: 70px;
  padding-left: 20px;
}

p {
  color: var(--main-gray);
  font-size: 14px;
}

article {
  border-top: 1px solid var(--light-gray);
  padding: 14px 0 30px 0;
}

table {
  border-collapse: collapse;
  width: 100%;
  margin: 0 0 20px 0;
  border: #cdcdcd .5px solid !important;
}

table p,
table td,
table th,
table td.code {
  font-size: 14px;
  font-weight: 400;
  color: #111111;
}

th {
  background-color: var(--main-gray);
  color: var(--white);
  text-align: left;
  padding: 5px 8px;
  border: 1px solid var(--main-gray);
  font-weight: 500;
}

table,
thead,
tr,
th,
td {
  border: .5px solid #cdcdcd !important;
}

.form-control {
  border-radius: 10px !important;
  background-color: #F7F6F6;
}

.glyphicon {
  position: relative;
  top: 4px;
  display: inline-block;
  font-family: "Glyphicons Halflings";
  font-style: normal;
  font-weight: 400;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.crum-text {
  display: flex;
  padding-top: 3%;
}

.crum-text-child {
  margin-right: 15px;
  padding: 3px;
}

.api_btn :hover {
  background-color: #ffffff;
  color: #000000;
  border-radius: 5px;
}

.api_btn {
  background: #1e8acb;
}

.api_btn>strong {
  display: block;
  padding: 4px 14px;
  color: #ffffff;
}

td {
  padding: 5px;
  border: 1px solid var(--main-gray);
}

td.code {
  font-family: "JetBrains Mono", monospace;
  font-weight: 600;
}

.h1,
h1 {
  font-size: 22px;
  margin-top: 10px;
  margin-bottom: 10px;
  font-weight: bold;
}

.h2,
h2 {
  font-size: 18px;
}

.btn.focus,
.btn:focus,
.btn:hover {
  outline: 0;
}

.label {
  float: right;
  margin-top: 3px;
  user-select: none;
}

.labelkit {
  color: #000000;
}

.label.optional {
  background-color: grey;
}

.label.required {
  background-color: var(--red);
  display: block;
}


.type-size {
  font-style: italic;
  font-size: 95%;
}

.open-left {
  right: 0;
  left: auto;
}

.invisible {
  visibility: hidden;
}

.input-group-addon.sample-request-select {
  padding: 0 6px;
}

.input-group-addon.sample-request-select select {
  width: auto;
  height: 32px;
}

.sample-request-input-Boolean-container {
  width: 40px;
  height: 34px;
  background: var(--white);
  border: 1px solid var(--light-gray);
}

.sample-request-input-Boolean-container>div {
  margin-top: 7px;
  text-align: center;
}

.sample-request-input-Boolean-container>div input {
  margin: 0;
}

/* ------------------------------------------------------------------------------------------
 * Request method (HTTP verb)
 * ------------------------------------------------------------------------------------------ */
.method {
  font-weight: 600;
  font-size: 15px;
  display: inline-block;
  margin: 0 0 5px 0;
  padding: 4px 5px;
  border-radius: 6px;
  text-transform: uppercase;
  background-color: var(--main-gray);
  color: var(--white);
}

.meth-get,.api-lable-get {
  background-color: var(--meth-post) !important;
  text-transform: uppercase;
}

.meth-put {
  background-color: var(--meth-put);
}

.meth-post {
  background-color: var(--meth-get);
}

.meth-delete {
  background-color: var(--meth-delete);
}

code {
  padding: 2px 4px;
  font-size: 90%;
  color: #0f0e0e;
  background-color: #ffffff;
  border-radius: 5px;
}

/* ------------------------------------------------------------------------------------------
 * Sidenav
 * ------------------------------------------------------------------------------------------ */
#scrollingNav {
  position: fixed;
  top: 74px;
  left: 0;
  bottom: 0;
  z-index: 10;
  background-color: var(--dark-gray);
  border-right: #cdcdcd .5px solid;
}

.sidenav {
  color: var(--white);
  position: absolute;
  top: 50px;
  left: 15px;
  right: 15px;
  bottom: 0;
  overflow-x: hidden;
  overflow-y: hidden;
  scrollbar-width: thin;
}

.sidenav {
  overflow-x: auto;
  overflow-y: auto;
}

.sidenav>li>a {
  color: var(--white);
  display: block;
  padding: 8px 13px;
  color: #666565;
}

/* non active sidenav link are highlighted on hover */
.sidenav>li:not(.active)>a:hover {
  background-color: var(--hover-gray);
  background-color: #8ad1fd;
  display: flex;
  color: #ffffff;
  border-radius: 5px;
}

.sidenav>li.nav-header {
  margin-top: -2px;
  margin-bottom: 2px;
  border-radius: 5px;
  font-weight: 500;
}

.sidenav>li.nav-header>a {
  padding: 5px 15px;
  font-weight: 500;
  font-size: 14px;
  background-color: var(--main-gray);
  background-color: #ffffff;
  color: #000000;
  border-radius: 5px;
}

.sidenav>li.active>a {
  position: relative;
  background-color: var(--primary);
  color: var(--white);
  border-radius: 5px;
}

.btn.active.focus,
.btn.active:focus,
.btn.focus,
.btn:active.focus,
.btn:active:focus,
.btn:focus {
  outline: none;
  outline-offset: 0;
}

.btn.active,
.btn:active {
  background-image: none;
  outline: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.h4,
h4 {
  font-size: 18px;
}

.h5,
h5 {
  font-size: 16px;
}

ul li {
  list-style-type: initial;
  font-size: 14px;
  color: var(--main-gray);
}

table tr th {
  background: #f5f5f5;
  color: #000;
  font-size: 14px;
  font-weight: 500;
}

div {
  font-size: 14px;
}

.bestpt {
  margin-left: 15px;
  margin-top: 20px;
}

.bestpact {
  border-top: 1px solid var(--light-gray);
  padding-top: 10px;
}

#copyryt {
  text-align: center !important;
  margin-top: 15px !important;
}

.homeimg {
  display: flex;
  justify-content: center;
  align-items: center;
}

.modalbody {
  text-align: center;
}

.modal-title {
  font-size: 18px;
}

.control-label {
  text-align: left !important;
}

.modal-header .close {
  margin-top: -25px;
}

.modal-dialog {
  width: 60%;
  margin: 30px auto;
}

.selbx {
  width: 100% !important;
}

.typcl {
  width: 0%;
}

/**
 * TODO: commented out for the moment
.sidenav > li.has-modifications a {
  border-right: 4px solid var(--main-gray);
}

.nav-list-item :not(.is-new) {
  border-left: 4px solid var(--main-gray);
}

.sidenav > li.is-new a {
  border-left: 4px solid var(--primary);
}
*/

/*
 * Off Canvas
 * --------------------------------------------------
 */
@media screen and (max-width: 767px) {
  #content {
    margin-top: 58px;
    overflow: scroll;
  }

  .row-offcanvas {
    position: relative;
    -webkit-transition: all 0.25s ease-out;
    -o-transition: all 0.25s ease-out;
    transition: all 0.25s ease-out;
    left: 0;
  }

  .row-offcanvas,
  .row-offcanvas * {
    transition: all 0.5s ease-out;
  }

  .row-offcanvas .sidebar-offcanvas {
    position: absolute;
    top: 0;
    left: -200px !important;
    /* 6 columns */
    width: 100%;
    /* 6 columns */
    max-width: 200px;
  }

  .nav-toggle {
    position: fixed;
    left: 0;
    background: var(--dark-gray);
    width: 100%;
    background-color: #0066a6;
  }

  .nav-toggle .btn {
    margin: 10px 14px;
  }

  .nav-toggle .icon-bar {
    display: block;
    width: 22px;
    height: 2px;
    border-radius: 1px;
    background-color: var(--white);
  }

  .nav-toggle .icon-bar+.icon-bar {
    margin-top: 4px;
  }

  .row-offcanvas.active .sidebar-offcanvas {
    left: 0 !important;
    /* 6 columns */
  }

  .row-offcanvas.active,
  .row-offcanvas.active .nav-toggle {
    left: 200px;
  }

  /* Styling the three lines to make it an X */
  .row-offcanvas.active .nav-toggle .btn>.icon-bar {
    transform: rotate(45deg) translate(-4px, -4px);
  }

  .row-offcanvas.active .nav-toggle .btn .icon-bar:nth-child(2) {
    display: none;
  }

  .row-offcanvas.active .nav-toggle .btn .icon-bar:nth-child(3) {
    transform: rotate(-45deg);
  }

  .apidochead {
    display: none;
  }

  #scrollingNav {
    top: 0px;
  }
}

/* ------------------------------------------------------------------------------------------
 * Side nav search
 * ------------------------------------------------------------------------------------------ */
.sidenav-search {
  padding: 16px 10px 10px;
  background-color: var(--dark-gray);
}

.sidenav-search .search {
  height: 37px;
}

.search-reset {
  position: absolute;
  display: block;
  cursor: pointer;
  width: 20px;
  height: 20px;
  text-align: center;
  right: 28px;
  top: 22px !important;
}

/* ------------------------------------------------------------------------------------------
 * Prism - Toolbar
 * ------------------------------------------------------------------------------------------ */
div.code-toolbar.code-toolbar>.toolbar {
  top: 0.4rem;
  right: 0.4rem;
}

div.code-toolbar.code-toolbar>.toolbar>.toolbar-item>button:hover,
div.code-toolbar.code-toolbar>.toolbar>.toolbar-item>button:focus {
  color: var(--white);
}

div.code-toolbar.code-toolbar>.toolbar>.toolbar-item>button {
  color: var(--light-gray);
  padding: 0.5em;
  background: var(--hover-gray);
  box-shadow: 0 2px 1px 1px rgba(0, 0, 0, 0.5);
}

/* ------------------------------------------------------------------------------------------
 * Compare
 * ------------------------------------------------------------------------------------------ */

ins {
  background: #60d060;
  text-decoration: none;
  color: #000000;
}

del {
  background: #f05050;
  color: #000000;
}

.label-ins {
  background-color: #60d060;
}

.label-del {
  background-color: #f05050;
  text-decoration: line-through;
}

pre.ins {
  background-color: #60d060;
}

pre.del {
  background-color: #f05050;
  text-decoration: line-through;
}

table.ins th,
table.ins td {
  background-color: #60d060;
}

table.del th,
table.del td {
  background-color: #f05050;
  text-decoration: line-through;
}

tr.ins td {
  background-color: #60d060;
}

tr.del td {
  background-color: #f05050;
  text-decoration: line-through;
}

/* ------------------------------------------------------------------------------------------
 * Spinner
 * ------------------------------------------------------------------------------------------ */

#loader {
  position: absolute;
  width: 100%;
}

#loader p {
  padding-top: 80px;
  margin-left: -4px;
}

.spinner {
  margin: 200px auto;
  width: 60px;
  height: 60px;
  position: relative;
}

.container1>div,
.container2>div,
.container3>div {
  width: 14px;
  height: 14px;
  background-color: #0088cc;

  border-radius: 100%;
  position: absolute;
  -webkit-animation: bouncedelay 1.2s infinite ease-in-out;
  animation: bouncedelay 1.2s infinite ease-in-out;
  /* Prevent first frame from flickering when animation starts */
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.spinner .spinner-container {
  position: absolute;
  width: 100%;
  height: 100%;
}

.container2 {
  -webkit-transform: rotateZ(45deg);
  transform: rotateZ(45deg);
}

.container3 {
  -webkit-transform: rotateZ(90deg);
  transform: rotateZ(90deg);
}

.circle1 {
  top: 0;
  left: 0;
}

.circle2 {
  top: 0;
  right: 0;
}

.circle3 {
  right: 0;
  bottom: 0;
}

.circle4 {
  left: 0;
  bottom: 0;
}

.container2 .circle1 {
  -webkit-animation-delay: -1.1s;
  animation-delay: -1.1s;
}

.container3 .circle1 {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}

.container1 .circle2 {
  -webkit-animation-delay: -0.9s;
  animation-delay: -0.9s;
}

.container2 .circle2 {
  -webkit-animation-delay: -0.8s;
  animation-delay: -0.8s;
}

.container3 .circle2 {
  -webkit-animation-delay: -0.7s;
  animation-delay: -0.7s;
}

.container1 .circle3 {
  -webkit-animation-delay: -0.6s;
  animation-delay: -0.6s;
}

.container2 .circle3 {
  -webkit-animation-delay: -0.5s;
  animation-delay: -0.5s;
}

.container3 .circle3 {
  -webkit-animation-delay: -0.4s;
  animation-delay: -0.4s;
}

.container1 .circle4 {
  -webkit-animation-delay: -0.3s;
  animation-delay: -0.3s;
}

.container2 .circle4 {
  -webkit-animation-delay: -0.2s;
  animation-delay: -0.2s;
}

.container3 .circle4 {
  -webkit-animation-delay: -0.1s;
  animation-delay: -0.1s;
}

@-webkit-keyframes bouncedelay {

  0%,
  80%,
  100% {
    -webkit-transform: scale(0);
  }

  40% {
    -webkit-transform: scale(1);
  }
}

@keyframes bouncedelay {

  0%,
  80%,
  100% {
    transform: scale(0);
    -webkit-transform: scale(0);
  }

  40% {
    transform: scale(1);
    -webkit-transform: scale(1);
  }
}

/* ------------------------------------------------------------------------------------------
 * Tabs
 * ------------------------------------------------------------------------------------------ */
ul.nav-tabs {
  margin: 0;
}

p.deprecated span {
  color: var(--red);
  font-weight: bold;
  text-decoration: underline;
}

/**
 * Footer
 */
#generator {
  padding: 5px 0 5px 0;
}

/* ------------------------------------------------------------------------------------------
 * Print
 * ------------------------------------------------------------------------------------------ */

@media print {

  #sidenav,
  #version,
  #versions,
  section .version,
  section .versions {
    display: none;
  }

  #content {
    margin-left: 0;
  }

  a {
    text-decoration: none;
    color: inherit;
  }

  a:after {
    content: " [" attr(href) "] ";
  }

  p {
    color: #000000;
  }

  pre {
    background-color: #2d2d2d;
    color: #7ec699;
    padding: 10px;
    border: #808080 1px solid;
    border-radius: 5px;
    position: relative;
    margin: 10px 0 20px 0;
  }
}

/* /@media print */

.navbar-brandlogo {
  text-align: center;
}

.navbar-brandlogo img {
  max-height: 50px;
}

#scrollingNav {
  background: #ffffff;
}

.sidenav-search {
  background-color: #ffffff;
  position: relative;
}

.search-reset {
  right: 14px;
}

.projecthead {
  background-color: #aab3b9;
  padding: 10px 15px;
  border-radius: 5px;
}

.projecthead h1 {
  margin-top: 10px;
  color: #fff;
}

.apidochead {
  background-color: #2189cf;
  padding: 1px 15px;
  border-radius: 0px;
  position: fixed;
  width: 100%;
  left: 0;
  right: 0;
  top: 0;
  z-index: 10;
}

.apidochead h1 {
  margin-top: 10px;
  color: #fff;
}

code[class*="language-"],
pre[class*="language-"] {
  font-size: 13px;
  color: #ddd;
}

:not(pre)>code[class*="language-"],
pre[class*="language-"] {
  background: #000000;
}

.token.punctuation {
  color: #8f8f8f;
}

.token.operator,
.token.entity,
.token.url {
  color: #51bbba;
}

.token.string,
.token.char,
.token.attr-value,
.token.regex,
.token.variable {
  color: #ff7617;
}

.token.boolean,
.token.number,
.token.function {
  color: #10a347;
}

.token.property,
.token.class-name,
.token.constant,
.token.symbol {
  color: #236bc7;
}

.api-lable-none,
.meth-none,
.code-url-meth-none {
  display: none;
}

article[data-name="ErrorCodes"] .table .label.required {
  display: none;
}

article[data-name="ServerSideSDK"] .table .label.required {
  display: none;
}

article[data-name="IframeKits"] .table .label.required {
  display: none;
}

article[data-name="InlineKits"] .table .label.required {
  display: none;
}

@media (min-width: 992px) {
  .navbar-brandlogo {
    padding: 5px 0;
  }

  .navbar-brandlogo img {
    max-height: 62px;
  }

  .tophead-brandlogo {
    padding: 5px 0;
  }

  .tophead-brandlogo img {
    max-height: 62px;
  }

  .sidenav {
    top: 55px;
  }

  .sidenav>li>a {
    Padding: 8px 8px
  }

  .sidenav>li.nav-header>a {
    Padding: 8px 3px
  }
}

@media (min-width: 1200px) {

  .sidenavcol,
  .sidebar-offcanvas {
    width: 20%;
  }

  .contentcol {
    width: 80%;
  }
}

@media screen and (max-width: 767px) {
  .navbar-brandlogo {
    position: fixed;
    left: 60px;
  }

  .navbar-brandlogo img {
    max-height: 44px;
  }

  .tophead-brandlogo {
    position: fixed;
    left: 60px;
  }

  .tophead-brandlogo img {
    max-height: 44px;
  }

  .row-offcanvas.active .navbar-brandlogo .tophead-brandlogo {
    left: 260px;
  }

  .sidenav {
    top: 50px;
  }

  #content {
    padding-left: 10px;
  }
}

.download-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  /* Set a fixed width */
  padding: 6px;
  height: 25px;
  background-color: #0088cc;
  border: #0088cc 1px solid;
  color: #ffffff;
  border-radius: 4px;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  user-select: none;
  margin-top: 10px;
  margin-right: 10px;
  font-size: 14px;
}

.download-button:hover {
  background-color: #4a90e2;
  border: #4a90e2 1px solid;
  text-decoration: none;
  color: #ffffff;
}

.download-button span {
  margin-right: 8px;
}

pre {
  display: block;
  padding: 12px;
  background-color: #2d2d2d;
  color: #7ec699;
  font-size: 13px;
  line-height: 1.5;
  border: 1px solid #ccc;
  border-top: none;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
  white-space: pre-wrap;
  word-break: break-word;
  z-index: 1;
  position: relative;
}

pre code {
  padding: 0;
  font-size: inherit;
  color: inherit;
  background-color: transparent;
  border-radius: 0;
  font-family: "JetBrains Mono", monospace !important;
}

.platform-section {
  margin: 20px auto;
}

.platform-version {
  font-weight: 500;
  font-size: 16px;
  padding: 6px 12px;
  border-radius: 6px;
  border: 1px solid #ccc;
  margin-left: 10px;
}

.kit-details {
  background-color: #eef8ff;
  border-left: 4px solid #2189cf;
  padding: 16px;
  margin-top: 20px;
  border-radius: 4px;
}

.kit-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 16px;
  margin-bottom: 10px;
}

.release-date {
  font-size: 14px;
  color: #666;
  font-weight: 500;
}

.download-kit {
  font-weight: 400;
  margin-bottom: 10px;
}

.download-icon {
  margin-left: 8px;
  font-size: 18px;
}

.requirements {
  list-style: square;
  padding-left: 20px;
  color: #333;
}

.prehead {
  display: inline-block;
  padding: 8px 15px;
  background-color: white;
  border: 1px solid #ccc;
  border-bottom: none;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  font-weight: 500;
  position: relative;
  top: 1px;
  /* Slight overlap with bottom div */
  z-index: 2;
  text-transform: uppercase;
}

.tab-line {
  border-top: #ccc 1px solid;
  margin-bottom: 5px;
}

#chatLauncher {
  position: fixed;
  bottom: 50px;
  right: 20px;
  cursor: pointer;
  z-index: 9999;
  background-color: #fff;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  width: 60px;
  height: 60px;
}

#iframeContainer iframe {
  width: 350px;
  height: 500px;
  border: 0px;
  border-radius: 14px;
}

.closeChat {
  position: absolute;
  right: 15px;
  top: 10px;
  background: none;
  border: none;
  font-size: 26px;
  color: white;
}

@media (max-width:991px) {
  .childCls a::before {
    left: 17px !important;
  }
}

/* Child Items */
.childCls {
  padding: 0px 20px 0px 20px;
  /* Indented more than parent */
}

::-webkit-scrollbar-track {
  max-height: 50%;
  height: 50%;
}

.childCls.active .menudot {
  background: #fff;
  position: relative;
  z-index: 9999;
}

.childCls {
  padding-bottom: 0 !important;
  padding-top: 0 !important;
}

.childCls a:hover .menudot {
  background: #fff !important;
  z-index: 99999;
  width: 10px;
  position: relative;
  height: 10px;
  display: inline-block;
}

.childCls a {
  display: flex;
  align-items: center;
  font-size: 16px;
  border-left: 2px solid transparent;
  /* Reserve space */
  box-sizing: border-box;
  position: relative;
}

.childCls a,
.childCls a:hover {
  box-sizing: border-box;
}

#iframeContainer {
  position: fixed;
  bottom: 40px;
  right: 14px;
  z-index: 99;
}

@media (max-width:991px) {
  .childCls a::before {
    left: 17px !important;
  }
}

.parentCls+.childCls,
.parentCls.active~.childCls[data-group]:not(.hidden) {
  display: block;
  /* Show when parent is active */
}

.childCls:hover {
  background-color: #f9f9f9;
}

.childCls.active {
  border-left-color: #0066cc;
  color: #0066cc;
}

.menudot {
  content: '';
  width: 10px;
  height: 10px;
  background: #ccc;
  border-radius: 13px;
  margin-right: 11px;
}

.sidenav i {
  color: #fff;
  background: #48aeee;
  border-radius: 57%;
  position: relative;
  font-size: 12px;
  padding: 7px 7px;
  right: 2px;
  margin-right: 10px;
}

.childCls a::before {
  content: "";
  position: absolute;
  top: -15px;
  left: 12px;
  width: 2px;
  height: 105%;
  background-color: #ccc;
  z-index: 9999;
}

.parentCls a {
  margin-bottom: 0px;
}

.sidenav li {
  position: relative;
  padding: 5px 0 5px 0px;
}

.sidenav li a,
.sidenav li a:hover {
  display: flex;
  text-decoration: none;
  align-items: center;
  font-size: 14px;

}

.childCls.active .menudot {
  background: #fff;
  position: relative;
  z-index: 9999;
}

.childCls {
  padding-bottom: 0 !important;
  padding-top: 0 !important;
}

.childCls a:hover .menudot {
  background: #fff !important;
  z-index: 99999;
  width: 10px;
  position: relative;
  height: 10px;
  display: inline-block;
}

.childCls a {
  display: flex;
  align-items: center;
  font-size: 16px;
  border-left: 2px solid transparent;
  /* Reserve space */
  box-sizing: border-box;
  position: relative;
}

.childCls a,
.childCls a:hover {
  box-sizing: border-box;
}

p>img {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.menuImg {
  width: 26px;
  margin-right: 10px;
}

.sidenav {
  /* Webkit browsers (Chrome, Safari, Edge) */
  scrollbar-width: thin;
  /* Firefox */
  scrollbar-color: #505865 transparent;
  /* Firefox - thumb color and track color */
}

/* Webkit scrollbar styles */
.sidenav::-webkit-scrollbar {
  width: 6px;
  /* Reduced width for thinner scrollbar */
}

.sidenav::-webkit-scrollbar-track {
  background: transparent;
  /* Transparent track background */
  border-radius: 3px;
}

.sidenav::-webkit-scrollbar-thumb {
  background-color: #505865;
  /* Your specified color */
  border-radius: 3px;
  transition: background-color 0.2s ease;
  /* Reduce scrollbar thumb height */
  min-height: 20px;
  /* Minimum height of the scrollbar thumb */
  background-clip: content-box;
  /* Helps with visual spacing */
}

.sidenav::-webkit-scrollbar-thumb:hover {
  background-color: #636976;
  /* Slightly lighter on hover */
}

/* Alternative: Custom height control with additional spacing */
.sidenav-custom-height {
  scrollbar-width: thin;
  scrollbar-color: #505865 transparent;
}

.sidenav-custom-height::-webkit-scrollbar {
  width: 6px;
}

.sidenav-custom-height::-webkit-scrollbar-track {
  background: transparent;
  border-radius: 3px;
}

.sidenav-custom-height::-webkit-scrollbar-thumb {
  background-color: #505865;
  border-radius: 3px;
  min-height: 15px;
  /* Even smaller thumb height */
  max-height: 40px;
  /* Maximum thumb height */
  background-clip: padding-box;
  border: 1px solid transparent;
  /* Creates visual spacing */
}

.sidenav-custom-height::-webkit-scrollbar-thumb:hover {
  background-color: #636976;
}

/* For mobile/touch devices - hide scrollbar but keep functionality */
@media (max-width: 768px) {
  .sidenav {
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE/Edge */
  }

  .sidenav::-webkit-scrollbar {
    display: none;
    /* Webkit browsers */
  }
}

.float-right i {
  background: none !important;
}

span.accordion-arrow.float-right {
  margin-left: auto;
}

li.active.accordion-arrow i {
  color: #fff !important;
}

p>img {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.nav .customSubMenu a:hover {
  background: #8ad1fd !important;
  ;
  color: #000 !important;
}

.nav .customSubMenu a {
  background: none !important;
}

.custom_title {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.download-container {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-end;
  background-color: #eeeff0;
  padding: 20px;
  border-radius: 20px;
}

.download-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  min-width: 120px;
}

.icon-wrapper {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease;
  background-color: #ffffff;
}

.icon-wrapper:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.icon-wrapper.mac {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.icon {
  width: 28px;
  height: 28px;
  color: white;
  fill: currentColor;
}

.download-buttonta {
  background: #007AFF;
  color: white;
  padding: 8px 16px;
  border: none;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: all 0.2s ease;
  box-shadow: 0 2px 4px rgba(0, 122, 255, 0.3);
}

.download-buttonta:hover {
  background: #0056CC;
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(0, 122, 255, 0.4);
  color: white;
  text-decoration: none;
}

.download-buttonta:active {
  transform: translateY(0);
  box-shadow: 0 2px 4px rgba(0, 122, 255, 0.3);
}

/* Responsive design */
@media (max-width: 640px) {
  .download-container {
    gap: 16px;
  }

  .download-item {
    min-width: 100px;
  }

  .icon-wrapper {
    width: 40px;
    height: 40px;
  }

  .icon {
    width: 24px;
    height: 24px;
  }
}

li.active.accordion-arrow i {
  color: #fff !important;
}

.table-striped>tbody>tr:nth-of-type(odd) {
  background: #F3F3F3;
}

.table-striped>tbody>tr {
  border-bottom: 1px solid #ddd;
}

.table-bordered>tbody>tr>td {
  border: 0px;
  text-align: center;
  padding: 16px 7px;
  border: none !important;
}

.downloadbtn {
  background: #4a90e2;
  color: #fff;
}

.downloadbtn,
.downloadbtn:hover,
.downloadbtn:focus {
  color: #fff;
  font-size: 13px;
  text-decoration: none;
  padding: 7px 14px;
  border-radius: 6px;
}

.downloadbtn i {
  margin-right: 5px;
}

.table4 {
  width: 80rem;
}

.table3 {
  width: 60rem;
}

.table2 {
  width: 50rem;
}

.table1 {
  width: 25rem;
}

.iconImg {
  width: 50px;
  height: 50px;
}

.btn-menu,
.btn-menu:hover,
.btn-menu:focus {
  background: none;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  margin-top: 3px;
}

.version-dropdown ul li {
  list-style-type: none;
}

#secstd {
  background-color: #ffeea4;
  border-left: 4px solid #e58100;
  padding: 16px;
  margin-top: 20px;
  border-radius: 4px;
  list-style-type: none;
}

#secstdhd {
  color: #e58100;
}

.api-tips {
  list-style: none;
  padding: 0;
  padding-left: 30px;
}

.api-tips li {
  position: relative;
  margin-bottom: 20px;
  color: #333;
}

.api-tips li::before {
  position: absolute;
  left: 0;
  font-size: 24px;
  line-height: 24px;
}

.heading {
  font-weight: bold;
  font-size: 14px;
}

.api-tips li br {
  display: block;
  margin-bottom: 8px;
}

.float-left i {
  background: none !important;
  color: #000;
}

.api-lable-post{
  background-color: var(--meth-get) !important;
  text-transform: uppercase;
}

.labellmenumethod{
  height: 16px;
}

#dropdownMenu1{
  cursor: default;
}