@import url('https://fonts.googleapis.com/css?family=Karla:400,700');

* {
	font-family: 'karla', sans-serif;
	color: #4A4A4A;
}
.header {
	background: #F5F8FC;
}
.footer {
	background-color: #f8f8f8;
	border-top: 1px solid rgba(0,0,0,.1);
}
.ctas-button {
	color: #ffffff;
}
*,
*:before,
*:after {
  margin: 0;
  box-sizing: border-box;
}
body {
  -webkit-font-smoothing: antialiased;
}
pre, code, kbd, samp {
  font-family: monospace, sans-serif;
}
pre code {
	position: relative;
}

.heading {
  font-weight: 100;
  font-size: 50px;
  line-height: 68px;
	color: #323232;
}
@media (max-width: 900px) {
	.heading {
    font-size: 32px;
    line-height: 40px;
  }
}
.subheading {
  font-size: 30px;
  line-height: 40px;
  font-weight: 500;
}
@media (max-width: 900px) {
  .subheading {
    font-size: 26px;
    line-height: 35px;
  }
}
.paragraph {
  font-size: 17px;
  line-height: 32px;
  font-weight: 100;
}
.paragraph.small {
	font-size: 15px;
  line-height: 24px;
  font-weight: 400;
}
.heading + .paragraph {
  margin-top: 30px;
}
.subheading + .paragraph {
  margin-top: 10px;
}
p.paragraph {
  color: rgba(0,0,0,.5);
}
.logo {
  font-size: 30px;
  line-height: 30px;
  font-weight: 900;
}
@media (max-width: 420px) {
  .logo {
    font-size: 22px;
  }
}
.nav-link2,
.nav-link {
  text-decoration: none;
  font-size: 18px;
  line-height: 30px;
  color: inherit;
}
.nav-link:not(:first-of-type) {
  margin-left: 20px;
}
.text-left {
	text-align: left;
}
.text-center {
  text-align: center;
}
.text-right {
  text-align: right;
}

ul {
	list-style: none;
	padding: 0;
}

.flex,
.spread,
.center,
.right,
.vertical,
.centervertical {
  display: flex;
}
.spread {
  justify-content: space-between;
}
.center {
  align-items: center;
  justify-content: center;
}
.centervertical {
  flex-direction: column;
  justify-content: center;
}
.right {
  justify-content: flex-end;
}
.vertical {
  flex-direction: column;
}

.col-1,
.col-2,
.col-3,
.col-4,
.col-5,
.col-6,
.col-7,
.col-8,
.col-9,
.col-10,
.col-11,
.col-12 {
  padding: 0 20px;
}
.col-1 {width: 8.333333%;}
.col-2 {width: 16.666667%;}
.col-3 {width: 25%;}
.col-4 {width: 33.333333%;}
.col-5 {width: 41.666667%;}
.col-6 {width: 50%;}
.col-7 {width: 58.333333%;}
.col-8 {width: 66.666667%;}
.col-9 {width: 75%;}
.col-10 {width: 83.333333%;}
.col-11 {width: 91.666667%;}
.col-12 {width: 100%;}

.landing-page .search-bar {
  opacity: 0;
}

