/* Mobile Menu (needed for slideout.js) */
.slideout-menu {
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  z-index: 0;
  width: 256px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  display: none;
}

.slideout-panel {
  position: relative;
  z-index: 1;
}

.slideout-open,
.slideout-open body,
.slideout-open .slideout-panel {
  overflow: hidden;
}

.slideout-open .slideout-menu {
  display: block;
}

/**
 * =====================================
 * Mobile, small device styles (default)
 * =====================================
 */
/*
 * HEADER
 */
/* Bootstrap container div */
.header-container {
  padding: 0;
  position: fixed;
  width: 100%;
  min-height: 60px;
  text-align: center;
  z-index: 999;
}

.desktop-header {
  display: none;
}

.desktop-header-nav {
  display: none;
}
.desktop-header-nav .header-shadow {
  box-shadow: 0 5px 3px rgba(0, 0, 0, 0.5);
  height: 10px;
  margin-top: -10px;
  width: 100%;
}

.mobile-header {
  display: none;
}

.toggle-button {
  margin-top: 17px;
  font-size: 26px;
  color: #fff;
  float: right;
  cursor: pointer;
}

.menu-burger {
  float: left;
  display: inline-block;
}

.glyphicon-remove {
  display: inline-block;
  float: right;
  color: #336aa1;
}

.logo-section {
  padding: 0 12px;
  text-align: center;
  background-color: #336aa1;
}

.logo-title {
  margin: 0;
  margin-bottom: 10px;
  max-width: 80%;
  display: inline-block;
}
.logo-title .logo-icon {
  max-height: 60px;
  max-width: 100%;
  width: auto;
}

.logo-section a {
  color: #fff;
}

.logo-section a:hover {
  text-decoration: none;
}

.logo-title h1 {
  margin: 0;
  font-weight: 600;
}

#menu {
  background-color: #cbedf9;
}

/* Mobile nav wrapper */
#menu header {
  padding: 0 20px;
  margin: 20px 5px;
}

.mobile-menu-header {
  color: #336aa1;
  margin: 0;
  display: inline-block;
  font-weight: bold;
}

#menu header .toggle-button {
  margin: 0;
}

.mobile-nav {
  margin-top: 20px;
}
.mobile-nav .nav-item a {
  color: #336aa1;
}

.mobile-nav ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.nav-item {
  margin-bottom: 10px;
  font-size: 16px;
}

.nav-item a {
  color: #336aa1;
  text-decoration: none;
}

@media (max-width: 1200px) {
  .mobile-header {
    display: block;
  }

  .hamburger-button {
    position: relative;
    width: 25px;
    height: 4px;
    border-radius: 1px;
    background: white;
    float: right;
    margin-top: 25px;
  }
  .hamburger-button::after {
    content: "";
    position: absolute;
    top: -10px;
    left: 0;
    width: 25px;
    height: 4px;
    border-radius: 1px;
    background: white;
  }
  .hamburger-button::before {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 25px;
    height: 4px;
    border-radius: 1px;
    background: white;
  }
}
/**
 * =====================================
 * Larger desktop styles
 * =====================================
 */
@media (min-width: 1200px) {
  .hide-header {
    display: none;
  }

  .header-container {
    min-height: 110px;
    transition: min-height 0.3s;
  }

  .small-header {
    height: 40px;
    min-height: 0;
  }

  .mobile-header {
    display: none;
  }

  .desktop-header {
    display: block;
  }

  .logo-section {
    padding: 5px 0 10px;
  }

  .logo-title {
    margin: 0;
  }
  .logo-title .logo-icon {
    max-height: 80px;
  }

  .desktop-header-nav {
    width: 100%;
    display: inline-block;
  }

  .small-header .desktop-header-nav {
    margin: 0;
  }

  .desktop-header-nav ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: inline-block;
  }

  .nav-item {
    font-size: 15px;
    display: inline;
    padding: 8px 9px;
    float: left;
    background-color: #f5b619;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
    box-shadow: 5px 5px 3px rgba(0, 0, 0, 0.5);
  }
  .nav-item:hover .dropdown {
    height: 240px;
    visibility: visible;
    opacity: 1;
  }

  .dropdown {
    display: flex;
    flex-direction: column;
    height: 0px;
    transition: all 0.4s ease-in-out;
    visibility: hidden;
    opacity: 0;
    overflow: hidden;
    justify-content: space-evenly;
  }
  .dropdown-item {
    display: inline-block;
  }

  .nav-item.collectible {
    background-color: #f7c240;
  }

  .nav-item.hobby {
    background-color: #f8cc5d;
  }

  .nav-item a {
    text-decoration: none;
  }

  .nav-item span {
    position: relative;
  }

  .nav-item span::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 1px;
    bottom: 0;
    left: 0;
    background-color: #124680;
    visibility: hidden;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transition: transform 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out;
  }

  .nav-item span:hover::before {
    visibility: visible;
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
}
.footer {
  width: 100%;
  bottom: 0;
  position: absolute;
}

