:root {

  /* colors */

  --blueish1: #edf1f7;
  --blueish2: #6d7e98;
  --blueish3: #444d5c;

  --dgxlgreen: #138046;
  --secondgreen: #dcf9ea;
  --lightgrey: var(--blueish1);
  --consolegrey: #505457;
  --linkgrey: var(--blueish3);
  --h3green: #779f8a;
  --descgrey: #414548;

  /* dimensions */
  --subnavwidth: 200px;
}

/* poppins-regular - latin */
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 400;
  src: local(''),
       url('../fonts/poppins-v15-latin-regular.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
       url('../fonts/poppins-v15-latin-regular.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}

body {
  margin: 0;
  padding: 0;
  font-family: sans-serif;
}

body.isSubnavClosed .main-index {
  display: none;
}

body.isSubnavClosed #collapse {
  left: 0;
}

body.isSubnavClosed #collapse svg {
  transform: rotate(180deg);
}



.version {
  background: pink;
  border-radius: 4px;
  padding: 6px;
  margin-left: 16px;
  display: flex;
  align-items: center;
  font-size: 16px;

  position: fixed;
  bottom: 12px;
  right: 12px;
  z-index: 99999;
}

.version select {
  margin-left: 4px;
}


/* block: instructions */

a.outward-link {
  display: flex;
  align-items: center;
/*  background: var(--lightgrey);
*/  
/*border-radius: .125rem;
  padding: .25rem .5rem;*/
  color: black;

  text-decoration: none;
/*  border: 2px solid transparent;*/
  box-sizing: border-box;
/*
  background: white;
  border-color: var(--lightgrey);*/

}

a.outward-link:hover {
  text-decoration: underline;
}

a.outward-link svg,
.highlight svg {
  height: 2rem;
  width: 2rem;
  margin-right: .5rem;
/*  fill: var(--dgxlgreen);*/
fill: var(--blueish1);
stroke: var(--blueish2);
}

.example-heading {
  text-transform: uppercase;
  font-weight: bold;
  font-size: .8rem;
  margin-top: 2rem;
  margin-bottom: .5rem;
  display: none;
}

/* COLLAPSE */

#collapse {
  position: fixed;
  bottom: 1rem;
  left: var(--subnavwidth);
  width: .75rem;
  height: 2rem;
  background: var(--lightgrey);
  z-index: 4;
  cursor: pointer;
  border-radius: 0 .25rem .25rem 0;
  display: flex;
  align-items: center;
}

#collapse svg {
  height: .75rem;
  fill: var(--linkgrey);
}

/*
  SPLIT LAYOUT
  https://split.js.org/#/
*/

.split-in-rows {
}

.gutter {
    background-color: var(--blueish1);
    background-repeat: no-repeat;
    background-position: 50%;
    box-sizing: border-box;
}

.gutter.gutter-horizontal {
    background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAUAAAAeAQMAAADesEb+AAAAAXNSR0IB2cksfwAAAAlwSFlzAAALEwAACxMBAJqcGAAAAAZQTFRFbX6YAAAALxsyrgAAAAJ0Uk5T/wDltzBKAAAAEUlEQVR4nGNQYFBg+AGEZNAA0ysPkVbDik0AAAAASUVORK5CYII=');
    cursor: col-resize;
/*    border-right: 1px solid var(--blueish2);
    border-left: 1px solid var(--blueish2);*/
}

.gutter.gutter-vertical {
    background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAB4AAAAFAQMAAABo7865AAAAAXNSR0IB2cksfwAAAAlwSFlzAAALEwAACxMBAJqcGAAAAAZQTFRFbX6YAAAALxsyrgAAAAJ0Uk5T/wDltzBKAAAAF0lEQVR4nGMwNjY2YAAT/////8MA5wIAWRoHHrO8Tk8AAAAASUVORK5CYII=');
    cursor: row-resize;
/*    border-top: 1px solid var(--consolegrey);
    border-bottom: 1px solid var(--consolegrey);*/
}

/* API MAIN */

#api-main, #api-content {
  position: relative;
}


.tab-contents {
  display: flex;
  position: absolute;
  bottom: 0;
  top: 0;
  right: 0;
  left: 0;
  overflow: hidden;
  background: white;
}