.top-menu {
  display: none;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  position: fixed;
  height: 80px;
  width: 100vw;
	top: 0;
  padding: 0 30px;
  background-color: transparent;
  z-index: 999;
  border-bottom: 1px solid rgba(240, 245, 250, 0.1);
  -webkit-transition: 0.3s ease-in all;
  transition: 0.3s ease-in all;
}
@media all and (min-width: 768px) {
	.top-menu {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
	}
}
.top-menu a {
	text-decoration: none;
	cursor: pointer;
}
.top-menu .left {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
.top-menu .logo,
#mobile-header .logo {
	height: 29px;
	width: 160px;
	background-image: url("../images/logo.png");
	background-size: cover;
	background-repeat: no-repeat;
}
.top-menu .right {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	position: relative;
	height: 100%;
}
.top-menu .top-menu-items,
.top-menu .github-logo,
.top-menu .search-button {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	position: relative;
	margin: 0 20px;
	height: 100%;
}
.top-menu .download {
	margin-left: 10px;
}
.top-menu .top-menu-items {
	margin: 0;
	height: 100%;
}
.top-menu .top-menu-item {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	padding: 0 20px;
	color: #4A4A4A;
	font-size: 15px;
	font-weight: 600;
	text-decoration: none;
	height: 100%;
}
.top-menu .top-menu-item:hover {
	color: #323232;
}
.top-menu .top-menu-item.active {
	border-bottom: 2px solid #2A98CB;
}
.top-menu .github-logo, .top-menu .search-button {
	color: #F0F5FA;
	cursor: pointer;
}
.top-menu.active {
  background-color: white;
  border-bottom: none;
  box-shadow: 0 4px 2px -2px rgba(20, 45, 60, 0.25);
}
.top-menu.active .logo {
	background-image: url("../images/logo.png");
}
.top-menu.active .top-menu-item {
	color: #142D3C;
}
.top-menu.active .github-logo {
	color: #142D3C;
}
.top-menu.active .search-button {
	color: #142D3C;
}

#mobile-menu {
  position: fixed;
  top: 40px;
  z-index: 500;
  width: 100%;
  background-color: #ffffff;
  padding: 10px;
  display: none;
}
#mobile-menu.show {
	display: block;
}
@media all and (min-width: 768px) {
	#mobile-menu {
		display: none;
	}
}
#mobile-menu > ul {
	display: none;
}
#mobile-menu > ul li {
	padding: 0 20px;
}
#mobile-menu > ul > ul {
	display: none;
}
#mobile-menu > ul > ul li {
	padding: 0 40px;
}
#mobile-menu li.active > i {
	-webkit-transform: rotate(90deg);
	transform: rotate(90deg);
}
#mobile-menu ul.show {
	display: block;
}
#mobile-menu li {
	height: 52px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	font-weight: 300;
	color: #142D3C;
	cursor: pointer;
}
#mobile-menu li a {
	color: #142D3C;
	text-decoration: none;
}
#mobile-menu li i {
	font-size: 12px;
	-webkit-transition: 0.15s all ease-in;
	transition: 0.15s all ease-in;
}

#mobile-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 0 10px;
  height: 40px;
	position: fixed;
	top: 0;
	width: 100%;
	background-color: #ffffff;
	z-index: 500;
  border-bottom: 1px solid #C3D2DC;
}
@media all and (min-width: 768px) {
	#mobile-header {
		display: none;
	}
}
#mobile-header a {
	color: #142D3C;
}
#mobile-header .right {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}
#mobile-header .right > div {
	margin-left: 20px;
	cursor: pointer;
	height: 100%;
}