.footer-container {
  background-color: #336aa1;
  border-top: 4px solid #f5b619;
  padding: 20px 5px 40px;
  text-align: center;
}
.footer-container .logo-icon {
  max-height: 60px;
}

.footer-wrapper {
  padding: 20px 0;
  min-height: 30px;
  text-align: center;
}

#footer-copyright-text {
  color: #fff;
}

#policy-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
#policy-links ul li {
  padding-right: 15px;
  display: inline;
}
#policy-links ul li a {
  color: #fff;
}

/**
 * =====================================
 * Mobile, small device styles (default)
 * =====================================
 */
.article-column-content {
  position: relative;
  margin-bottom: 30px;
}
.article-column-content .title-font {
  font-size: 26px;
}
.article-column-content.featured-article {
  margin-bottom: 0;
  height: 300px;
}
.article-column-content.featured-article .title-font {
  font-size: 36px;
  line-height: 42px;
}

.img-div {
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  border: 1px solid #cbedf9;
}

.featured-article-img-wrapper {
  width: 100%;
  height: 100%;
}

.featured-article-text-wrapper {
  height: inherit;
  background-color: #cbedf9;
  text-align: center;
  font-size: 16px;
  border-bottom: #fff 30px solid;
}
.featured-article-text-wrapper p {
  padding: 20px;
}

.featured-article-title-wrapper {
  font-size: 32px;
  line-height: 32px;
  padding: 20px;
}

.featured-article-byline-wrapper {
  font-size: 14px;
}

.home-article-img-wrapper {
  width: 100%;
  height: 360px;
}

.home-article-text-wrapper {
  min-height: 145px;
  padding: 15px 0;
  background-color: #cbedf9;
  position: relative;
}

.home-article-category-wrapper {
  font-size: 14px;
  width: 100%;
  text-align: center;
}

.home-article-title-wrapper {
  padding: 0 10px;
  font-size: 20px;
  width: 100%;
  text-align: center;
}

.featured-article-title-wrapper a,
.featured-article-category-wrapper a,
.home-article-category-wrapper a,
.home-article-title-wrapper a {
  color: #336aa1;
}

@media (min-width: 992px) {
  .article-column-content.featured-article {
    margin-bottom: 30px;
  }

  .featured-article-text-wrapper {
    border-bottom: 0;
    margin-left: -30px;
  }
}
/**
 * =====================================
 * Larger desktop styles
 * =====================================
 */
@media (min-width: 1200px) {
  .article-column-content,
.featured-article {
    margin-bottom: 0;
  }

  .featured-article {
    height: 400px;
  }

  .home-article {
    padding-bottom: 0;
  }
}
/**
 * =====================================
 * Mobile, small device styles (default)
 * =====================================
 */
#category-content h1 {
  text-transform: uppercase;
  border-bottom: 2px solid #f5b619;
  padding-left: 5px;
}
#category-content ul {
  padding: 0;
  margin: 20px 0 0;
  list-style: none;
}
#category-content li {
  margin: 15px 0;
}
#category-content li:last-child .category-article {
  border-bottom: 0;
}

.category-article {
  height: 200px;
}

.category-article-img-wrapper {
  width: 30%;
  display: inline-block;
}

.category-article-img {
  width: 100%;
  min-height: 200px;
  background-size: cover;
  background-repeat: no-repeat;
  border: 1px solid #cbedf9;
}

.category-article-text-wrapper {
  width: 70%;
  height: 200px;
  padding: 5px 10px;
  background-color: #cbedf9;
  display: inline-block;
  float: right;
}

.category-article-title {
  padding: 15px 0;
}
.category-article-title .title-font {
  font-size: 26px;
}

.category-article-description {
  font-size: 12px;
}

