/*
$palette: (
  brand: #1d395f,
  brandShadow: rgba(29, 57, 95, 0.75),
  brandlight: #F7FAFC, // #F6FAFC, // rheuminfo: #f4f9fc,
  bg: #f7fafc,
  bgOverlay: darken(#f7fafc, 5%), // #f4f4f4
  border: #a4b8c4, // darken(#f7fafc, 15%),
  white: #fff,
  dark: #333,
  text: rgba(0, 0, 0, 0.9),
  gray: rgba(70, 70, 70, 0.8),
  shadow: rgba(0, 0, 0, 0.75),
);
*/
/*
// original working palette
$palette: (
  brand: #1d395f,
  brandShadow: rgba(29, 57, 95, 0.75),
  brandlight: #F7FAFC, // #F6FAFC, // rheuminfo: #f4f9fc,
  bg: #f7fafc,
  bgOverlay: darken(#f7fafc, 5%), // #f4f4f4
  border: darken(#f7fafc, 20%), // darken(#f7fafc, 15%),
  white: #fff,
  dark: #333,
  text: rgba(0, 0, 0, 0.9),
  gray: rgba(70, 70, 70, 0.8),
  shadow: rgba(0, 0, 0, 0.75),
);
*/
.ri-search > input[type=text],
.ri-search > input[type="search"], .medication-filters .medication-class > button {
  border: 2px solid #bfd7e7;
  border-radius: 6px;
}

.ri-hero {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}

code {
  font-family: source-code-pro, Menlo, Monaco, Consolas, "Courier New", monospace;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
  margin-top: 1.75rem;
  margin-bottom: 1.75rem;
  line-height: 1.75rem;
  letter-spacing: -0.04em;
}

h2, .ri-search-results .entry-title {
  font-size: 1.51572rem;
}

h3 {
  font-size: 1.31951rem;
}

h4 {
  font-size: 1rem;
  margin-bottom: 0.875rem;
}

h5 {
  font-size: 0.87055rem;
}

h6 {
  font-size: 0.81225rem;
}

h1 {
  font-size: 1.51572rem;
  margin-top: 1.5rem;
}

@media (min-width: 768px) {
  h1 {
    font-size: 2rem;
    margin-top: 2rem;
    margin-bottom: 1.75rem;
    line-height: 2.25rem;
  }
}

p {
  margin-bottom: 1.25rem;
}

@media (min-width: 768px) {
  p {
    margin-bottom: 1.75rem;
  }
}

p b,
p strong {
  font-weight: 600;
}

a, a:visited {
  color: #315182;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: -0.025em;
}

a:hover, a:visited:hover {
  text-decoration: underline;
}

button {
  letter-spacing: -0.025em;
}

input,
input[type=text],
button {
  font-family: "Open Sans", sans-serif;
  font-size: inherit;
  letter-spacing: -0.01em;
}

ul,
ol {
  margin: 0 0 1.25rem 0;
}

@media (min-width: 768px) {
  ul,
  ol {
    margin: 0 0 1.75rem 0;
  }
}

ul li,
ol li {
  margin: 0 0 0.625rem 1.25rem;
  padding-left: 0.5rem;
}

@media (min-width: 768px) {
  ul li,
  ol li {
    margin: 0 0 0.875rem 1.75rem;
  }
}

@-webkit-keyframes fadeScaleIn {
  0% {
    opacity: 0;
    transform: scale(0.9);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes fadeScaleIn {
  0% {
    opacity: 0;
    transform: scale(0.9);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.modal .modal-body {
  -webkit-animation: fadeScaleIn 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
          animation: fadeScaleIn 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
}

.modal .modal-close {
  -webkit-animation: fadeIn 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
          animation: fadeIn 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
}

*,
*:before,
*:after {
  margin: 0;
  padding: 0;
  box-sizing: inherit;
}

html {
  height: 100%;
  box-sizing: border-box;
  font-size: 125%;
  line-height: 1.75;
  color: rgba(0, 0, 0, 0.9);
  text-rendering: optimizeLegibility;
  scroll-behavior: smooth;
}

body {
  display: flex;
  flex-direction: column;
  margin: 0;
  font-family: "Open Sans", sans-serif;
  letter-spacing: -0.01em;
  background: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-overflow-scrolling: touch;
  min-height: 100%;
  overflow-x: hidden;
  overflow-y: scroll;
}

/*#wrapper {
	display: flex;
	flex-direction: column;
	height: 100vh;
}*/
#header.blur {
  -webkit-filter: blur(10px);
          filter: blur(10px);
}

#header > .header-actions {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: space-between;
  margin: 0 auto;
  padding: 0 0.75rem;
  height: 5rem;
  width: 100%;
  max-width: 46rem;
}

@media (min-width: 768px) {
  #header > .header-actions {
    padding: 0 1rem;
  }
}

#header > .header-actions > .logo-lang {
  display: flex;
  align-items: center;
}