.search-bar {
  top: 0;
  z-index: 20;
  background-color: #F0F5FA;
  height: 80px;
  width: 100%;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  box-shadow: 0 4px 2px -2px rgba(20, 45, 60, 0.25);
  display: none;
  position: fixed;
  -webkit-transition: 0.3s ease-in left;
  transition: 0.3s ease-in left;
  top: 0;
  opacity: 0;
  left: 100vw;
}
.search-bar .inline-search-results {
	position: absolute;
	top: 82px;
	min-width: 250px;
	max-width: 800px;
	left: 80px;
	opacity: 0;
	-webkit-transition: opacity ease-in 0.3s;
	transition: opacity ease-in 0.3s;
}
.search-bar .inline-search-results.active {
	opacity: 1;
}
.search-bar .inline-search-results a {
	text-decoration: none;
}
.search-bar .inline-search-results li {
	padding: 10px 20px;
	font-weight: 300;
	letter-spacing: 0.01em;
	cursor: pointer;
	border-bottom: 1px solid #6991AA;
	background-color: #F0F5FA;
	border-left: 2px #FF405E solid;
	-webkit-transition: 0.07s all ease-in;
	transition: 0.07s all ease-in;
}
.search-bar .inline-search-results li:last-of-type {
	border-bottom: none;
}
.search-bar .inline-search-results li .title {
	font-weight: 500;
	color: #234B5F;
	font-size: 15px;
	margin-bottom: 5px;
}
.search-bar .inline-search-results li .text,
.search-bar .inline-search-results li .markdowned li,
.markdowned .search-bar .inline-search-results li li,
.search-bar .inline-search-results li .markdowned td,
.markdowned .search-bar .inline-search-results li td,
.search-bar .inline-search-results li .date {
	font-weight: 300;
	font-size: 13px;
	line-height: 1.2;
}
.search-bar .inline-search-results li.selected {
	background-color: #C3D2DC;
}
.search-bar .inline-search-results li:hover {
	background-color: #dde8f4 !important;
	border-left: 4px #FF405E solid;
}
.search-bar .inline-search-results li b {
	font-weight: 700;
}
@media all and (min-width: 1025px) {
	.search-bar {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
	}
}
.search-bar.active {
	opacity: 1;
	z-index: 9999;
	left: 0;
}
.search-bar__icon {
	height: 80px;
	width: 80px;
	background-color: #FF405E;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	color: white;
}
.search-bar__input {
	position: relative;
	height: 100%;
	width: calc(100% - 160px);
	border: none;
}
.search-bar__input input {
	position: absolute;
	padding: 0 20px;
	top: 0;
	bottom: 0;
	width: 100%;
	font-size: 24px;
	letter-spacing: 0.05em;
	font-weight: 300;
	background: transparent;
	border: none;
	height: 100%;
}
.search-bar__exit {
	height: 50%;
	width: 80px;
	height: 80px;
	cursor: pointer;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	line-height: 1;
}

.search-page {
  width: 100vw;
  height: 100vh;
  overflow-y: scroll;
}
@media all and (min-width: 1025px) {
	.search-page {
		padding-top: 120px;
	}
}
.search-page .search-results-for {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}
.search-page .search-results-for h1 {
	display: inline-block;
	height: 48px;
}
.search-page .search-results-for p {
	margin-left: 10px;
	font-size: 24px;
	display: inline-block;
	-ms-flex-item-align: end;
	align-self: flex-end;
	line-height: 1;
	padding-bottom: 4px;
}
.search-page .search-result-item {
	padding: 20px 0;
	border-bottom: 1px solid #6991AA;
}
.search-page .search-result-item:last-of-type {
	border-bottom: none;
}
.search-page .search-result-item h2 {
	margin: 0;
	padding: 0;
}
.search-page .search-result-item .text, .search-page .search-result-item .markdowned li, .markdowned .search-page .search-result-item li, .search-page .search-result-item .markdowned td, .markdowned .search-page .search-result-item td, .search-page .search-result-item .date {
	margin: 0;
	padding: 0;
}
.search-page .search-result-item .path {
	margin: -4px 0 2px 0;
	opacity: 0.7;
	padding: 0;
	font-size: 13px;
}
.search-page .search-result-item a {
	margin: 0;
	padding: 0;
	text-decoration: none;
	color: #FF405E;
}
.anchor-hover {
  padding-left: 8px;
  opacity: 0;
  color: #6991AA;
  -webkit-transition: 0.07s ease-in-out all;
  transition: 0.07s ease-in-out all;
}
h2:not(.no-anchor):hover .anchor-hover {
  opacity: 1;
}
h3:not(.no-anchor):hover .anchor-hover {
  opacity: 1;
}
h4:not(.no-anchor):hover .anchor-hover {
  opacity: 1;
}

#__bs_notify__ {
  top: 95% !important;
  right: 10px !important;
  border-radius: 15px !important;
  height: 60px !important;
}

.button {
  border: none;
  height: 40px;
  padding: 0 30px;
	line-height: 38px;
	border-radius: 3px;
	font-size: 15px;
	font-weight: 600;
	letter-spacing: .3px;
  -webkit-transition: all 0.15s ease-in-out;
  transition: all 0.15s ease-in-out;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
	cursor: pointer;
}
.button p {
	line-height: 1;
	text-decoration: none;
}
.button__icon {
	position: relative;
	height: 38px;
	width: 220px;
	background-position: center center;
	background-size: cover;
}
.button__icon--arrow {
	width: 30px;
	background-image: url("../img/003-Small-icons/Red/Red-Arrow.svg");
}
.button__icon--arrow-white {
	background-image: url("../img/003-Small-icons/White/Arrow-White.svg");
}
.button__icon--mail {
	background-image: url("../img/003-Small-icons/White/Mail-White.svg");
}
.button:hover .button__icon--arrow {
  background-image: url("../img/003-Small-icons/White/Arrow-White.svg");
}
.button--blue {
	background-color: #2A98CB;
	border: 1px solid #248BBB;
	color: white;
}
.button--blue:hover {
	background-color: #248BBB;
}