#category-sidebar h3 {
  margin: 0 0 25px 5px;
  border-bottom: 2px solid #f5b619;
}
#category-sidebar .category-article {
  height: auto;
  box-shadow: none;
  max-width: 450px;
  margin: 0 auto;
}
#category-sidebar .category-article-title {
  padding-top: 0;
}
#category-sidebar .category-article-img-wrapper {
  width: 100%;
  display: block;
}
#category-sidebar .category-article-text-wrapper {
  background-color: #fff;
  float: none;
  height: auto;
  margin-bottom: 20px;
  padding: 0 5px;
  text-align: left;
  width: 100%;
}

/**
 * =====================================
 * Larger desktop styles
 * =====================================
 */
@media (min-width: 1200px) {
  .category-article-img {
    min-height: 200px;
  }

  .category-article-text-wrapper {
    padding: 10px 15px;
  }

  .category-article-description {
    font-size: 14px;
  }
}
/**
 * =====================================
 * Mobile, small device styles (default)
 * =====================================
 */
#article-top {
  margin-bottom: 20px;
}

#breadcrumbs {
  margin: 0 0 10px;
  font-size: 16px;
}
#breadcrumbs ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
#breadcrumbs ul li {
  display: inline;
  font-family: "Open Sans", sans-serif;
}
#breadcrumbs ul li a {
  text-decoration: none;
  color: #336aa1;
}

#article-title {
  margin: 0 0 20px;
}
#article-title h1 {
  font-size: 32px;
  font-weight: bold;
}

.article-image {
  margin-bottom: 10px;
  text-align: center;
}
.article-image .image-wrapper {
  text-align: center;
  display: block;
}
.article-image img {
  display: block;
}
.article-image .article-image-attribution {
  font-size: 12px;
  padding-top: 5px;
  color: #9e9d9d;
  text-align: right;
  display: inline-block;
}

.dotted-gradient {
  position: relative;
  display: inline-block;
}

#article-content {
  margin-bottom: 20px;
}
#article-content h3,
#article-content h4 {
  font-size: 26px;
  font-weight: bold;
  margin: 20px 0 10px;
  letter-spacing: 1px;
}
#article-content h4 {
  font-size: 20px;
}
#article-content .section-1 h3 {
  margin-top: 0;
}
#article-content p a {
  text-decoration: underline;
}

.warning,
.tip,
.references,
.author,
.resources,
.things-needed {
  font-size: 16px;
  padding: 0 10px;
  margin-bottom: 30px;
  border: 2px solid #cbedf9;
}
.warning h4,
.tip h4,
.references h4,
.author h4,
.resources h4,
.things-needed h4 {
  display: inline-block;
  font-weight: bold;
  padding-top: 10px;
  margin-top: 0 !important;
}
.warning p,
.tip p,
.references p,
.author p,
.resources p,
.things-needed p {
  margin-top: 12px;
}

.author-img-wrapper {
  display: inline-block;
  float: left;
  margin: 18px 10px 0 0;
  width: 60px;
}

.author-img {
  width: 60px;
  height: 60px;
  background-size: cover;
  background-repeat: no-repeat;
}

.author-about-wrapper {
  margin-left: 5px;
  width: 70%;
  display: inline-block;
}

#article-sidebar h3 {
  border-bottom: 2px #f5b619 solid;
}

.radlinks h3 {
  font-weight: bold;
}
.radlinks ul {
  margin: 0;
  padding: 0;
}
.radlinks li {
  list-style: none;
  margin-left: 0;
  padding-left: 0;
  margin-bottom: 10px;
}
.radlinks .radlinks-content {
  margin: 10px 0 20px;
}

.related-content .related-content-header {
  font-weight: bold;
}
.related-content ul {
  padding: 0;
  margin: 20px 0 0;
  list-style: none;
}
.related-content ul li:last-child .related-content-article {
  border-bottom: 0;
}
.related-content .related-content-article {
  margin: 10px 0;
  height: 85px;
}
.related-content .related-content-article-img-wrapper {
  width: 30%;
  display: inline-block;
}
.related-content .related-content-article-img {
  width: 100%;
  min-height: 85px;
  background-size: cover;
  background-repeat: no-repeat;
}
.related-content .related-content-title-wrapper {
  width: 70%;
  height: inherit;
  padding: 10px;
  background-color: #cbedf9;
  display: inline-block;
  float: right;
}
.related-content .related-content-article-title {
  font-size: 15px;
}
.related-content .related-content-article-title a {
  color: #000;
}