#header > .header-actions > .logo-lang > .logo {
  display: flex;
}

#header > .header-actions > .logo-lang > .logo > a {
  display: block;
  padding: 1rem 0;
}

#header > .header-actions > .logo-lang > .logo > a > img, #header > .header-actions > .logo-lang > .logo > a svg {
  display: block;
  height: 1.25rem;
  max-height: 1.25rem;
}

@media (min-width: 350px) {
  #header > .header-actions > .logo-lang > .logo > a > img, #header > .header-actions > .logo-lang > .logo > a svg {
    height: 1.75rem;
    max-height: 1.75rem;
  }
}

@media (min-width: 400px) {
  #header > .header-actions > .logo-lang > .logo > a > img, #header > .header-actions > .logo-lang > .logo > a svg {
    height: 2rem;
    max-height: 2rem;
  }
}

@media (min-width: 500px) {
  #header > .header-actions > .logo-lang > .logo > a > img, #header > .header-actions > .logo-lang > .logo > a svg {
    height: 2.25rem;
    max-height: 2.25rem;
  }
}

#header > .header-actions > .logo-lang > .language-toggle {
  display: flex;
  align-items: center;
  margin-left: 0.5rem;
  margin-right: 0.5rem;
  padding: 0.75rem 0.25rem;
  line-height: 1;
  border: 0;
  background: transparent;
  color: #315182;
  font-size: 0.85rem;
}

#header > .header-actions > .logo-lang > .language-toggle > span {
  display: block;
  margin-right: 0.25rem;
  text-transform: uppercase;
}

#header > .header-actions > .logo-lang > .language-toggle > svg {
  display: block;
  color: #315182;
}

#header > .header-actions > .logo-lang #lang {
  position: relative;
}

#header > .header-actions > .logo-lang #lang .language-menu {
  display: none;
  opacity: 0;
  position: absolute;
  margin: 0;
  padding-left: 0;
  cursor: pointer;
  z-index: 0;
  top: calc(1rem + 2px);
  left: -2.85rem;
  list-style: none;
  border: 1px solid #385d95;
  background: #315182;
  transition: all 0.2s ease-out;
}

#header > .header-actions > .logo-lang #lang .language-menu[data-expanded=true] {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  z-index: 100;
  opacity: 1;
}

#header > .header-actions > .logo-lang #lang .language-menu > li {
  margin: 0;
  padding: 0;
  border-bottom: 1px solid #385d95;
}

#header > .header-actions > .logo-lang #lang .language-menu > li:first-child {
  border-top: 1px solid #385d95;
}

#header > .header-actions > .logo-lang #lang .language-menu > li > a,
#header > .header-actions > .logo-lang #lang .language-menu > li > a:visited {
  display: block;
  padding: 0.5rem 0.75rem;
  color: #fff;
  text-decoration: none;
}

#header > .header-actions > .logo-lang #lang .language-menu > li > a:hover,
#header > .header-actions > .logo-lang #lang .language-menu > li > a:visited:hover {
  text-decoration: none;
  background: #2f5c9a;
}

#header > .header-actions > .buttons {
  display: flex;
}

#header > .header-actions > .buttons > button {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 2.5rem;
  width: 2.5rem;
  border: 2px solid #315182;
  border-radius: 6px;
  background: #315182;
}

@media (min-width: 375px) {
  #header > .header-actions > .buttons > button {
    width: 3rem;
  }
}

#header > .header-actions > .buttons > button:last-child {
  margin-left: 0.5rem;
}

@media (min-width: 800px) {
  #header > .header-actions > .buttons > button.menu {
    display: none;
  }
}