.tab-contents.activeTab {
  z-index: 1;
}



#api-nav > div {

}

#api-nav-tabs {
  padding: 0;
}

/*#api-nav:after {
  content: '';
  display:table;
  clear: both;
}
*/

#api-nav-logo {
}

#api-nav-logo img {
  display: block;
  height: 2rem;
}







.main-index {
  padding: 1rem;
  border-right: 2px solid var(--lightgrey);
}

.main-index ul {
  list-style: none;
  margin: 0;
  padding: 0;
/*  font-family: monospace;
*//*  white-space: pre;*/
font-size: .8rem;
}


  .main-index a {
    display: flex;
    justify-content: space-between;
    text-decoration: none;
    padding: .5rem .5rem;
    font-weight: normal;

    color: var(--linkgrey);

/*    text-transform: lowercase;*/
  }

  .main-index a:hover {
    background: var(--lightgrey);
    border-radius: 2px;
    color: var(--linkgrey); /*#444;*/
  }

  .main-index a.currentAnchor {

    border-radius: .125rem;

    cursor: default;
/*
    background: var(--dgxlgreen);
    color: white;*/
    font-weight: bold;
    color: black;
  }

  .main-index a.currentAnchor .category-count {
    /*color: white;*/
  }

  .category-name {
    text-decoration: none;
  }

  .main-index a:hover .category-name {

  }
  
  .main-index a.currentAnchor .category-name {
    text-decoration: none;
  }

.main-index h4 {
  text-transform: uppercase;
  font-weight: normal;
  font-size: .8rem;
  display: flex;
  justify-content: space-between;
  color: #5f6365;
  cursor: pointer;
}

.index-header {
  /*text-transform: uppercase;*/
  padding: .5rem .5rem 1rem .5rem;
  font-size: 1.4rem;
/*  font-family: "Poppins";*/
}

/* codeblock */

pre {
  tab-size: 2;
  margin: 0;
}

.main-content .codeblock {
  background: white;
  color: black;
  padding: 0;
  margin-bottom: 2rem;
}

.block-instructions h3 {
  font-weight: normal;
  margin-top: -.5rem;
  font-size: 1.4rem;
}

.codeblock {


}

.coming-soon {
  font-style: italic;
  margin-top: .5rem;
}

.codeblock pre {
  white-space: pre-wrap;
  line-height: 1.4;
}

code {
  padding: 0.5em;
}

.main-index,
.main-content {
  overflow: scroll;
}

.main-index {
  width: var(--subnavwidth);
  flex-basis: var(--subnavwidth);
  flex-shrink: 0;
  flex-grow: 0;
  box-sizing: border-box;
}

.main-content {
  position: relative;
  flex: 1;
}



/* API PLAYGROUND */

.playground-buttons {
  display: flex;
}

.playground-buttons button.method-button-second{
  border-radius: 0 .25rem .25rem 0;
  border-left: none;
}

.playground-buttons button.method-button-first {
  border-radius: .25rem 0 0 .25rem;
}

.playground-buttons,
.playground-event-buttons {
  margin-top: 1rem;
}

#api-playground {
  position: relative;
}

#api-playground-header {
  height: 4rem;
  line-height: 4rem;
  padding: 0 1rem;
  box-sizing: border-box;

  display: flex;
  align-items: center;
  border-bottom: 2px solid var(--lightgrey);

  justify-content: space-between;
}

#api-playground-main {
  position: absolute;
  top: 4rem;
  left: 0;
  right: 0;
  bottom: 0;
}

#api-playground-gridarea {
  background: white;
  /*padding: 1rem;*/
  position: relative;
  box-sizing: border-box;
  overflow: hidden;
}

#api-playground-log {
  background: var(--consolegrey);
  color: white;
  box-sizing: border-box;
  position: relative;
}



/* ITEMS & CATEGORIES */


.item,
.event-item {
  margin-bottom: 3rem;
  line-height: 1.5;
}

.event-details p,
.method-details p,
.option-details {
  color: var(--descgrey);
}

h4 {
  font-family: monospace;
  font-size: 1.2rem;
}

.main-content h4 {
  font-size: 1.2rem;
  font-weight: normal;
  margin: .5rem 0 0 0;
}


.event-title {
  display: flex;
  align-items: center;
}