.content-container .img-annotation-arrow svg {
  fill: #f5b619;
}
.content-container .img-annotation-dot {
  background-color: #f5b619;
}
.content-container .img-annotation-text {
  border-color: #336aa1;
}

/**
 * =====================================
 * Larger desktop styles
 * =====================================
 */
@media (min-width: 1200px) {
  #article-title {
    text-align: left;
  }

  #article-content {
    padding: 0 5%;
  }

  .author-about-wrapper {
    width: 80%;
    margin-left: 5px;
  }
}
@media (max-width: 768px) {
  .content-container .row:first-child {
    margin-bottom: 45px;
  }
}
.center-block {
  max-width: 100%;
}

@media (min-width: 1280px) {
  .content-container #widgets {
    left: calc(50vw - 640px);
    bottom: 15px;
  }
}
@media (min-width: 1200px) and (max-width: 1279px) {
  .content-container #widgets {
    left: 0;
  }
}
@media (min-width: 651px) and (max-width: 1279px) {
  .article-main-col {
    padding-left: 50px;
  }
}
@media (min-width: 651px) and (max-width: 992px) {
  .sidebar-col {
    margin-left: 50px;
  }

  .content-container #widgets {
    left: 0;
  }
}
#rad-content-related-articles {
  margin-top: 10px;
}

#rad-content-related-articles h3 {
  margin-bottom: 10px;
}

#rad-content-related-articles ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.radlinks a,
#rad-content-related-articles li a {
  color: #c0392b;
}

.rad-content-article-title {
  font-family: Verdana;
  margin-bottom: 5px;
  font-size: 18px;
  font-style: italic;
  text-decoration: underline;
  letter-spacing: 1px;
  color: #c0392b;
}

/**
 * =====================================
 * Mobile, small device styles (default)
 * =====================================
 */
/* Rad Content */
.google .title-section {
  font-family: inherit;
  margin-bottom: 5px;
  font-size: 16px;
  text-align: right;
}

.google .title {
  font-family: Verdana;
  margin-bottom: 5px;
  font-size: 18px;
  font-style: italic;
  text-decoration: underline;
  letter-spacing: 1px;
  color: #c0392b;
  text-align: left;
}

.google .ad-content {
  margin: 0 0 10px;
}

.google .url {
  color: #333;
  font-weight: normal;
  font-family: inherit;
}

/* Inline Ad */
#google-single {
  margin-top: 1px;
  margin-bottom: 10px;
}

#google-single .google .label::after {
  content: "\a\a";
  white-space: pre;
}

#google-article-block .google .label,
#google-single .google .label {
  font-family: "Open Sans", "Helvetica Neue", "Arial", sans-serif;
  font-size: 16px;
  font-weight: 400;
  padding: 0;
  display: block;
  line-height: 1.23em;
  text-align: left;
  white-space: nowrap;
  vertical-align: top;
  border-radius: 0;
  margin-top: -4px;
}

#google-article-block .title-section .title,
#google-single .title-section .title {
  font-family: Verdana;
  margin-bottom: 5px;
  font-size: 18px;
  font-style: italic;
  text-decoration: underline;
  letter-spacing: 1px;
  color: #c0392b;
}

#google-single .url {
  font-size: 13px;
  color: #333;
}

/* Google Block Small Screen */
#google-mobile-leaderboard {
  display: none;
  background: #fff;
  text-align: center;
  margin: -10px 0 10px;
  height: 50px;
  border-bottom: 1px solid #ccc;
}

#google-mobile-leaderboard iframe {
  margin: 0 auto;
}

/* Google Ads Override -
 Optimizely Winner [https://www.optimizely.com/edit?experiment_id=2235201132] */
#google-article-block {
  background: none;
  margin-bottom: 2em;
  padding: 0;
  margin-top: -9px;
}

#google-article-block .google {
  letter-spacing: 0.05em;
}

.google .label a {
  color: #333;
  margin: 0;
}

#google-article-block .ad-content {
  border-bottom: 2px solid #ccc;
  margin: 0;
  padding: 0.75em 0 0;
  clear: both;
}

#google-article-block .ad-content.even {
  background-color: #f7f7f7;
}