#header > .header-actions > .buttons > button > svg {
  display: block;
  font-size: 1.5rem;
  color: #fff;
}

#header > .navigation {
  width: 100%;
  background: #315182;
  min-height: 4px;
}

#header > .navigation > nav {
  position: relative;
  margin: 0 auto;
  width: 100%;
  max-width: 46rem;
  padding: 0;
}

#header > .navigation > nav .primary-navigation-menu {
  display: none;
  list-style: none;
  width: 100%;
  margin: 0;
  z-index: 0;
}

#header > .navigation > nav .primary-navigation-menu[data-expanded=true] {
  position: absolute;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  z-index: 100;
  padding: 0.5rem 0;
  background: #315182;
}

@media (min-width: 800px) {
  #header > .navigation > nav .primary-navigation-menu {
    position: relative;
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    flex-wrap: wrap;
    padding: 0;
  }
  #header > .navigation > nav .primary-navigation-menu[data-expanded=true] {
    position: relative;
    flex-direction: row;
    padding: 0;
  }
}

#header > .navigation > nav .primary-navigation-menu > li {
  margin: 0;
  padding: 0;
}

#header > .navigation > nav .primary-navigation-menu > li.current-menu-item > a,
#header > .navigation > nav .primary-navigation-menu > li.current-menu-item > a:visited {
  background: #2f5c9a;
}

#header > .navigation > nav .primary-navigation-menu > li > a,
#header > .navigation > nav .primary-navigation-menu > li > a:visited {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 1rem 0.75rem;
  color: #fff;
  text-decoration: none;
  transition: all 0.2s ease;
  white-space: nowrap;
  letter-spacing: -0.025em;
  font-weight: 600;
  font-size: 0.85rem;
  line-height: 1rem;
}

@media (min-width: 900px) {
  #header > .navigation > nav .primary-navigation-menu > li > a,
  #header > .navigation > nav .primary-navigation-menu > li > a:visited {
    padding: 1rem 1rem;
  }
}

#header > .navigation > nav .primary-navigation-menu > li > a:hover,
#header > .navigation > nav .primary-navigation-menu > li > a:visited:hover {
  text-decoration: none;
  background: #2f5c9a;
}

#content {
  flex: 1 0 auto;
}

#content.blur {
  -webkit-filter: blur(10px);
          filter: blur(10px);
}

#content > main {
  display: block;
  margin: 0 auto;
  padding: 0 0.75rem;
  max-width: 34.5rem;
}

@media (min-width: 768px) {
  #content > main {
    padding: 0 1rem;
  }
}

#footer {
  margin-top: 2rem;
  padding: 2rem 0;
  background: #333;
}

#footer.blur {
  -webkit-filter: blur(10px);
          filter: blur(10px);
}

#footer > .footer-content {
  width: 100%;
  max-width: 46rem;
  margin: 0 auto;
  padding: 0 1rem;
  color: #fff;
  font-size: 0.85rem;
}

.modal {
  display: none;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
  overflow-y: scroll;
  transition: all 0.3s ease;
}

.modal.open {
  display: flex;
  flex-direction: column;
}

.modal .modal-overlay {
  display: block;
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 5;
  background-color: rgba(28, 46, 74, 0.95);
}

.modal .modal-close {
  position: absolute;
  top: 5px;
  right: 5px;
  display: flex;
  align-items: center;
  color: #fff;
  background: transparent;
  font-size: 200%;
  border: 0;
  padding: 1rem;
  z-index: 15;
  font-size: 1.25rem;
  line-height: 1.25rem;
}

.modal .modal-close > .label {
  display: block;
  margin-right: 0.5rem;
  text-transform: uppercase;
}

.modal .modal-close > .close-icon {
  display: block;
}

.modal .modal-body {
  display: flex;
  justify-content: center;
  position: relative;
  margin: auto 0.5rem;
  z-index: 10;
}

@media (min-width: 768px) {
  .modal .modal-body {
    margin: auto 1rem;
  }
}

.modal .modal-content {
  width: 100%;
  max-width: 800px;
}

.ri-search {
  display: flex;
  margin: 0 auto;
}

@media (min-width: 400px) {
  .ri-search {
    width: 90%;
  }
}

