@import url('https://rsms.me/inter/inter.css');

html, body { 
  font-family: 'Inter', sans-serif; 
  -webkit-font-smoothing: antialiased;
}

@supports (font-variation-settings: normal) {
  html, body { 
    font-family: 'Inter var', sans-serif;
  }
}

button, input {
	font-family: 'Inter var', sans-serif;
}

/* Navbar */
.navbar .brand {
  font-weight: 500;
}

.navbar-inner {
  box-shadow: none;
  -webkit-box-shadow: none;
}

/* Search */

#docsSearch {
  background: none;
  border-bottom: none;
  padding: 2.5em 0;
}

#searchBar button {
  text-shadow: none;
}

#searchBar .search-query {
  border-radius: 15px;
}

/* Category List */

.category-list .category {
  border-radius: 15px;
}

.category-list h3 {
  font-weight: 500;
}

@media (max-width: 768px) and (max-width: 600px) {
  .category-list .category, .category-list.two-col .category {
    margin-bottom: 10px;
  }
}

/* Sidebar */

#sidebar h3 {
  display: none;
}

#sidebar .nav-list a, 
#sidebar .nav-list .active a, 
#sidebar .nav-list .active a:hover, 
#sidebar .nav-list .active a:focus {
  font-size: 1.3em;
  font-weight: normal;
}

#sidebar .nav-list .active a .icon-arrow, 
#sidebar .nav-list .active a:hover .icon-arrow, 
#sidebar .nav-list .active a:focus .icon-arrow {
  display: none;
}

/* Article: content wrapper */

.contentWrapper, .related {
	background-color: #FFF;
    border: 0;
    border-radius: 4px;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px, rgb(241, 243, 245) 0px 5px 20px 0px, rgba(0, 0, 0, 0.05) 0px 3px 3px 0px;
    padding: 30px;
    word-break: break-word;
}

.contentWrapper.withRelated {
  margin-bottom: 30px;
}

@media screen and (min-width: 768px) and(max-width: 1000px) {
  .contentWrapper {
    padding: 50px 55px;
  }
}

@media screen and (min-width: 1000px) {
  .contentWrapper {
    padding: 70px 90px;
  }
}

.contentWrapper h1 {
  font-size: 1.5em;
  font-weight: 800;
  margin-bottom: 1.5em;
  letter-spacing: 0px;
}

@media screen and (min-width: 1000px) {
  .contentWrapper h1 {
    font-size: 2em;
  }
}

#fullArticle p, 
#fullArticle ul, 
#fullArticle ol, 
#fullArticle li, 
#fullArticle div, 
#fullArticle blockquote, 
#fullArticle dd, 
#fullArticle table {
  color: rgb(23, 26, 28);
  line-height: 1.5em;
  font-size: 16px;
}

#fullArticle ol {
  padding-left: 0.5em;
}

#fullArticle ul {
  list-style: none;
}

#fullArticle ul li::before {
  content: "•";
  color: #175abd;
  display: inline-block;
  width: 1em;
  margin-left: -1em;
} 

#fullArticle .title {
  margin-bottom: 1.5em;
}

#fullArticle img {
  border: none;
  width: 100%;
  margin: 10px auto;
  padding: 0;
  border-radius: 10px;
  box-shadow: 0 2px 14px rgba(0,0,0,.04),0 8px 40px rgba(0,0,0,.04);
}

video {
  width: 100%;
  margin: 10px auto;
  border-radius: 10px;
  box-shadow: 0 2px 14px rgba(0,0,0,.04),0 8px 40px rgba(0,0,0,.04);
  aspect-ratio: auto 5/3;
}

.callout-box {
  border: 1px rgba(235, 236, 237, 0.3);
  border-radius: 14px;
  margin: 20px 0;
  padding: 17px;
  font-size: 92%;
  background-color: rgba(235, 236, 237, 0.3);
}

.articleFoot p, .articleFoot time {
  font-family: 'Inter var', sans-serif; 
  font-style: normal;
}