#google-article-block .title-section {
  font-style: italic;
  margin: 0 10px 0 0;
  text-decoration: underline;
  letter-spacing: 0.1em;
  font-size: 17px;
  text-align: right;
}

#google-article-block .ad-cell {
  display: block;
  margin: 1em;
}

#google-article-block .ad-text {
  display: inline;
  margin: 0;
  padding: 0;
}

#google-article-block .ad-line {
  display: block;
}

#google-article-block .url {
  color: #000;
  display: block;
  text-decoration: none;
  margin-top: 0.33em;
  font-family: inherit;
}

/* Google Display Ads */
.google-display-ad-mobile,
.google-display-ad-desktop-leaderboard {
  text-align: center;
}

.google-display-ad-mobile {
  margin-bottom: 10px;
}

.google-display-ad-desktop-right {
  margin-bottom: 20px;
}

.leaderboard-ad-wrapper {
  margin-bottom: 30px;
}

/**
 * =====================================
 * Tablet, medium device styles
 * =====================================
 */
@media (min-width: 768px) {
  .google .title-section,
#google-article-block .title-section {
    text-align: left;
  }
}
/**
 * =====================================
 * Mobile, small device styles (default)
 * =====================================
 */
#not-found-content h3 {
  margin-top: 10px;
}

#not-found-content span {
  font-size: 20px;
  margin-top: 10px;
  display: block;
}

.about h2 {
  margin: 20px auto;
}
.about__header {
  text-align: center;
  color: #336aa1;
  font-family: "Nunito Sans", sans-serif;
  font-size: 24px;
}
.about__contributors {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.about__contributors--item {
  width: 250px;
  height: 390px;
  margin: 10px;
  border-radius: 4px;
  box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.07);
  position: relative;
  overflow: hidden;
  transition: 0.3s all ease-in-out;
}
.about__contributors--item-top {
  position: absolute;
  top: 0;
  left: 0;
  height: 100px;
  width: 100%;
  text-align: center;
  background: #336aa1;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
}
.about__contributors--item-top img {
  width: auto;
  height: 75px;
  width: 75px;
  border-radius: 50%;
  box-shadow: 0 0 10px 1px rgba(0, 0, 0, 0.3);
}
.about__contributors--item-top-name {
  font-size: 16px;
  color: white;
}
.about__contributors--item-top-name span {
  display: block;
}
.about__contributors--item-bottom {
  position: absolute;
  top: 105px;
  left: 0;
  height: 290px;
  padding: 15px;
  font-family: "Lato", sans-serif;
}
.about__contributors--item-bottom-summary {
  font-size: 12px;
  font-weight: 200;
  line-height: 1.5;
  color: black;
}
.about__contributors--item-bottom-social {
  position: absolute;
  bottom: 15px;
  right: 15px;
  font-size: 12px;
  display: flex;
  color: #336aa1;
}
.about__contributors--item-bottom-social-icon:nth-child(2) {
  margin-left: 10px;
}
.about__contributors--item:hover {
  transform: translateY(-2px);
  box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.17);
}
.about__aboutus {
  width: 750px;
  max-width: 90%;
  display: block;
  margin: 0 auto;
  border-radius: 4px;
  box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.07);
  font-family: "Lato", sans-serif;
  color: black;
  padding: 20px;
  line-height: 1.4;
}
.about__team--row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.about__team--row-item {
  width: 190px;
  height: 230px;
  margin: 10px;
  position: relative;
  box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.07);
  border-radius: 4px;
}
.about__team--row-item img {
  position: absolute;
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 50%;
  width: 70%;
}
.about__team--row-name {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  font-family: "Lato", sans-serif;
  color: black;
}
.about__contact {
  margin-bottom: 30px;
}
.about__contact--row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.about__contact--row-item {
  width: 300px;
  border-radius: 4px;
  box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.07);
  font-family: "Lato", sans-serif;
  padding: 15px;
  margin: 10px;
  color: black;
}
.about__contact--row-item-header {
  color: #336aa1;
  font-size: 22px;
}
.about__contact--row-item a {
  color: #336aa1;
}

@media (max-width: 430px) {
  .about__team--row-item {
    width: 40%;
    height: 200px;
  }

  .about__contributors--item {
    width: 90%;
    height: auto;
  }
  .about__contributors--item-top {
    position: unset;
    justify-content: center;
  }
  .about__contributors--item-top img {
    margin-right: 15px;
  }
  .about__contributors--item-bottom {
    position: unset;
    height: auto;
  }
}
.print-button {
  cursor: pointer;
}