.page {
  min-height: 100vh;
  position: relative;
}
.page.documentation .header {
	color: #323232;
	margin: 40px 0;
}
@media all and (min-width: 1025px) {
	.page.documentation .content {
		padding-top: 60px;
	}
}

.content {
  padding: 30px 40px 40px 40px;
  background-color: white;
  min-height: 100vh;
  max-width: 980px;
}
@media all and (min-width: 1025px) {
	.content {
		margin-left: 370px;
		padding: 0 40px 40px 80px;
	}
}
.content .content-header {
	font-size: 32px;
	font-weight: 100;
	color: #323232;
	line-height: 1.5;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	margin-top: 50px;
}

.markdowned h1 {
  font-size: 32px;
  font-weight: 100;
  color: #323232;
  line-height: 1.5;
  letter-spacing: 0.05em;
  margin: 25px 0;
}
.markdowned h2 {
  font-size: 24px;
  font-weight: 500;
  color: #142D3C;
  line-height: 1.5em;
  letter-spacing: 0.05em;
  margin: 32px 0 12.5px 0;
  padding-top: 100px;
  margin-top: -68px;
}
.markdowned h2 + h3 {
  margin-top: 0;
  padding-top: 100px;
  margin-top: -100px !important;
}
.markdowned h2 + p,
.markdowned h2 + ul {
  margin-top: 0;
}
.markdowned h3 {
  font-size: 13px;
  font-weight: 500;
  color: #142D3C;
  line-height: 1.8;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 32px 0 0 0;
  padding-top: 100px;
  margin-top: -84px !important;
}
.markdowned h3 + h4,
.markdowned h3 + p,
.markdowned h3 + ul {
  margin-top: 0;
}
.markdowned h4 {
  font-size: 13px;
  font-weight: 500;
  color: #142D3C;
  line-height: 1.8;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 32px 0 0 0;
  padding-top: 100px;
  margin-top: -68px;
}
.markdowned h4 + h5,
.markdowned h4 + p,
.markdowned h4 + ul {
  margin-top: 0;
}
.markdowned h5 {
  font-size: 13px;
  font-weight: 500;
  color: #4A4A4A;
  line-height: 1.8;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 25px 0 0 0;
}
.markdowned h5 + h6,
.markdowned h5 + p,
.markdowned h5 + ul {
  margin-top: 0;
}
.markdowned h6 {
  font-size: 15px;
  font-weight: 500;
  color: #142D3C;
  line-height: 1.7;
  letter-spacing: 0.025em;
  margin: 25px 0;
}
.markdowned p {
  font-size: 15px;
  font-weight: 300;
  color: #142D3C;
  line-height: 1.5;
  letter-spacing: 0.025em;
  margin: 25px 0;
}
.markdowned p + ul,
.markdowned p + ol {
  margin-top: 0;
}
.markdowned a {
  font-size: 15px;
  font-weight: 300;
  color: #2A98CB;
  line-height: 1.7;
  letter-spacing: 0.025em;
  text-decoration: underline;
  margin: 25px 0;
}
.markdowned ol {
  margin: 10px 30px;
}
.markdowned ul {
  list-style-type: square;
  margin: 10px 30px;
}
.markdowned li {
  font-weight: 300;
  margin: 10px 0;
}
.markdowned li:first-of-type {
	margin-top: 0;	
}
.markdowned li:last-of-type {
	margin-bottom: 0;
}
.markdowned em {
  color: #142D3C;
  font-weight: 200;
}
.markdowned strong {
  font-weight: 500;
}
.markdowned code {
  font-family: 'Roboto Mono', monospace;
}
.markdowned p > code, .markdowned li > code {
  background-color: #D5E6FC;
	border-radius: 3px;
	color: #248BBB;
  padding: 0 5px;
}
.markdowned .hljs {
  padding: 40px 20px 40px 20px;
  font-size: 14px;
  background-color: #F7F8F9;
}
.markdowned .hljs span {
	font-weight: 300;
}
.markdowned table {
  margin: 40px 0;
  width: 100%;
}
.markdowned th {
  text-transform: capitalize;
}
.markdowned td, .markdowned th {
  text-align: left;
  padding: 20px 40px;
  border-bottom: 1px solid #F0F5FA;
}
.markdowned td[align=right], .markdowned th[align=right] {
  text-align: right;
}
.markdowned td:first-of-type, .markdowned th:first-of-type {
	padding-left: 10px;
}
.markdowned td:last-of-type, .markdowned th:last-of-type {
  padding-right: 10px;
}