@media (min-width: 768px) {
  .ri-search {
    width: 85%;
  }
}

.ri-search > input[type=text],
.ri-search > input[type="search"] {
  border-color: #bfd7e7;
  flex: 1;
  border-radius: 6px;
  padding: 0 0.75rem;
  margin-right: 0.5rem;
  background: #fff;
  transition: all 300ms ease;
  min-width: 0;
  height: 2.5rem;
  -webkit-appearance: textfield;
  /*@media (min-width: 600px) {
      padding: 0 0.75rem;
    }*/
}

.ri-search > input[type=text]::-webkit-input-placeholder,
.ri-search > input[type="search"]::-webkit-input-placeholder {
  font-style: italic;
  color: #385d95;
  transition: color 50ms ease;
}

.ri-search > input[type=text]::-moz-placeholder,
.ri-search > input[type="search"]::-moz-placeholder {
  font-style: italic;
  color: #385d95;
  transition: color 50ms ease;
}

.ri-search > input[type=text]:-ms-input-placeholder,
.ri-search > input[type="search"]:-ms-input-placeholder {
  font-style: italic;
  color: #385d95;
  transition: color 50ms ease;
}

.ri-search > input[type=text]::-ms-input-placeholder,
.ri-search > input[type="search"]::-ms-input-placeholder {
  font-style: italic;
  color: #385d95;
  transition: color 50ms ease;
}

.ri-search > input[type=text]::placeholder,
.ri-search > input[type="search"]::placeholder {
  font-style: italic;
  color: #385d95;
  transition: color 50ms ease;
}

.ri-search > input[type=text]:focus,
.ri-search > input[type="search"]:focus {
  border-color: #315182;
  outline: 0;
}

.ri-search > input[type=text]:focus::-webkit-input-placeholder,
.ri-search > input[type="search"]:focus::-webkit-input-placeholder {
  color: #edf1f8;
}

.ri-search > input[type=text]:focus::-moz-placeholder,
.ri-search > input[type="search"]:focus::-moz-placeholder {
  color: #edf1f8;
}

.ri-search > input[type=text]:focus:-ms-input-placeholder,
.ri-search > input[type="search"]:focus:-ms-input-placeholder {
  color: #edf1f8;
}

.ri-search > input[type=text]:focus::-ms-input-placeholder,
.ri-search > input[type="search"]:focus::-ms-input-placeholder {
  color: #edf1f8;
}

.ri-search > input[type=text]:focus::placeholder,
.ri-search > input[type="search"]:focus::placeholder {
  color: #edf1f8;
}

.ri-search > button[type=submit] {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  min-width: 0;
  color: #fff;
  border: 2px solid #315182;
  border-radius: 6px;
  font-weight: 600;
  background: #315182;
}

.ri-search > button[type=submit] > svg {
  display: block;
  font-size: 1.5rem;
  color: #fff;
}

#search {
  color: #fff;
}

#search .search-form {
  display: flex;
  justify-content: center;
  margin-bottom: 20%;
  width: 100%;
  font-size: 110%;
}

@media (min-width: 768px) {
  #search .search-form {
    font-size: 35px;
  }
}

#search .search-form > label {
  display: none;
}

#search .search-form > input[type="search"] {
  display: block;
  border: 0;
  border-radius: 6px;
  padding: 0.25rem 0.5rem;
  width: 75%;
  max-width: 46rem;
  margin: 0.5rem;
  letter-spacing: -0.03em;
  color: #315182;
  outline: none;
  -webkit-appearance: textfield;
}

@media (min-width: 768px) {
  #search .search-form > input[type="search"] {
    padding: 0.25rem 0.75rem;
  }
}

#search .search-form > button[type="submit"] {
  margin: 0.5rem 0.5rem 0.5rem 0;
  padding: 0.75rem;
  background: #5982c0;
  border: none;
  border-radius: 6px;
  color: #fff;
}

@media (min-width: 350px) {
  #search .search-form > button[type="submit"] {
    margin: 0.5rem;
    padding: 1rem;
  }
}

#search .search-form > button[type="submit"] > svg {
  display: block;
  font-size: 2rem;
}

#search .search-form .search-instructions {
  flex: 1 0 100%;
  text-align: left;
  margin-left: 12%;
}