@media print {
  .header-container {
    position: relative;
    display: block;
    padding: 0 !important;
    margin: 0 !important;
  }

  a[href]:after {
    content: "";
  }

  .freestyle-content img {
    float: left;
    position: relative;
    display: inline-block;
    margin: 0.25in 0.5in 0.25in 0in;
    width: 4in !important;
  }

  .no-print {
    display: none !important;
  }

  .content-container {
    margin: 0 !important;
    padding: 0 !important;
  }

  .resources,
.references,
.tip {
    page-break-inside: avoid;
  }

  #ourpastimes-taboola-below-article-thumbnails {
    display: none;
  }
}
* {
  box-sizing: border-box;
}

.container-fluid {
  margin-right: auto;
  margin-left: auto;
}

.container {
  margin-right: auto;
  margin-left: auto;
  padding-right: 15px;
  padding-left: 15px;
}

.container {
  width: 100vw;
}

.row {
  flex-direction: column;
}
.row div[class*=xs-1],
.row div[class*=sm-1] {
  width: 8.3333333333%;
}
.row div[class*=xs-2],
.row div[class*=sm-2] {
  width: 16.666666666%;
}
.row div[class*=xs-3],
.row div[class*=sm-3] {
  width: 25%;
}
.row div[class*=xs-4],
.row div[class*=sm-4] {
  width: 33.333333333%;
}
.row div[class*=xs-5],
.row div[class*=sm-5] {
  width: 41.666666666%;
}
.row div[class*=xs-6],
.row div[class*=sm-6] {
  width: 50%;
}
.row div[class*=xs-7],
.row div[class*=sm-7] {
  width: 58.333333333%;
}
.row div[class*=xs-8],
.row div[class*=sm-8] {
  width: 66.666666666%;
}
.row div[class*=xs-9],
.row div[class*=sm-9] {
  width: 75%;
}
.row div[class*=xs-10],
.row div[class*=sm-10] {
  width: 83.3333333333%;
}
.row div[class*=xs-11],
.row div[class*=sm-11] {
  width: 91.6666666666%;
}
.row div[class*=xs-12],
.row div[class*=sm-12] {
  width: 100%;
}

.row {
  display: flex;
  flex-direction: column;
  width: 100%;
}

div[class^=col-] {
  position: relative;
  min-height: 1px;
}