.markdowned tr:last-of-type td {
  -webkit-transition: 0.1s ease-in background-color;
  transition: 0.1s ease-in background-color;
  border-bottom: none;
}
.markdowned tr:hover td {
  background-color: #F0F5FA;
}

.copy-button {
  background: none;
  border: none;
  position: absolute;
  top: 0;
  right: 0;
  border-radius: 0 0 0 5px;
  padding: 10px 20px;
  letter-spacing: 0.1em;
  cursor: pointer;
  width: 100px;
  background-color: #E7ECF1;
  -webkit-transition: 0.2s ease-in all;
  transition: 0.2s ease-in all;
}
.copy-button p {
	margin: 0;
	padding: 0;
	line-height: 1;
	font-weight: 600;
	font-size: 12px;
	color: #323232;
}
.copy-button .copied {
	display: none;
}
.copy-button.zeroclipboard-is-hover {
	-webkit-transition: 0.1s ease-in all;
	transition: 0.1s ease-in all;
	background-color: #d3e9ff;
	cursor: pointer;
	color: white;
}
.copy-button.clicked {
	width: 200px;
}
.copy-button.clicked .copy {
	display: none;
}
.copy-button.clicked .copied {
	display: block;
}

.dropdown {
  margin: 20px 0;
  background-color: #F0F5FA;
  height: 40px;
  width: 240px;
  cursor: pointer;
  position: relative;
  border-radius: 5px;
  z-index: 100;
  display: none;
}
.dropdown__active {
	border-radius: 5px 5px 0 0;
	box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
}
.dropdown__active .dropdown__core {
	border-radius: 5px 5px 0 0;
}
.dropdown__active .dropdown__items {
	display: block;
}
.dropdown__core {
	width: 100%;
	height: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	position: relative;
	z-index: 10;
	background-color: #F0F5FA;
	border-radius: 5px;
}
.dropdown__selected {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	padding: 0 20px;
}
.dropdown__chevon {
	padding: 0 20px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}