.medication-filters {
  display: flex;
  justify-content: space-between;
  flex-flow: row wrap;
  margin-bottom: 1.5rem;
}

.medication-filters .medication-sort {
  display: flex;
  z-index: 0;
}

.medication-filters .medication-sort > button {
  display: block;
  padding: 0.5rem 1rem;
  color: #315182;
  background: #fff;
  z-index: 0;
  cursor: pointer;
  letter-spacing: -0.04em;
  line-height: 1.25;
}

.medication-filters .medication-sort > button:focus {
  z-index: 1;
}

.medication-filters .medication-sort > button[data-selected=true] {
  font-weight: 600;
  color: #fff;
  background: #315182;
  z-index: 1;
}

.medication-filters .medication-sort > button.trade-name {
  border-top: 2px solid #315182;
  border-left: 2px solid #315182;
  border-right: 1px solid #315182;
  border-bottom: 2px solid #315182;
  border-top-left-radius: 6px;
  border-bottom-left-radius: 6px;
}

.medication-filters .medication-sort > button.generic-name {
  border-top: 2px solid #315182;
  border-right: 2px solid #315182;
  border-left: 1px solid #315182;
  border-bottom: 2px solid #315182;
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px;
}

.medication-filters .medication-class {
  display: flex;
  position: relative;
  z-index: 0;
}

.medication-filters .medication-class[data-open=true] {
  z-index: 10;
}

.medication-filters .medication-class[data-open=true] > button {
  background: #e4eef5;
  border-bottom: 0;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  outline: none;
}

.medication-filters .medication-class > button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 1rem;
  z-index: 1;
  font-size: 1rem;
  font-weight: 600;
  background: #fff;
  color: #315182;
  cursor: pointer;
}

.medication-filters .medication-class > button > span {
  margin-right: 0.5rem;
}

.medication-filters .medication-class > button > span, .medication-filters .medication-class > button svg {
  display: block;
}

.section-landing ul.medications[data-sort="trade"] > li > a > .generic-label {
  display: none;
}

.section-landing ul.medications[data-sort="generic"] > li > a > .trade-label {
  display: none;
}

.section-landing ul.diseases,
.section-landing ul.medications,
.section-landing ul.common-tests,
.section-landing ul.lifestyle,
.section-landing ul.physician-tools {
  list-style: none;
  margin: 0 0 3rem 0;
}

.section-landing ul.diseases > li,
.section-landing ul.medications > li,
.section-landing ul.common-tests > li,
.section-landing ul.lifestyle > li,
.section-landing ul.physician-tools > li {
  margin: 0 0 0.5rem 0;
  padding: 0;
}

.section-landing ul.diseases > li > a,
.section-landing ul.medications > li > a,
.section-landing ul.common-tests > li > a,
.section-landing ul.lifestyle > li > a,
.section-landing ul.physician-tools > li > a {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: space-between;
  padding: 0.875rem;
  border: 2px solid #bfd7e7;
  border-radius: 6px;
  color: #315182;
  background: #f7fafc;
  line-height: 1.25;
  font-weight: 400;
  transition: all 0.2s ease;
}

.section-landing ul.diseases > li > a:visited,
.section-landing ul.medications > li > a:visited,
.section-landing ul.common-tests > li > a:visited,
.section-landing ul.lifestyle > li > a:visited,
.section-landing ul.physician-tools > li > a:visited {
  color: #315182;
}

.section-landing ul.diseases > li > a:hover,
.section-landing ul.medications > li > a:hover,
.section-landing ul.common-tests > li > a:hover,
.section-landing ul.lifestyle > li > a:hover,
.section-landing ul.physician-tools > li > a:hover {
  background: #e4eef5;
  text-decoration: none;
}

.section-landing ul.diseases > li > a:hover > svg,
.section-landing ul.medications > li > a:hover > svg,
.section-landing ul.common-tests > li > a:hover > svg,
.section-landing ul.lifestyle > li > a:hover > svg,
.section-landing ul.physician-tools > li > a:hover > svg {
  color: #88b4d2;
}

.section-landing ul.diseases > li > a > svg,
.section-landing ul.medications > li > a > svg,
.section-landing ul.common-tests > li > a > svg,
.section-landing ul.lifestyle > li > a > svg,
.section-landing ul.physician-tools > li > a > svg {
  display: block;
  color: #bfd7e7;
}