@media (min-width: 768px) {
  .container {
    width: 750px;
  }

  .row {
    flex-direction: column;
  }
  .row div[class^=col-] {
    position: relative;
    min-height: 1px;
    padding: 0 15px;
  }
  .row div[class*=xs-1],
.row div[class*=sm-1] {
    width: 8.3333333333%;
  }
  .row div[class*=xs-2],
.row div[class*=sm-2] {
    width: 16.666666666%;
  }
  .row div[class*=xs-3],
.row div[class*=sm-3] {
    width: 25%;
  }
  .row div[class*=xs-4],
.row div[class*=sm-4] {
    width: 33.333333333%;
  }
  .row div[class*=xs-5],
.row div[class*=sm-5] {
    width: 41.666666666%;
  }
  .row div[class*=xs-6],
.row div[class*=sm-6] {
    width: 50%;
  }
  .row div[class*=xs-7],
.row div[class*=sm-7] {
    width: 58.333333333%;
  }
  .row div[class*=xs-8],
.row div[class*=sm-8] {
    width: 66.666666666%;
  }
  .row div[class*=xs-9],
.row div[class*=sm-9] {
    width: 75%;
  }
  .row div[class*=xs-10],
.row div[class*=sm-10] {
    width: 83.3333333333%;
  }
  .row div[class*=xs-11],
.row div[class*=sm-11] {
    width: 91.6666666666%;
  }
  .row div[class*=xs-12],
.row div[class*=sm-12] {
    width: 100%;
  }
}
@media (min-width: 992px) {
  .container {
    width: 970px;
  }

  .row {
    flex-direction: row;
  }
  .row div[class^=col-] {
    position: relative;
    min-height: 1px;
    padding: 0 15px;
  }
  .row div[class*=md-1] {
    width: 8.3333333333%;
  }
  .row div[class*=md-2] {
    width: 16.666666666%;
  }
  .row div[class*=md-3] {
    width: 25%;
  }
  .row div[class*=md-4] {
    width: 33.333333333%;
  }
  .row div[class*=md-5] {
    width: 41.666666666%;
  }
  .row div[class*=md-6] {
    width: 50%;
  }
  .row div[class*=md-7] {
    width: 58.333333333%;
  }
  .row div[class*=md-8] {
    width: 66.666666666%;
  }
  .row div[class*=md-9] {
    width: 75%;
  }
  .row div[class*=md-10] {
    width: 83.3333333333%;
  }
  .row div[class*=md-11] {
    width: 91.6666666666%;
  }
  .row div[class*=md-12] {
    width: 100%;
  }
}
@media (min-width: 1200px) {
  .container {
    width: 1170px;
  }

  .row div[class^=col-] {
    position: relative;
    min-height: 1px;
    padding: 0 15px;
  }
  .row div[class*=lg-1],
.row div[class*=xl-1] {
    width: 8.3333333333%;
  }
  .row div[class*=lg-2],
.row div[class*=xl-2] {
    width: 16.666666666%;
  }
  .row div[class*=lg-3],
.row div[class*=xl-3] {
    width: 25%;
  }
  .row div[class*=lg-4],
.row div[class*=xl-4] {
    width: 33.333333333%;
  }
  .row div[class*=lg-5],
.row div[class*=xl-5] {
    width: 41.666666666%;
  }
  .row div[class*=lg-6],
.row div[class*=xl-6] {
    width: 50%;
  }
  .row div[class*=lg-7],
.row div[class*=xl-7] {
    width: 58.333333333%;
  }
  .row div[class*=lg-8],
.row div[class*=xl-8] {
    width: 66.666666666%;
  }
  .row div[class*=lg-9],
.row div[class*=xl-9] {
    width: 75%;
  }
  .row div[class*=lg-10],
.row div[class*=xl-10] {
    width: 83.3333333333%;
  }
  .row div[class*=lg-11],
.row div[class*=xl-11] {
    width: 91.6666666666%;
  }
  .row div[class*=lg-12],
.row div[class*=xl-12] {
    width: 100%;
  }
}
.logo-section .search__form {
  margin: 5px auto;
  width: 335px;
  height: 35px;
  border-radius: 4px;
  position: relative;
}
.logo-section .search__form input {
  height: 100%;
  width: 100%;
  box-sizing: border-box;
  border: solid 2px transparent;
  padding: 0 40px 0 10px;
  outline: none;
  font-family: "Open Sans", sans-serif;
  border-radius: 4px;
  background: white;
  font-size: 14px;
}
.logo-section .search__form input:focus {
  border-bottom: solid 2px #f5b619;
  transition: all 0.3s ease;
}
.logo-section .search__form button {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 35px;
  border-radius: 0 4px 4px 0;
  background: #f5b619;
  border: none;
  cursor: pointer;
}
.logo-section .search__form button:active {
  outline: none;
}

.mobile-nav .search__form {
  margin: 5px 0;
  width: 200px;
  height: 35px;
  border-radius: 4px;
  position: relative;
}
.mobile-nav .search__form input {
  height: 100%;
  width: 100%;
  box-sizing: border-box;
  border: solid 2px transparent;
  padding: 0 40px 0 10px;
  outline: none;
  font-family: "Open Sans", sans-serif;
  border-radius: 4px;
  background: white;
  font-size: 14px;
}
.mobile-nav .search__form input:focus {
  border-bottom: solid 2px #124680;
  transition: all 0.3s ease;
}
.mobile-nav .search__form button {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 35px;
  border-radius: 0 4px 4px 0;
  background: #124680;
  border: none;
  cursor: pointer;
}
.mobile-nav .search__form button:active {
  outline: none;
}

.search-results h4 {
  margin-bottom: 20px;
}
.search-results h4,
.search-results .search__form {
  display: inline-block;
}
.search-results .search__form {
  width: 225px;
  position: relative;
  margin: 0;
  margin-bottom: 20px;
  height: 35px;
  vertical-align: bottom;
  border-radius: 4px;
  overflow: hidden;
  border: solid 1px #336aa1;
}
.search-results .search__form input {
  height: 100%;
  width: 100%;
  box-sizing: border-box;
  border: none;
  padding: 0 40px 0 10px;
  outline: none;
  font-family: "Open Sans", sans-serif;
  border-radius: 4px;
  background: white;
  font-size: 14px;
  vertical-align: top;
  margin-left: 0;
}
.search-results .search__form button {
  position: absolute;
  border: none;
  top: 0;
  right: 0px;
  height: 100%;
  width: auto;
  background: #f5b619;
  cursor: pointer;
  vertical-align: top;
}
.search-results .search__form button:active {
  outline: none;
}