.event-title h4 {
  margin: 0;
}

.event-title img {

  width: 2rem;
  height: 2rem;
  vertical-align: middle;
}

.event-title .switch {
  margin-right: .5rem;
  flex-shrink: 0;
}

#commandeditor {
  min-height: 10px;
  z-index: 1;
  position: relative;
}

#scrollArea {

  padding: 10px;
    position: absolute;
    top: 35px; /* reliable? */
    left: 0;
    right: 0;
    bottom: 0;
    color: #505457;
    font-family: monospace;
    background: #505457;
    color: white;
    font-size: .8em;


}

table {
  table-layout: fixed;
  border-collapse: collapse;
  font-size: .8rem;
  width: 100%;
}

table th {
  text-align: left;
  border: 1px solid var(--blueish1);
/*  background: var(--blueish1);
*/  padding: .25rem;
}

table td {
  border: 1px solid var(--lightgrey);
  padding: .25rem;
  line-height: 1;
  color: var(--descgrey);
}

table td:first-child {
}


/*---------------------------------*/

/* https://www.w3schools.com/howto/howto_css_switch.asp */

 /* The switch - the box around the slider */
.switch {
  position: relative;
  display: inline-block;
  width: 48px;
  height: 28px;
}

/* Hide default HTML checkbox */
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

/* The slider */
.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--lightgrey);
  -webkit-transition: .4s;
  transition: .4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}

input:checked + .slider {
  background-color: #0dc54c;
}

input:focus + .slider {
  box-shadow: 0 0 1px #cbe4ff;
}

input:checked + .slider:before {
  -webkit-transform: translateX(20px);
  -ms-transform: translateX(20px);
  transform: translateX(20px);
}

/* Rounded sliders */
.slider.round {
  border-radius: 28px;
}

.slider.round:before {
  border-radius: 50%;
} 

/* HEARTBEAT ANIMATION */



/* HEARTBEAT */

@-webkit-keyframes heartBeat {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  14% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }

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

  42% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }

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

@keyframes heartBeat {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  14% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }

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

  42% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }

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

.heartBeat {
  -webkit-animation-name: heartBeat;
  animation-name: heartBeat;
  -webkit-animation-duration: 1.3s;
  animation-duration: 1.3s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
}

/* h3 */

.category {
  margin-top: 3rem;
}

.category h3 {
/*
  background: #eee;
  text-align: center;
  border-radius: .25rem;
  padding: .25rem;*/
  color: var(--blueish2);
  /*text-transform: uppercase;*/
  font-weight: normal;

  color: var(--dgxlgreen);
  text-transform: uppercase;

/*  position: sticky;
  top: -2rem;*/
  background: white;
  margin: 0;
  padding: 1rem 0;

  font-family: "Poppins";
}

/* em == code */

.item em,
.event-item em {
  font-style: normal;
  font-family: monospace;
  background: var(--lightgrey);
  color: black;
  padding: .125rem;
  border-radius: .125rem;
  white-space: pre;
}

.item h4 a {
  display: flex;
  align-items: center;
}

/*.item h4 span {
  display: flex;
  align-items: center;
}*/

/* labels */

.labelbar {
  margin: .125rem 0 .75rem;
}

.label-advanced {
  background: #f9e888;
  color: #917f1f;
  display: inline-block;
  padding: 2px 6px;
  border-radius: 2px;
  font-size: .7em;
  text-transform: uppercase;
}

.option-type em {
  margin-left: .5em;
  white-space: pre;
}

.option-type em.advanced {
  background: none;
}

/* FULL PAGE */




/* FULL PAGE */



#full-page {
  display:  none;

  top: 14px;
  bottom: 14px;
  left: 14px;
  right: 14px;


  position: absolute;
  z-index: 2;

  background: white;

  box-shadow:  0 -4px 10px rgba(0,0,0,.15);
}

#full-page:before {
  content: '';
  position: absolute;
  top: -14px;
  bottom: -14px;
  left: -14px;
  right: -14px;
  background: rgba(0,0,0,.15);

  background: var(--dgxlgreen);

  background: #acacac;

/*  background: #138046;*/
  box-shadow: inset 0 0 10px rgb(0 0 0 / 25%);
}

#full-page .pane-content p a[href] {

}