.ri-hero {
  background: #ecf3f8;
}

.ri-hero .ri-hero-content {
  margin: 0 auto 2rem;
  max-width: 34.5rem;
  padding: 2rem 1rem 2.5rem;
}

.ri-hero .ri-hero-content h1.ri-intro {
  margin-top: 0;
  text-align: center;
}

.ri-hero .ri-hero-content > nav.ri-home-navlinks {
  margin-top: 2.25rem;
}

.ri-hero .ri-hero-content > nav.ri-home-navlinks > ul {
  display: flex;
  flex-flow: row wrap;
  list-style: none;
  margin: -0.25rem;
}

.ri-hero .ri-hero-content > nav.ri-home-navlinks > ul > li {
  flex: 1 1 calc(50% - 0.5rem);
  margin: 0.25rem;
  padding: 0;
  min-width: 12rem;
}

.ri-hero .ri-hero-content > nav.ri-home-navlinks > ul > li > a, .ri-hero .ri-hero-content > nav.ri-home-navlinks > ul > li a:visited {
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
  justify-content: center;
  padding: 0.75rem;
  border: 2px solid #bfd7e7;
  color: #315182;
  text-align: center;
  border-radius: 6px;
  font-weight: 400;
  background: #fff;
  transition: all 0.2s ease;
}

.ri-hero .ri-hero-content > nav.ri-home-navlinks > ul > li > a:active, .ri-hero .ri-hero-content > nav.ri-home-navlinks > ul > li > a:hover, .ri-hero .ri-hero-content > nav.ri-home-navlinks > ul > li a:visited:active, .ri-hero .ri-hero-content > nav.ri-home-navlinks > ul > li a:visited:hover {
  text-decoration: none;
  background: #f7fafc;
}

.ri-hero .ri-hero-content > nav.ri-home-navlinks > ul > li > a > svg, .ri-hero .ri-hero-content > nav.ri-home-navlinks > ul > li a:visited > svg {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1.75rem;
}

@media (min-width: 768px) {
  .ri-hero .ri-hero-content > nav.ri-home-navlinks > ul > li > a > svg, .ri-hero .ri-hero-content > nav.ri-home-navlinks > ul > li a:visited > svg {
    font-size: 2rem;
  }
}

.ri-hero .ri-hero-content > nav.ri-home-navlinks > ul > li > a > span, .ri-hero .ri-hero-content > nav.ri-home-navlinks > ul > li a:visited > span {
  display: block;
  line-height: 1;
}

/*
.ri-topics {
  margin-top: 2.25rem;
  margin-bottom: 2rem;

  > ul {
    display: flex;
    flex-flow: row wrap;
    list-style: none;
    margin: -0.25rem;

    > li {
      flex: 1 1 calc(50% - 0.5rem);
      margin: 0.25rem;
      min-width: 12rem; // don't let 'living with arthritis' wrap to two lines

      > a, a:visited {
        display: flex;
        align-items: center;
        justify-content: center;

        height: 3rem;
        border: 2px solid palette(border);
        color: palette(brand);
        text-align: center;
        line-height: $rhythmUnitLess;
        border-radius: $borderRadius;
        font-weight: 400;

        @media (min-width: $break) {
          // border-color: palette(brand);
          // background: palette(brand);
          // color: palette(white);
        }

        &:active, &:hover {
          text-decoration: none;
          background: palette(bgOverlay);

          @media (min-width: $break) {
            // border-color: lighten(palette(brand), 5%);
            // background: lighten(palette(brand), 5%);
          }
        }
      }
    }
  }
}
*/
.ri-search-results .entry-title span {
  font-style: italic;
}

.ri-search-results .ri-highlight {
  background: #ffffb2;
}

.entry-type {
  display: flex;
  align-items: center;
  margin-top: 2rem;
  font-size: 0.85rem;
  color: #315182;
}

@media (min-width: 800px) {
  .entry-type {
    display: none;
  }
}

.entry-type > svg {
  display: block;
  margin-right: 0.25rem;
}

.entry-type > a, .entry-type a:visited {
  display: block;
  font-weight: 400;
  text-transform: uppercase;
}

/*# sourceMappingURL=style.css.map */
