body {
	/*background: #F5F5F5;*/
	font-weight: 100;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
	overflow-y: hidden;
}
.large-container {
	padding-left: 32px;
	padding-top: 16px;
	padding-bottom: 32px;
	/*padding-right: 32px;*/
	overflow-x: hidden;
}
#heading {
	padding: 16px 0px 16px 0px;
	font-weight: 400;
	cursor: pointer;
	animation: moveRight .25s;
	animation-direction: reverse;
	-webkit-animation: moveRight .25s;
	-webkit-animation-direction: reverse;
}
#heading:hover {
	position: relative;
	animation: moveRight .25s;
	animation-direction: normal;
	-webkit-animation: moveRight .25s;
	-webkit-animation-direction: normal;
}
.searchbar {
	width: 100% ! important;
	height: 45px;
	border: 0px;
	border-bottom: 2px solid #eee;
	border-radius: 0px;
	box-shadow: none;
	margin-bottom: 16px;
	padding-left: 24px;
}
.searchbar:focus {
	box-shadow: none;
}
.form-inline .fa {
	margin-right: -14.86px;
	position: relative;
	top: -8px;
	z-index: 1;
}
.table-head, .table thead th {
	font-weight: 600;
}
.active-cyan-2 input.form-control[type=text]:focus:not([readonly]) {
  border-bottom: 1px solid #4dd0e1;
  box-shadow: 0 1px 0 0 #4dd0e1;
}
.active-cyan input.form-control[type=text] {
  border-bottom: 1px solid #4dd0e1;
  box-shadow: 0 1px 0 0 #4dd0e1;
}
.hash {
	cursor: pointer;
}
.hash code {
	color: #333;
}
.types {
	width: 95%;
    margin-top: 7px;
}
.nativeInfo {
	background: #FFFFFF;
	height: calc(100vh - 134px);
	overflow-y: auto;
	padding-bottom: 32px;
	padding-right: 32px;
}
.nativeInfo h4 {
	padding-top: 6px;
	padding-bottom: 9px;
	border-bottom: 2px solid #eee;
	font-weight: 400;
	color: #333;
	margin-top: 32px;
}
.nativeInfo img {
	max-width: 100%;
}
.left-native-name {
	margin-top: 0px ! important;
}
.nativeInfo h4 small {
	font-size: 15px;
	color: #aaa;
}
.nativeInfo b, .nativeInfo strong {
	font-weight: bold;
}
.nativeInfo pre {
	padding: 12px;
	border-radius: 8px;
	background: rgb(39,40,34);
	font-family: Consolas;
	color: #c5c8c6;
}
.code-native-type {
	color: #b294bb;
	font-weight: bold;
}
.code-native-name {
	color: #de935f;
	font-weight: bold;
}
.card-link {
	color: #000;
	font-weight: bold;
}
.card-header {
	border-bottom: 0px;
	transition-duration: 0.25s;
}
.card-header:hover {
	cursor: pointer;
	background: rgba(0,0,0,0.1);
}
.card-body {
	padding: 0px;
}
.card-body pre {
	border-radius: 0px;
	margin-bottom: 0px;
}
.prettyprint {
	background: rgb(39,40,34);
}
.nativesList {
	height: calc(100vh - 195px);
	overflow-y: auto;
	transition-duration: 0.25s;
}
.floating {
	overflow-y: auto;
	position: fixed;
	height: 100vh;
	left: 0px;
	top: 0px;
	width: 41.666667%;
	flex: 0 0 41.666667%;
	padding-right: 15px;
	padding-left: 15px;
}
.footer {
	padding-top: 32px;
	padding-bottom: 32px;
}
.padding {
	padding-right: 0px;
}
.logo {
	height: 118px;
}
.logo-img {
	vertical-align: bottom;
}
.searchfind {
	color: rgb(249,38,102);
	font-weight: bold;
}
@keyframes moveRight {
	0% {left: 0px;}
	100% {left: 16px;}
}
 
@-webkit-keyframes moveRight {
	0% {left: 0px;}
	100% {left: 16px;}
}