@charset "utf-8";
/* CSS Document */

@import url(//fonts.googleapis.com/css?family=Open+Sans:300,400,600&subset=latin,latin-ext,cyrillic,cyrillic-ext,greek,greek-ext,vietnamese);
@import url("//fonts.googleapis.com/css2?family=Lexend:wght@100..900&family=Oswald:wght@200..700&display=swap");
@import url("//fonts.googleapis.com/css2?family=Lexend:wght@100..900&family=Oswald:wght@200..700&family=Ubuntu+Mono:ital,wght@0,400;0,700;1,400;1,700&display=swap");
@font-face { 
font-family: 'Lexend';
src: url('/includes/fonts/Lexend.ttf') format('ttf');
}

html {
    font: normal 16px "Open Sans", "Helvetica Neue", Helvetica, sans-serif; 
    
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    overflow-y: scroll;
    color: #000;
}
html,
body {
    height: 100%;
    min-height: 100%;
}
body { margin: 0; }

a.head { 
	color:#000; 
    text-decoration: none;
    cursor: pointer; }
a.head:active,
a.head:hover { outline: 0; 
    color: #000;
    text-decoration: none;
}

a { background-color: transparent; }
a:active,
a:hover { outline: 0; }
a {
    color: #2498e3;
    text-decoration: none;
    cursor: pointer;
}
a:hover {
    color: #188dd9;
    text-decoration: underline;
}
.grey-code {
	background-color:#DDD;
}

.code-type {
	color:#666;
	font-size:10px;
	font-style:italic;
	font-weight:bold;
}

blockquote{
	border-left:medium #CCC solid;
	padding-left:10px;
	margin-left:0px;
	background-color:#ECECEC;
	overflow-y:hidden;
}
/* ##### */

.body-home {
	background-color:#EFEFEF;
}

.body-docs {
	background-color:#EFEFEF;
}

/*  ##### */

label{
	font-size: 10px;
}

input[type=text], input[type=password]{
  	margin: 0 0 10px;
	width: auto;
	
    max-width: 250px;
    padding-left: 10px;
	border: 2px solid black;
	border-radius: 2px;
	font-size: 12px;
	font-weight: 600;
	height: 40px;
	transition: all 400ms;
}

mark.error{
	background-color:#F66; padding-left:5px; padding-right:5px; font-weight:bold;
}

input:focus{
	width: auto;
	
    max-width: 280px;
	font-size: 16px;
	font-weight: 600;
}

/* ##### */

.main-container {
	
}

/* ##### */

.header-container {  
	display: flex;
	flex-flow: row wrap;
	justify-content: space-between;
	min-height: 60px;
	width: 100%;
	
}

.header-wrapper {
	flex-grow: 1;
}
.header-icon{
	padding: 10px;
	padding-left:20px;
	font: bold 30px "Lexend", Helvetica, sans-serif;
}

.navigation {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-end;
  
  list-style: none;
  margin: 0; 
  background: FC6;
}


.navigation a {
  text-decoration: none;
  display: block;
  padding: 1em;
  color: #333;
  border-radius:3px;
}

.navigation a:hover {
  background: #CCC;
}

.full-height{
	height: 100%;
}

.login-box-outer {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
}

.login-box-inner {
	mix-width: 300px;
	max-width: 600px;
	height:auto;
}

.button-outer {
	display: flex; 
	align-items: center;
	justify-content: center;
	width: 250px;
	height: 40px;
  	background-color: #FFF;
	color: #000;
	border: 2px solid #1A1A1A;
	border-radius: 15px;
	box-sizing: border-box;
	cursor: pointer;  
	font-size: 16px;
	font-weight: 600;
	line-height: normal;
	transition: all 400ms cubic-bezier(.23, 1, 0.32, 1);
	will-change: transform;
	align-content: center;
}

.button-outer:disabled {
  pointer-events: none;
}

.button-outer:hover {
	color: #fff;
	background-color: #1A1A1A;
	box-shadow: rgba(0, 0, 0, 0.25) 0 5px 0px;
	transform: translateY(-3px);
}

.button-outer:active {
	box-shadow: none;
	transform: translateY(0);
}




/* #####  Account pages */
	
	.account-header-icon{
		padding: 10px;
		padding-left:10px;
		font: bold 30px "Lexend", Helvetica, sans-serif;
		color:#0C6;
	}

  	.account-sidebar p {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    account-body, account-html {
      height: 100%;
      font-family: sans-serif;
    }

    .account-container {
      display: flex;
      height: 100vh;
    }
	
	.mini-sidebar {
      width: 40px; 
      background: #EEE;
      color: #000;
      display: flex;
      flex-direction: column;
      align-items: center;
      padding: 0.5rem 0;
	  justify-content: space-between;
  		z-index: 2;
    }

    .mini-sidebar .icon {
      font-size: 20px;
      margin: 1rem 0;
      cursor: pointer;
	  position: relative; /* needed for tooltip positioning */
    }
	.icon{
		position: relative; 
	}
	/* Tooltip base */
	.tooltip::after {
	  content: attr(data-tooltip);
	  position: absolute;
	  top: 50%;
	  background: rgba(0, 0, 0, 0.8);
	  color: #fff;
	  font-size: 0.75rem;
	  padding: 4px 8px;
	  border-radius: 6px;
	  white-space: nowrap;
	  opacity: 0;
	  pointer-events: none;
	  transform: translateY(-50%);
	  transition: opacity 0.2s ease, transform 0.2s ease;
	}
	
	/* Show tooltip on hover */
	.tooltip:hover::after {
	  opacity: 1;
	}
	
	/* Tooltip positioned RIGHT */
	.tooltip-right::after {
	  left: 110%;
	}
	.tooltip-right:hover::after {
	  transform: translateY(-50%) translateX(5px);
	}
	
	/* Tooltip positioned LEFT */
	.tooltip-left::after {
	  right: 110%;
	}
	.tooltip-left:hover::after {
	  transform: translateY(-50%) translateX(-5px);
	}
	
	

    /* Sidebar */
    .account-sidebar {
      width: 300px;
      background: #FAFAFA;
      color: #000;
      padding: 0rem;
      overflow-y: auto;
      transition: transform 0.3s ease;
	  z-index: 1;
    }

    /* Main content */
    .account-main {
      flex: 1;
      background: #ffffff;
      overflow-y: auto;
    }

    /* Toggle button (visible only on small screens) */
    .account-toggle-btn {
      display: none;
      position: absolute;
      cursor: pointer;
      z-index: 1000;
    }
    .account-toggle-btn2 {
      display: none;
      position: absolute;
      top: 10px;
      left: 45px;
      background: #333;
      color: #fff;
      border: none;
      padding: 0.5rem 1rem;
      cursor: pointer;
      z-index: 1000;
      border-radius: 5px;
    }

    /* Responsive behavior */
    @media (max-width: 768px) {
      .account-container {
        position: relative;
      }

      .account-sidebar {
        position: fixed;
        top: 0;
        left: 0;
        height: 100%;
        transform: translateX(-100%); /* Hidden by default */
        z-index: 999;
		z-index: 1;
      }

      .account-sidebar.active {
        transform: translateX(40px); /* Slide in */
      }

      .account-main {
        flex: 1;
        padding-top: 0rem; /* Make room for toggle button */
      }

      .account-toggle-btn {
        display: block;
      }
    }

/* #####  Breadcrumbs */


.breadcrumbs {
	font: normal 15px/1.4 "Ubuntu Mono", monospace;
	padding-top:0px;
	padding-bottom:5px;
	padding-left:0px;
	
  	display: flex;
	flex-flow: row wrap;
	justify-content: flex-start;
	list-style: none;
	margin: 0; 
	background: FC6;
}

.breadcrumbs a {
  text-decoration: none;
  display: block;
  padding-right: 1em;
  color: #999;
  border-radius:3px;
  width:auto;
}

.breadcrumbs a:after {

}

.breadcrumbs a:hover {
  
}

/* #####  content */

.content-title {
	font: normal 40px "Lexend", Helvetica, sans-serif;
	padding-bottom:10px;
}

.content-subTitle {
	font: bold 30px "Lexend", Helvetica, sans-serif;
	padding-top:20px;
	border-bottom:#CCC medium solid;
	margin-bottom:20px;
}

.content-subTitle2 {
	font: bold 25px "Lexend", Helvetica, sans-serif;
	padding-top:10px;
	margin-bottom:10px;
}

.content-subTitle3 {
	font: bold 18px "Lexend", Helvetica, sans-serif;
	padding-top:5px;
	margin-bottom:3px;
}

.content-paragraph {
	color:#333;
	padding-bottom:10px;
}


.content-container {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	margin-left:30px;
	margin-right:30px;
	margin-top:0px;
	padding-bottom: 50px;
}

.content-wrapper {
	max-width: 1250px;
	width: 100%;
	background-color:#FFF;
	border-radius: 10px;
	padding-left:20px;
	padding-right:20px;
	padding-top:20px;
	padding-bottom: 50px;
}


.docs-text-highlight-people {
	font-family: "Ubuntu Mono", monospace;
	font-weight:bold;
	color:#09F;
}
.docs-text-highlight-code {
	font-family: "Ubuntu Mono", monospace;
	font-weight:bold;
	color:#F99;
}
.docs-text-highlight-codePL {
	font-family: "Ubuntu Mono", monospace;
}
.docs-text-highlight-om {
	font-family: "Open Sans", "Helvetica Neue", Helvetica, sans-serif; 
	font-weight:bolder;
	color:#000;
}
.docs-text-highlight-relLink {
	font-family: "Ubuntu Mono", monospace;

}

.docs-text-highlight-relLink a {
	text-decoration:none;
	font-weight:600;
	color:#6C9;
}

.docs-text-highlight-relLink a:hover {
	text-decoration:underline;
}

.docs-menu-tabs {
	/* content-wrapper */
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	row-gap: 10px;
	background-color:transparent ;
	border-radius: 0px;
	padding-bottom: 0px;
	list-style: none;
	margin: 0; 
}

.docs-menu-tabs a {
	text-decoration: none;
	display: block;
  	background-color:;
	border-radius: 10px 10px 0px 0px;
	padding-bottom: 0px;
	background-color:#CCC;
	color:#EEE;
	padding: 5px;
	padding-left: 10px;
	padding-right: 10px;
	margin-right: 10px;
}

.docs-menu-tabs a:hover {
  background: #AAA;
}


.docs-code-container {
	border-radius: 10px;
	background-color:#000;
	height:auto;
	margin-bottom: 20px;
}
.docs-code-header {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	border-radius: 10px 10px 0px 0px;
	color:#CCC;
	font-size:14px;
	font-weight:bold;
	background-color:#666;
	min-height:10px;
	height:auto;
	padding:10px;
}
.docs-code-header-inner {
	
}

.docs-code-body {
	font: normal 15px/1.4 "Ubuntu Mono", monospace;
	border-radius: 10px;
	color:#FFF;
	background-color:#000;
	min-height:100px;
  	overflow-y: hidden; 
  	overflow-x: auto; 
	height:auto;
	padding:10px;
}

.docs-code-jsondata-container {
	display: flex;
	flex-direction: row;
}
.docs-code-jsondata-type {
	padding:5px;
	margin-right:10px;
	background-color:#F96;
}
.docs-code-jsondata-type2 {
	padding:5px;
	margin-right:10px;
	background-color:#69C;
}
.docs-code-jsondata-url {
	padding:5px;
}

.docs-param-container {
	border-radius: 10px;
	background-color:#EEE;
	height:auto;
	margin-bottom: 20px;
}
.docs-param-header {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	border-radius: 10px 10px 0px 0px;
	color:#333;
	font-size:14px;
	font-weight:bold;
	background-color:#CCC;
	min-height:10px;
	height:auto;
	padding:10px;
}


.docs-param-body {
	border-radius: 10px;
	color:#333;
	min-height:100px;
  	overflow-y: hidden; 
  	overflow-x: auto; 
	height:auto;
	padding:10px;
}

.docs-param-table-container {
    display: flex;
    flex-flow: row;
    justify-content: space-between;
    min-height: 50px;
    width: 100%;
    border-bottom: #CCC thin solid;
    padding-bottom: 5px;
    margin-bottom: 15px;
}

.docs-param-table-container-header {
    border-bottom: #999 thin solid;
}

@media all and (max-width: 900px) {
  .docs-param-table-container {
	flex-direction: column;
  }
}

.docs-param-table-p-name {
	font: normal 17px "Ubuntu Mono", monospace;
	font-weight:bold;
	flex-grow: 0;
	width:30%;
}
@media all and (max-width: 900px) {
  .docs-param-table-p-name {
	width:100%;
	margin-bottom:5px;
  }
}

.docs-param-table-p-type {
	 font: normal 17px "Open Sans", "Helvetica Neue", Helvetica, sans-serif; 
	 font-style:italic;
	 padding-left:1rem;
}
.docs-param-table-p-desc {
	 font: normal 17px "Open Sans", "Helvetica Neue", Helvetica, sans-serif; 
	 flex-grow: 0;
	width:70%;
}
@media all and (max-width: 900px) {
  .docs-param-table-p-desc {
	width:100%;
  }
}


@media all and (max-width: 800px) {
  .content-wrapper {
	
  }
  .navigation {
    justify-content: space-around;
  }
  .button-outer {
	width: auto;
	max-width: 250px;
  }
}


@media all and (max-width: 600px) {
  .content-wrapper {
	
  }
  .navigation {
    display: none;
  }
}

.docs-param-table-p-example {
	font-style:italic;
	font-weight:bold;
}
