.apiMenu
{
	left: 0%;
	width:16%;
	top:11em;
	height: calc(100vh - 12.5rem);
	position: fixed;
	list-style: none;
	line-height: 1;
	z-index: 10;
	overflow-x: hidden;
	overflow-y:auto;
}


/*
.apiMenu:after
{
	clear: both
}
*/

/*
.tabs {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 4px -2px rgba(0,0,0,0.5);
}
*/

input 
{
  position: absolute;
  opacity: 0;
  z-index: -1;
}

.accordian
{
	width: 100%;
	color: white;
	overflow: hidden;
	font-size: 1em;
}

.accordian-label
{ 
	display: flex;
	justify-content: space-between;
	padding: 1.5rem .5rem 1.5rem .5rem;
	background: #3A3A3A;
	font-weight: bold;
	cursor: pointer;
}

.accordian-label:hover
{
	background: #FFDE38;
	color: #000;
}

.accordian-label::after
{
	content: "\276F";
	width: 1rem;
	height: 1rem;
	text-align: center;
	/*transition: all .35s;*/
}

.accordian-content 
{
	max-height: 0;
	padding: 0;
	color: #021b37;
	background: #FFDE38;
	/*transition: all .35s;*/
}
.accordian-close 
{
	display: flex;
	justify-content: flex-end;
	/*padding: 1em;*/
	font-size: 0.75rem;
	background: #021b37;
	cursor: pointer;
}

.accordian-close:hover
{
	background: #0b76f1;
}

input:checked + .accordian-label
{
	background: #FFDE38;
	color: #000;
}

input:checked + .accordian-label::after
{
	transform: rotate(90deg);
}


input:checked ~ .accordian-content
{
	max-height: 100vh;
    padding: 0;
}

.accordian-list
{
	margin: 0;
	list-style-type: none;
	padding-left: 0;
}


.accordian-list > li > a
{
	text-decoration: none;
	color: black;
	display:block;
	padding: 1rem 1rem 1rem 1rem;
}

#apiContentContainer
{
	width:83.5%;
	height:calc(100vh - 10rem);
	left:16%;
	max-height:87.5%;
	top:9.25em;
	position: fixed;
	background-color: white;
	z-index: 1;
	overflow-y: auto;
	border-radius:0;
	-webkit-box-shadow: 0px 4px 8px 2px rgba(0,0,0,0.65);
	-moz-box-shadow: 0px 4px 8px 2px rgba(0,0,0,0.65);
	box-shadow: 0px 4px 8px 2px rgba(0,0,0,0.65);
}

#apiContent
{
	margin: 2.5em 2em 2em 2em;
}

#apiContent h1, h2, h3, h4, h5
{
	text-align: left
}