#full-page .pane-content a {
  color: var(--dgxlgreen);
}

#full-page .pane-content p a[href]:after,
#full-page .pane-content li a[href]:after
 {
  content:  '';
  background: url('/img/external.svg');
  width: 1rem;
  height: 1rem;
  background-size: 1rem;
  vertical-align: top;
  position: relative;
  display: inline-block;
  margin-left: .25rem;
}

#full-page .pane-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--lightgrey);
  box-sizing: border-box;
  border-radius: .125rem .125rem 0 0;


  height: 3rem;
  line-height: 3rem;
  padding: 0 1rem;
  position: relative;
  background: #f8f9fa;


}

#full-page .pane-content {
  padding: 0 32px;
  background: white;
  border-radius:  0 0 4px 4px;


  position: absolute;
  top: 3rem;
  bottom: 0;
  right: 0;
  left: 0;

  overflow-y: scroll; /* what about API? */
}

#full-page .pane-content.playgroundPane {
  overflow-y: hidden;
  padding: 0;
  display: flex;
}

.inner-docs-page {
  padding: 2rem 0 4rem 0;
}


/* playground */

#playground-spacer {
  position: absolute;
  top: 1rem;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  border: 2px dotted var(--blueish1);
  display: flex;
  justify-content: center;
  align-items: center;
}

#playground-spacer #grid {

    position: absolute;
    top: 0px;
    right: 0px;
    bottom: 0px;
    left: 0px;
  
}

/* buttons */



#api-playground-header button,
#playground-button,
.pane-create-content button {
  height: 2rem;
  box-sizing: border-box;

  background-image: linear-gradient(#f7f8fa ,#e7e9ec);
  border-color: #adb1b8 #a2a6ac #8d9096;
  border-style: solid;
  border-width: 1px;
  border-radius: .25rem;
  box-shadow: rgb(255 255 255 / 60%) 0 1px 0 inset;
  box-sizing: border-box;
  color: #0f1111;
  cursor: pointer;
  display: inline-block;
  font-family: sans-serif;
  outline: 0;
  overflow: hidden;
  padding: 0 .5rem;
  text-align: center;
  text-decoration: none;
  text-overflow: ellipsis;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  white-space: nowrap;

  min-width: 2rem;

}

#api-playground-header button:hover,
#playground-button:hover,
.pane-create-content button:hover {
    box-shadow: 0 0 .25rem var(--consolegrey);

}

button.method-button,
button.event-button {

  height: 2rem;
  box-sizing: border-box;

  background-image: linear-gradient(#f7f8fa ,#e7e9ec);
  border-color: #adb1b8 #a2a6ac #8d9096;
  border-style: solid;
  border-width: 1px;
  border-radius: .25rem;
  box-shadow: rgb(255 255 255 / 60%) 0 1px 0 inset;
  box-sizing: border-box;
  color: #0f1111;
  cursor: pointer;
  display: inline-block;
  font-family: sans-serif;
  outline: 0;
  overflow: hidden;
  padding: 0 .5rem;
  text-align: center;
  text-decoration: none;
  text-overflow: ellipsis;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  white-space: nowrap;

  min-width: 2rem;

}

button.method-button {
  display: flex;
  align-items: center;
}

button.method-button img {
  height: 80%;
  display: block;
/*  margin-right: .5rem;*/
}

button.method-button:hover,
button.event-button:hover {
  box-shadow: 0 0 .25rem var(--consolegrey);
}

button.method-button.semidisabled,
button.event-button.semidisabled {
  opacity: .25;
  cursor: default;
}

button.method-button.semidisabled:hover,
button.event-button.semidisabled:hover {
  box-shadow: none;
}

/*button.event-button.off span {
  display: none;
}*/

.main-content span.arg button {
  background: none;
  border-color: transparent;
  color: var(--dgxlgreen);
  cursor: pointer;
  font-size: 1rem;
  padding: 0 .125rem;
  background: var(--lightgrey);
  border-radius: .125rem;
  color: black;
  font-family: monospace;
}

.main-content span.arg button:hover {
  box-shadow: 0 0 .25rem var(--consolegrey);
}

/* PLAYGROUND MODAL: CREATE */


.pane-create-sidebar {
  padding: 1rem;
  flex: 1;
  border-right: 1px solid var(--lightgrey);
}

.pane-create-sidebar ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.pane-create-sidebar li {
  padding: 8px 12px;
  cursor: pointer;
  border-radius: 2px;
/*  border: 2px solid transparent;*/
}

.pane-create-sidebar li div:last-child {
  font-size: .8rem;
}

.pane-create-sidebar li div:first-child {
  font-weight: bold;
}

.pane-create-sidebar li:hover {
  background: var(--lightgrey);
}

.pane-create-sidebar li.activeItem {
  background: var(--dgxlgreen);
  color: white;
  cursor: default;
  pointer-events: none;
}

.pane-create-content {
  flex: 3;
  position: relative;
}

.pane-create-content-top {
/*  padding-left: 0; */
  box-sizing: border-box;
  position: absolute;
  top: 0;
  bottom: 72px;
  right: 0;
  left: 0;
}

#tab-custom, #tab-preset {
  padding: 20px;
  box-sizing: border-box;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  overflow-y: auto;
}

#tab-preset {
  padding: 20px;
  overflow: scroll;
}