@media (max-width: 430px) {
  .search-results .inline-result {
    display: block;
    font-size: 30px;
  }
  .search-results .search__form {
    width: 100%;
  }
  .search-results .search__form input {
    margin-left: 0;
  }
}
.search-results {
  max-width: 780px;
  padding: 0 2rem;
  margin: 2rem auto;
  min-height: calc(100vh - 350px);
  font-family: "Open Sans", sans-serif;
}
.search-results-title {
  margin-bottom: 15px;
}
.search-results .search-results-title {
  font-size: 20px;
}
.search-results .search-results-title h4 {
  font-weight: 500;
  color: black;
}
.search-results .search-results-title h4 .keyword {
  font-weight: 400;
  color: black;
}
.search-results .search-results-cards article.search-result-card {
  width: 100%;
  border: none;
  padding: 5px;
  position: relative;
  margin-bottom: 10px;
  border-radius: 4px;
}
.search-results .search-results-cards article.search-result-card .title-field {
  font-size: 18px;
  font-weight: 500;
  margin: 0rem 0 0rem;
  text-decoration: underline;
  line-height: 1.2;
}
.search-results .search-results-cards article.search-result-card .title-field a {
  color: black;
}
.search-results .search-results-cards article.search-result-card .title-field a:hover {
  color: #336aa1;
  text-decoration: underline;
}
.search-results .search-results-cards article.search-result-card .summary-field {
  margin: 0.2rem 0 1rem 0;
  font-weight: 100;
  font-size: 14px;
  line-height: 18px;
  font-family: "Open Sans", sans-serif;
  color: black;
}
.search-results .search-results-cards article.search-result-card .relevance-field {
  margin: 0;
  color: rgba(0, 0, 0, 0.6);
  font-size: 10px;
  font-weight: 200;
  display: block;
}
.search-results .search-results-cards article.search-result-card .relevance-field > span {
  font-weight: 400;
  color: #336aa1;
  font-size: 10px;
}
.search-results .search-results-cards article.search-result-card:first-child {
  border-top: none;
}
.search-results .search-results-cards article.search-result-card::after {
  content: "";
  width: 3px;
  margin: 0 auto;
  height: 40%;
  background: #336aa1;
  position: absolute;
  top: 40%;
  left: -10px;
  transform: translateY(-50%);
}

html {
  height: 100%;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  max-width: 100%;
}

body {
  max-width: 100%;
  max-height: 100%;
  overflow-x: hidden;
  color: #124680;
  margin: 0;
}

/* Main content wrapper (used with mobile menu slider) */
#panel {
  background-color: #fff;
  min-height: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

.shadow {
  -webkit-box-shadow: 0 2px 4px 0 #cacaca;
  -moz-box-shadow: 0 2px 4px 0 #cacaca;
  box-shadow: 0 2px 4px 0 #cacaca;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-family: "Palanquin Dark", sans-serif;
  color: #124680;
}

span,
p {
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  line-height: 26px;
  margin: 18px 0;
}

.title-font {
  font-family: "Palanquin Dark", sans-serif;
  color: #124680;
}

/**
 * =====================================
 * Mobile, small device styles (default)
 * =====================================
 */
.padded-top-row {
  padding-top: 0;
}

/* Bootstrap container div*/
.content-container {
  padding: 100px 0 180px;
  margin-bottom: 30px;
}

@media (max-width: 992px) {
  .content-container {
    padding: 80px 5px 280px 7px;
    margin-bottom: 0;
  }
}
/**
 * =====================================
 * Larger desktop styles
 * =====================================
 */
@media (min-width: 1200px) {
  .padded-top-row {
    padding-top: 30px;
  }

  .border-between > [class*=col-]::before {
    background: #dfdfdf;
    width: 1px;
    top: 0;
    left: 0;
    bottom: 0;
    content: "";
    position: absolute;
  }

  .border-between > [class*=col-]:first-child::before {
    display: none;
  }

  .content-container {
    padding-top: 215px;
  }
}

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