.dropdown__items {
	position: absolute;
	background-color: white;
	top: 40px;
	left: 0;
	right: 0;
	border-left: 1px #F0F5FA solid;
	border-right: 1px #F0F5FA solid;
	border-bottom: 1px #F0F5FA solid;
	border-radius: 0 0 4px 4px;
	display: none;
	box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
	z-index: 2;
}
.dropdown__item {
	height: 40px;
	width: 100%;
	padding: 0 20px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
.dropdown__item i {
	display: none;
	margin-right: 10px;
}
.dropdown__item.selected {
	font-weight: 500;
}
.dropdown__item.selected i {
	display: block;
}
.dropdown__item:not(:last-of-type) {
	border-bottom: 1px #F0F5FA solid;
}

.side-menu {
  display: none;
  background-color: #F0F5FA;
  padding: 120px 40px 40px 40px;
  height: 100vh;
  position: fixed;
  bottom: 0;
  overflow-y: scroll;
  width: 360px;
}
@media all and (min-width: 1025px) {
	.side-menu {
		display: block;
	}
}
.side-menu__sub {
	margin: 10px 0;
}
.side-menu__item:not(:first-child) .side-menu__item__link {
	padding-top: 10px;
}
.side-menu__item:last-of-type .side-menu__item__link {
	border-bottom: none !important;
}
.side-menu__item.active > a p {
	color: #2A98CB;
	font-weight: 600;
}
.side-menu__item__link {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	cursor: pointer;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	text-decoration: none;
	padding-bottom: 10px;
	border-bottom: 1px solid rgba(0,0,0,.1);
}
.side-menu__item__link__icon {
	width: 22px;
}
.side-menu__item__link__text {
	color: #4A4A4A;
	margin-left: 10px;
	font-weight: 300;
	letter-spacing: 0.05em;
	font-size: 15px;
	line-height: 1.7;
}
.side-menu__sub__item.active .side-menu__sub__item__text {
	font-weight: 700;
}
.side-menu__sub__item__text {
	display: none;
	color: #4A4A4A;
	padding: 7px 0 7px 40px;
	font-weight: 300;
	letter-spacing: 0.05em;
	font-size: 15px;
	line-height: 1.7;
	text-decoration: none;
}
.side-menu-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  cursor: pointer;
  padding: 10px 0;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-decoration: none;
}
.side-menu-item::-webkit-scrollbar {
	display: none;
}
.side-menu-item .bullet {
	width: 40px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	padding-top: 2px;
}
.side-menu-item .bullet img {
	width: 22px;
}
.side-menu-item .section-title {
	width: 200px;
}
.side-menu-item .folding-indicator {
	width: 40px;
	text-align: right;
	line-height: 0;
}
.side-menu-item.active .text,
.side-menu-item.active .markdowned li,
.markdowned .side-menu-item.active li,
.side-menu-item.active .markdowned td,
.markdowned .side-menu-item.active td,
.side-menu-item.active .date {
	color: #2A98CB;
}
.side-menu-item:first-child {
	padding-top: 0;
}
.side-menu-item:not(:last-child) {
	border-bottom: 1px solid #96ADAA;
}
.sub-menu-item {
  display: block;
  width: 100%;
  text-decoration: none;
  padding: 7px 0 7px 60px;
  color: #142D3C;
}
.sub-menu-item.active .text,
.sub-menu-item.active .markdowned li,
.markdowned .sub-menu-item.active li,
.sub-menu-item.active .markdowned td,
.markdowned .sub-menu-item.active td,
.sub-menu-item.active .date {
	font-weight: 500;
}

.text-header,
.markdowned th {
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.05em;
  color: #142D3C;
}
.text-header:not(:first-child):not(:last-child), .markdowned th:not(:first-child):not(:last-child) {
	margin: 10px 0;
}
.text-header:first-child, .markdowned th:first-child {
	margin-bottom: 10px;
}
.text-header:last-child, .markdowned th:last-child {
	margin-bottom: 10px;
}
.text,
.markdowned li,
.markdowned td,
.date {
  font-weight: 300;
  letter-spacing: 0.05em;
  font-size: 15px;
  color: #142D3C;
  line-height: 1.7;
}





/*containers*/
.container-lrg,
.container-sml {
  margin: auto;
  width: 100%;
}
.container-lrg {
  max-width: 1080px;
}
.container-sml {
  max-width: 700px;
}
.ctas {
  margin: 40px 0 0 0;
}
.centerdevices,
.sidedevices {
  position: relative;
}
.header {
	padding: 20px 0 60px 0;
	overflow: hidden;
}
.header .sidedevices {
	margin: 60px 0 0
}
@media (max-width: 900px) {
	.header .sidedevices {
		min-height: inherit;
	}
	.header .flex {
		flex-direction: column;
	}
	.header	.heading {
		margin-top: 60px;
	}
	.header	.col-6 {
		width: 100%;
	}
}
.ctas-button {
	display: inline-block;
	height: 40px;
	line-height: 38px;
	padding: 0 30px;
	background: #2A98CB;
	border-radius: 3px;
	font-size: 15px;
	font-weight: 600;
	letter-spacing: .3px;
	border: 1px solid #248BBB;
	text-decoration: none;
	cursor: pointer;
	-webkit-transition: all 0.15s ease-in-out;
  transition: all 0.15s ease-in-out;
}
.ctas-button:hover {
	background-color: #248BBB;
}
@media (max-width: 440px) {
	.ctas-button {
		display: block;
		width: 100%;
		text-align: center;
	}
}