#tab-custom {
  display: none;
}

#editor {
  position: absolute;
  top: 0px;
  bottom: 40px;
  right: 0px;
  left: 0px;
}

#editor-bottom {
  box-sizing: border-box;
  position: absolute;
  bottom: 0px;
  height: 40px;
  left: 0px;
  right: 0px;
  border-top: 1px solid #555651; /*white;*/
}

#editor-bottom .ace_gutter-cell {
  display: none;
}

.pane-create-content-top pre[class*="language-"] {
  margin: 0;
}

.pane-create-content-top textarea {
  width: 100%;
  height: 100%;
  box-sizing: border-box;
}

.pane-create-content-bottom {
  padding: 0 20px;
  box-sizing: border-box;
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  height: 72px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #eaecee;

/*  border-top: 1px solid #ccc; */
}

/* TYPE TOOLTIP */


.typeTooltip {
  left: 12px;
  right: 12px;
  background: white;
  padding: 20px;
  position: absolute;
  border-radius: 4px;
  box-shadow: 0 0 4px rgba(0,0,0,.25);

  display: none;
/*  z-index: 3; */
}

.typeTooltip-arrow {
  position: absolute;
  left: 0;
  top: 0;
  width:  24px;
  height: 24px;
  background:  yellow;

  display: none;
}



.value-type {
  margin: 12px 0;
}

.value-type:last-child {
  margin-bottom: 0;
}

.value-type-title {
  font-size: 1.1em;
}

.value-type-format {
  color: #505457;
}

.type-top {
  padding-right: 48px;
  padding-bottom: 12px;
}

.type-title {
  font-size: 1.2em;
}

button.type-close {
  position: absolute;

  top: 14px;
  right: 14px;



  background-image: linear-gradient(#f7f8fa ,#e7e9ec);
  border-color: #adb1b8 #a2a6ac #8d9096;
  border-style: solid;
  border-width: 1px;
  border-radius: .25rem;
  box-shadow: rgb(255 255 255 / 60%) 0 1px 0 inset;
  box-sizing: border-box;
  color: #0f1111;
  cursor: pointer;
  display: inline-block;
  font-family: sans-serif;
  outline: 0;
  overflow: hidden;
  padding: 0 .5rem;
  text-align: center;
  text-decoration: none;
/*  text-overflow: ellipsis;*/
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  white-space: nowrap;

  height: 2rem;
  min-width: 2rem;
  font-size: 1.4rem;



}

.pane-close button.type-close {
  top: 14px;
  right: 14px;
}

button.type-close:hover {
/*  background-image: linear-gradient(#ffffff ,#f7f8fa);
*/  box-shadow: 0 0 2px var(--dgxlgreen);
}

.typeTooltip em {
  font-weight: bold;
}


.typeTooltip > div:first-child {
  margin-top: 0;
}

.typeTooltip > div:last-child {
  margin-bottom: 0;
}

.type-example {
  border-top:  1px solid #eaecee;
  margin-top: 8px;
  padding-top: 8px;
}



/* PHONE ONLY */

@media only screen and (max-width:700px){

  #api-nav img {
    padding: 1rem 2rem;
    height: 2rem;
  }

  .main-index {
    display: none;
  }

  #api-layout,
  #api-main {
    height: 100%;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
  }

  #api-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 8rem;
    overflow: scroll;
  }

  #api-playground {
    display: none;
  }

  .main-content {
    padding: 2rem;
  }

  #collapse {
    display: none;
  }

  button.method-button,
  button.event-button {
    display: none;
  }

  #api-nav {
    display: flex;
    flex-direction: column-reverse;
  }

  #api-nav {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
  }

  /* TABS */

  #api-nav-tabs {
    background: var(--blueish1);
  }

  #api-nav-tabs ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: space-between;
    height: 60px;
    padding: 0 3px;
  }

  #api-nav-tabs li {
    flex: 1 1 0px;
  }

  #api-nav-tabs li a {
    display: block;
    text-align: center;
    height: 54px;
    line-height: 50px;
    font-family: "Poppins";
    font-size: 1rem;
    margin: 0 3px 6px 3px;
    background: white;
    border-radius: 0 0 0.2em 0.2em;
    border-top: 6px solid var(--blueish1);
    box-sizing: border-box;
    text-decoration: none;
  }

  #api-nav-tabs li.activeTab a {
    border-top-color: white;
    color: black;
    font-weight: bold;
  }

  a.menu-button {
    position: absolute;
    bottom: 0;
    right: 2rem;
    bottom: 1rem;
    height: 2rem;
  }

  a.menu-button svg {
    height: 2rem;
    width: 2rem;
    fill: var(--blueish3);
  }


}