.pricing {
	padding: 90px 0;
	border-bottom: 1px solid rgba(0,0,0,.1);
}
.pricing img {
	max-height: 45px;
	max-width: 100%;
	margin-top: 45px;
}
.pricing .pricing-opt-wrapper {
	flex-wrap: wrap;
	margin-top: 40px;
}
.pricing-opt {
	padding: 30px 30px 40px;
	border-radius: 3px;
}
.pricing-opt .price {
	margin: 10px 0 0;
	position: relative;
	letter-spacing: 0;
}
.price .dollar {
	font-size: 20px;
	vertical-align: 16px;
}
.price .mo {
	font-size: 18px;
	vertical-align: 0;
	color: #9B9B9B;
	font-weight: 600;
}
.pricing-opt-features {
	margin-top: 30px;
	padding-top: 30px;
	border-top: 1px solid rgba(0,0,0,.1);
}
.pricing-opt-features p {
	position: relative;
	padding-left: 25px;
}
.pricing-opt-features p:before {
	content: "";
	position: absolute;
	left: 0;
	top: 10px;
	width: 14px;
	height: 12px;
	background-image: url("../images/price_block_checkmark@2x.png");
	background-size: 14px 12px;
}
.pricing-opt-features p span {
	font-weight: 700;
}

.pricing-opt.dev {
	border: 2px solid rgba(0,0,0,.1);
}
.pricing-opt.startup {
	border: 2px solid #2A98CB;
}
.pricing-opt.enterprise {
	border: 2px solid rgba(0,0,0,.1);
}
@media (max-width: 800px) {
	.pricing .col-4 {
		width: 100%;
		margin-top: 30px;
	}
	.pricing .col-4:first-child {
		margin-top: 0;
	}
	.pricing-opt .price {
		margin: 10px 0 10px;
	}
	.price .dollar {
		font-size: 14px;
		vertical-align: 10px;
	}
}

.socialproof {
	padding: 90px 0;
}
.socialproof img {
	max-height: 45px;
	max-width: 100%;
	margin-top: 45px;
}
.socialproof .logos {
	flex-wrap: wrap;
}
@media (max-width: 700px) {
	.socialproof .col-4 {
		width: 100%;
	}
}
.footer {
	padding: 25px 0;
}
.footer .nav-link {
	display: inline-block;
	margin: 0 10px;
	font-size: 16px;
	color: #4A4A4A;
}
.footer .nav-link:hover {
	cursor: pointer;
	color: #2A98CB;
}
.footer .copyright-wrapper {
	margin-top: 10px;
}
.footer .copyright-wrapper span {
	font-size: 13px;
	font-weight: 600;
	line-height: 1;
	color: #9B9B9B;
}
.footer .copyright-wrapper a {
	text-decoration: none;
	color: #4A4A4A;
	cursor: pointer;
}
.footer .copyright-wrapper a:hover {
	color: #2A98CB;
}
.feature2 {
	border-bottom: 1px solid rgba(0,0,0,.1);
}
.feature2	.col-6:nth-of-type(2n - 1) {
	padding: 90px 90px 90px 20px;
	border-right: 1px solid rgba(0,0,0,.1)
}
.feature2	.col-6:nth-of-type(3n - 1) {
	padding: 90px 20px 90px 90px;
}
@media (max-width: 900px) {
	.feature2	.col-6:nth-of-type(1) {
		padding: 45px 45px 45px 20px;
	}
	.feature2	.col-6:nth-of-type(2) {
		padding: 45px 20px 45px 45px;
	}
}
@media (max-width: 600px) {
	.feature2 {
		padding: 90px 0;
	}
	.feature2 .flex {
		flex-direction: column;
	}
	.feature2	.col-6:nth-of-type(1),
	.feature2	.col-6:nth-of-type(2) {
		padding: 0 20px;
		border: none;
		width: 100%;
	}
	.feature2	.col-6:nth-of-type(2) {
		margin-top: 30px;
	}
}
.feature2 {
	border-bottom: 1px solid rgba(0,0,0,.1);
}
.feature2	.col-6:nth-of-type(2n - 1) {
	padding: 90px 90px 90px 20px;
	border-right: 1px solid rgba(0,0,0,.1)
}
.feature2	.col-6:nth-of-type(3n - 1) {
	padding: 90px 20px 90px 90px;
}
@media (max-width: 900px) {
	.feature2	.col-6:nth-of-type(1) {
		padding: 45px 45px 45px 20px;
	}
	.feature2	.col-6:nth-of-type(2) {
		padding: 45px 20px 45px 45px;
	}
}
@media (max-width: 600px) {
	.feature2 {
		padding: 90px 0;
	}
	.feature2 .flex {
		flex-direction: column;
	}
	.feature2	.col-6:nth-of-type(1),
	.feature2	.col-6:nth-of-type(2) {
		padding: 0 20px;
		border: none;
		width: 100%;
	}
	.feature2	.col-6:nth-of-type(2) {
		margin-top: 30px;
	}
}
.feature4 {
	padding: 90px 0;
	border-bottom: 1px solid rgba(0,0,0,.1);
  overflow: hidden;
	background-color: #F5F8FC;
}
@media (max-width: 900px) {
	.feature4 .sidedevices {
		min-height: inherit;
		margin-top: 60px;
	}
	.feature4 .flex {
		flex-direction: column;
	}
	.feature4	.col-5,
	.feature4	.col-6 {
		width: 100%;
	}
}
.feature5 {
	padding: 90px 0;
	overflow: hidden;
	border-bottom: 1px solid rgba(0,0,0,.1);
}
.feature5 .sidedevices {
	margin-top: 90px;
}
.feature5 .steps:not(:last-of-type) {
	margin-bottom: 20px;
}
@media (max-width: 900px) {
	.feature5 .header-images {
		min-height: inherit;
		margin-top: 60px;
	}
	.feature5 .heading {
		margin-bottom: 50px;
	}
	.feature5 .flex {
		flex-direction: column;
	}
	.feature5 .centervertical {
		flex-direction: row;
	}
	.feature5 .steps {
		width: 33.33%;
		padding: 0 20px;
	}
	.feature5	.col-5,
	.feature5	.col-6 {
		width: 100%;
	}
}
@media (max-width: 750px) {
  .feature5 .centervertical {
  	flex-wrap: wrap;
  }
  .feature5 .steps:nth-of-type(1) {
  	width: 100%;
  	margin-bottom: 30px;
  }
  .feature5 .steps:not(:nth-of-type(1)) {
  	width: 50%;
  }
}
@media (max-width: 500px) {
	.feature5 .steps:nth-of-type(1) {
		margin-bottom: 0;
	}
  .feature5 .steps:not(:nth-of-type(1)) {
  	width: 100%;
  	margin-top: 30px;
  }
}

.hljs{display:block;overflow-x:auto;padding:0.5em;background:#F0F0F0}.hljs,.hljs-subst{color:#444}.hljs-comment{color:#888888}.hljs-keyword,.hljs-attribute,.hljs-selector-tag,.hljs-meta-keyword,.hljs-doctag,.hljs-name{font-weight:bold}.hljs-type,.hljs-string,.hljs-number,.hljs-selector-id,.hljs-selector-class,.hljs-quote,.hljs-template-tag,.hljs-deletion{color:#880000}.hljs-title,.hljs-section{color:#880000;font-weight:bold}.hljs-regexp,.hljs-symbol,.hljs-variable,.hljs-template-variable,.hljs-link,.hljs-selector-attr,.hljs-selector-pseudo{color:#BC6060}.hljs-literal{color:#78A960}.hljs-built_in,.hljs-bullet,.hljs-code,.hljs-addition{color:#397300}.hljs-meta{color:#1f7199}.hljs-meta-string{color:#4d99bf}.hljs-emphasis{font-style:italic}.hljs-strong{font-weight:bold}