/* DESKTOP ONLY */

@media only screen and (min-width:701px){

  a.menu-button {
    display: none;
  }

  #api-nav {
    padding: 0 1rem 0 1.5rem;
  /*  background: var(--lightgrey);*/

    display: flex;
    justify-content: space-between;
    align-items: center;

    box-sizing: border-box;
    height: 4rem;
    border-bottom: 2px solid var(--lightgrey);

  }

  #api-layout {
    width: 100vw;
    height: 100vh;
    overflow: hidden;
  }

  /* TAB CONTENTS */



  .split-in-columns {
      display: flex;
      flex-direction: row;
  }


  /* api content */

  #api-content {
    position: absolute;
    top: 4rem;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
  }

  .main-content-inner {

    overflow-y: scroll;
    padding: 2rem 2rem 0 2rem;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;

  }


  #api-nav-tabs ul {
    list-style: none;
    margin:0;
    padding: 0;
    display:flex;
  }

  #api-nav-tabs a {
    display: block;
    height: 2rem;
    line-height: 2rem;
    padding: 0 .5rem;
    text-decoration: none;
    color: black;
  /*  text-transform: lowercase;*/
    color: var(--linkgrey);
  /*  font-family: "Poppins";*/
  }

  #api-nav-tabs a:hover {
    background: var(--lightgrey);
    border-radius: .125rem;
  }

  #api-nav-tabs li.activeTab a {
  /*  background: var(--dgxlgreen);
    color: white;*/
    color: black;
    font-weight: bold;
    border-radius: .125rem;
  }

}





.highlight {

    line-height: 1.8em;
    font-size: 1.2rem
    font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial;
    color: black;

  font-weight: bolder;
  background: linear-gradient(104deg, rgba(130, 255, 173,0) 0.9%, rgba(130, 255, 173,1.25) 2.4%, rgba(130, 255, 173,0.5) 5.8%, rgba(130, 255, 173,0.1) 93%, rgba(130, 255, 173,0.7) 96%, rgba(130, 255, 1732,0) 98%), linear-gradient(183deg, rgba(130, 255, 173,0) 0%, rgba(130, 255, 173,0.3) 7.9%, rgba(130, 255, 173,0) 15%);
  padding: 0.6em 1rem;
/*  margin-left: -.5rem;*/
  -webkit-box-decoration-break: clone;
/*  margin: 0;*/
  border-radius: .5rem;
  text-shadow: -12px 12px 9.8px rgba(130, 255, 173,0.7), 21px -18.1px 7.3px rgba(255, 255, 255,1), -18.1px -27.3px 30px rgba(255, 255, 255,1);
 
  font-weight: normal;

}

.highlight a {
  color: black;
  text-decoration: none;
}

.listener-info {
  display: none;
}