/**
 * =====================================
 * Mobile, small device styles (default)
 * =====================================
 */
.header-container {
  background-color: #fff;
  border-bottom: 1px solid #eaeaea;
  min-height: 60px;
  position: fixed;
  width: 100%;
  z-index: 9999; }

#header {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: auto auto;
  grid-template-areas: "back logo burger" ". . nav"; }

.header-back {
  grid-area: back; }

.header-logo {
  grid-area: logo; }

.header-nav {
  grid-area: nav; }

.header-burger {
  grid-area: burger; }

.header-back,
.header-logo,
.header-nav,
.header-burger {
  color: #2b2b2b;
  display: inline-block;
  font-size: 30px;
  margin: 8.5px 0;
  text-align: center; }

.header-container a {
  color: #2b2b2b;
  position: relative;
  text-decoration: none; }

.header-burger {
  justify-self: center;
  cursor: pointer;
  padding-top: 8px;
  text-align: right; }

.header-burger #burger-close {
  display: none; }

.header-burger #burger {
  display: block;
  position: relative; }

.header-burger.open #burger-close {
  display: block; }

.header-burger.open #burger {
  display: none; }

/* Mobile nav */
.header-nav {
  background-color: #fff;
  border: 1px solid #363636;
  border-right: 0;
  position: fixed;
  right: -300px;
  top: 64px;
  transition: right .4s;
  z-index: 300; }

.header-nav.open {
  right: 0 !important; }

.header-nav ul {
  margin: 0;
  list-style: none;
  padding: 10px; }
  .header-nav ul li {
    margin-bottom: 10px; }

.header-nav .nav-item {
  font-size: 24px;
  text-align: left; }

.nav-item a::before {
  background-color: #4f4f4f;
  bottom: 0;
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  width: 100%; }

.astronomy a::before {
  background-color: #3b48ea; }

.hurricanes a::before {
  background-color: #3b48ea; }

.biology a::before {
  background-color: #00DF3F; }

.chemistry a::before {
  background-color: #fa9c20; }

.electronics a::before {
  background-color: #5f7295; }

.energy a::before {
  background-color: #FFEA4B; }

.geology a::before {
  background-color: #a813f9; }

.math a::before {
  background-color: #eb2222; }

.nature a::before {
  background-color: #1f6926; }

.physics a::before {
  background-color: #1597ff; }

.olympics a::before {
  background-color: #b6d3e4; }

a.header-promo {
  background-color: #1597ff;
  color: #fff;
  display: block;
  font-weight: bold;
  margin: 0 -15px;
  padding: 5px 70px;
  position: relative;
  text-align: center; }

.header-promo h3 {
  color: #fff;
  display: none;
  font-size: 15px;
  font-weight: bold; }

@media (max-height: 500px) {
  /* compact nav for horizontal screens */
  .header-nav {
    top: 50px; }

  .header-nav .nav-item {
    font-size: 16px; } }
@media (max-width: 400px) {
  .container-fluid.header-container {
    padding: 0 0 0 5px; } }
/**
 * =====================================
 * Smaller desktop styles
 * =====================================
 */
@media (min-width: 992px) {
  .header-container {
    height: 120px;
    -webkit-transition: height 0.3s ease-in-out;
    transition: height 0.3s ease-in-out; }

  #header {
    height: 100%;
    display: grid;
    grid-template-columns: 1fr 250px 650px 1fr;
    grid-template-rows: 1fr;
    grid-gap: 20px;
    grid-template-areas: ". logo nav ."; }

  .header-burger,
  .header-back {
    display: none; }

  .header-logo {
    justify-self: left;
    align-self: center;
    font-size: 36px;
    font-weight: 600;
    line-height: .90; }

  .header-nav ul {
    height: 100%;
    padding: 0;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center; }
    .header-nav ul li {
      margin-bottom: 0; }

  .header-nav .nav-item {
    display: inline-block;
    font-size: 14px; }

  .header-nav {
    border: 0;
    left: 0;
    position: relative;
    top: 0;
    -webkit-transition: none;
    transition: none;
    display: flex;
    flex-direction: column;
    justify-content: space-between; }

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

  .small-header .header-nav {
    margin: 10px 0; }

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

  .small-header .header-promo {
    top: 0; }

  .nav-item:last-of-type {
    padding-right: 0; }

  .nav-item a::before {
    visibility: hidden;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s; }

  .nav-item a:hover::before,
  .nav-item.active a::before {
    visibility: visible;
    -webkit-transform: scaleX(1);
    transform: scaleX(1); }

  .nav-item.divider {
    height: 45%;
    border-left: 1px solid black; } }
/**
 * =====================================
 * Larger desktop styles
 * =====================================
 */
@media (min-width: 1200px) {
  #header {
    grid-template-columns: 1fr 300px 900px 1fr; }

  .header-nav .nav-item {
    font-size: 17px; }

  .nav-item.divider {
    border-left: 2px solid black; } }
/**
 * =====================================
 * Mobile, small device styles (default)
 * =====================================
 */
.footer {
  width: 100%;
  position: relative;
  top: 20px; }

.footer-container {
  background-color: #2b2b2b; }

.footer-content-wrapper {
  padding: 10px 0;
  min-height: 50px;
  text-align: center; }

.footer-content-wrapper span,
.footer-content-wrapper h3,
.footer-content-wrapper a {
  color: #FFF;
  line-height: 50px; }

.footer-content-wrapper h3 {
  font-size: 46px; }

#policy-links ul {
  list-style: none;
  padding: 0;
  margin: 0; }

.footer-logo {
  height: 50px;
  margin-bottom: 20px; }

#social-links ul {
  display: flex;
  flex-direction: row;
  justify-content: center;
  padding: 0;
  margin: 0;
  list-style: none;
  transition: all 0.10s ease; }

#social-links ul li {
  display: inline;
  padding: 0 10px; }

#social-links ul li a {
  line-height: 28px;
  text-decoration: none; }

#social-links ul li i {
  color: #FFFFFF; }

#social-links ul li i:hover {
  color: #1597FF; }

/**
 * =====================================
 * Tablet, medium device styles
 * =====================================
 */
/**
 * =====================================
 * Smaller desktop styles
 * =====================================
 */
@media (min-width: 992px) {
  #policy-links ul li {
    padding-right: 15px;
    display: inline; } }
/**
 * =====================================
 * Larger desktop styles
 * =====================================
 */
@media (min-width: 1200px) {
  .footer-content-wrapper {
    padding: 20px 0;
    min-height: 100px;
    text-align: center; }

  .footer-content-wrapper span,
  .footer-content-wrapper h3,
  .footer-content-wrapper a {
    color: #FFF;
    line-height: 50px; }

  .footer-logo {
    height: 50px;
    margin: 12.5px 0; }

  #social-links ul {
    display: block; } }
/**
 * =====================================
 * Mobile, small device styles (default)
 * =====================================
 */
.article-column-content {
  position: relative;
  margin-bottom: 30px; }

.home-article {
  box-shadow: 0 4px 4px 0 #cacaca; }

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

.home-article-text-wrapper {
  min-height: 145px;
  padding: 15px 0;
  background-color: #FFF;
  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%;
  top: 45%;
  transform: translateY(-45%);
  text-align: center;
  position: absolute; }

.featured-article-title-wrapper a,
.featured-article-category-wrapper a,
.home-article-category-wrapper a,
.home-article-title-wrapper a {
  color: black; }

/**
 * =====================================
 * Tablet, medium device styles
 * =====================================
 */
/**
 * =====================================
 * Smaller desktop styles
 * =====================================
 */
/**
 * =====================================
 * Larger desktop styles
 * =====================================
 */
@media (min-width: 1200px) {
  .featured-articles-row {
    padding-bottom: 80px; } }
/**
 * =====================================
 * Mobile, small device styles (default)
 * =====================================
 */
.category-header {
  height: 150px;
  position: relative; }
  .category-header h1 {
    color: #fff;
    font-size: 36px;
    padding: 20px 0 0 20px; }
  .category-header.energy h1 {
    color: #000; }

.cat-description {
  color: #fff;
  display: none;
  float: right;
  font-size: 1.15em;
  padding: 10px;
  position: absolute;
  right: 10px;
  top: 0;
  width: 60%; }

.category-header.astronomy,
.cat-color-bg.astronomy {
  background-color: #3b48ea; }
.category-header.hurricanes,
.cat-color-bg.hurricanes {
  background-color: #3b48ea; }
.category-header.biology,
.cat-color-bg.biology {
  background-color: #00DF3F; }
.category-header.chemistry,
.cat-color-bg.chemistry {
  background-color: #fa9c20; }
.category-header.electronics,
.cat-color-bg.electronics {
  background-color: #5f7295; }
.category-header.energy,
.cat-color-bg.energy {
  background-color: #FFEA4B; }
.category-header.geology,
.cat-color-bg.geology {
  background-color: #a813f9; }
.category-header.math,
.cat-color-bg.math {
  background-color: #eb2222; }
.category-header.nature,
.cat-color-bg.nature {
  background-color: #1f6926; }
.category-header.physics,
.cat-color-bg.physics {
  background-color: #1597ff; }
.category-header.scienceprojects,
.cat-color-bg.scienceprojects {
  background-color: #1b97a1; }

/**
 * =====================================
 * Tablet, medium device styles
 * =====================================
 */
@media (min-width: 768px) {
  .cat-description {
    display: block; } }
/**
 * =====================================
 * Smaller desktop styles
 * =====================================
 */
@media (min-width: 992px) {
  .cat-description {
    width: 50%; } }
/**
 * =====================================
 * Larger desktop styles
 * =====================================
 */
@media (min-width: 1200px) {
  .category-header {
    height: 200px;
    margin-bottom: 20px; }

  .category-header h1 {
    font-size: 50px; }

  .cat-description {
    font-size: 1.3em;
    top: 20px; } }
/**
 * =====================================
 * Mobile, small device styles (default)
 * =====================================
 */
.image-wrapper {
  position: relative;
  text-align: center;
  display: block; }
  .image-wrapper .article-image-credit {
    position: absolute;
    bottom: 5px;
    right: 5px;
    color: white;
    font-size: 12px; }
    .image-wrapper .article-image-credit a {
      color: white; }

#article-top {
  padding-top: 9px; }

.astronomy #article-top {
  border-top: 7px solid #3b48ea; }

.biology #article-top {
  border-top: 7px solid #00DF3F; }

.chemistry #article-top {
  border-top: 7px solid #fa9c20; }

.electronics #article-top {
  border-top: 7px solid #5f7295; }

.energy #article-top {
  border-top: 7px solid #FFEA4B; }

.geology #article-top {
  border-top: 7px solid #a813f9; }

.math #article-top {
  border-top: 7px solid #eb2222; }

.nature #article-top {
  border-top: 7px solid #1f6926; }

.physics #article-top {
  border-top: 7px solid #1597FF; }

#breadcrumbs {
  margin-bottom: 5px; }
  #breadcrumbs ul {
    list-style: none;
    margin: 0;
    padding: 0; }
    #breadcrumbs ul li {
      display: inline; }
  #breadcrumbs a {
    color: #000; }

#article-title h1 {
  font-size: 36px;
  margin-bottom: 5px; }

#article-byline {
  display: block;
  margin-bottom: 10px; }

.widget-image-overlay {
  background-color: rgba(240, 240, 240, 0.7);
  box-sizing: border-box;
  opacity: 0;
  position: absolute;
  width: 100%; }

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

#article-content {
  padding-bottom: 7px;
  margin-bottom: 7px; }
  #article-content h2 {
    font-size: 28px;
    margin-bottom: 10px; }
  #article-content h2 ~ h2 {
    padding-top: 15px; }
  #article-content h2 + h2 {
    border-top: 1px solid #ccc;
    display: inline-block;
    padding-top: 10px; }
  #article-content p {
    font-size: 16px;
    line-height: 1.6em; }

.astronomy #article-content {
  border-bottom: 7px solid #3b48ea; }

.biology #article-content {
  border-bottom: 7px solid #00DF3F; }

.chemistry #article-content {
  border-bottom: 7px solid #fa9c20; }

.electronics #article-content {
  border-bottom: 7px solid #5f7295; }

.energy #article-content {
  border-bottom: 7px solid #FFEA4B; }

.geology #article-content {
  border-bottom: 7px solid #a813f9; }

.math #article-content {
  border-bottom: 7px solid #eb2222; }

.nature #article-content {
  border-bottom: 7px solid #1f6926; }

.physics #article-content {
  border-bottom: 7px solid #1597FF; }

.boxed {
  margin: 15px 0;
  padding: 10px;
  background-color: #fcfcfc;
  border: 1px solid #eaeaea;
  position: relative; }
  .boxed h4 {
    margin-bottom: 10px;
    font-size: 24px;
    font-weight: bold; }
  .boxed span {
    font-size: 16px;
    overflow-wrap: break-word; }
  .boxed li:not(:last-child) {
    margin: 0 0 5px; }
  .boxed ul {
    padding-left: 20px;
    list-style: none;
    margin: 0; }
  .boxed ul li a {
    color: black; }

.author-img-wrapper,
.author-about-wrapper {
  display: inline-block; }

.author-img-wrapper {
  width: 60px;
  float: left; }

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

.astronomy .author-img {
  border: 2px solid #3b48ea; }

.biology .author-img {
  border: 2px solid #00DF3F; }

.chemistry .author-img {
  border: 2px solid #fa9c20; }

.electronics .author-img {
  border: 2px solid #5f7295; }

.energy .author-img {
  border: 2px solid #FFEA4B; }

.geology .author-img {
  border: 2px solid #a813f9; }

.math .author-img {
  border: 2px solid #eb2222; }

.nature .author-img {
  border: 2px solid #1f6926; }

.physics .author-img {
  border: 2px solid #1597FF; }

.author-about-wrapper {
  width: 75%;
  margin-left: 10px; }
  .author-about-wrapper p {
    min-height: 60px;
    margin: 0;
    line-height: 17px; }

#article-sidebar {
  margin-left: 40px; }

.social-shares {
  position: relative;
  display: flex;
  margin: 4px 0 7px 0px; }

.social-icon {
  position: relative;
  width: 35px;
  height: 35px; }

.email-svg {
  fill: silver; }

.print-svg {
  fill: black; }

.facebook-svg {
  fill: #3b5998; }

.twitter-svg {
  fill: #00aced; }

.linkedin-svg {
  fill: #007bb6; }

.pinterest-svg {
  fill: #cb2027; }

.stumbleupon-svg {
  fill: #eb4823; }

.reddit-svg {
  fill: #ff5700; }

.social-icon:first-of-type {
  margin-left: 0px; }

.social-icon:hover {
  filter: brightness(65%); }

@media (min-width: 1600px) {
  .social-shares {
    position: fixed;
    z-index: 999;
    left: 8px;
    display: flex;
    flex-direction: column;
    margin: 4px 0 7px 0px; } }
.socialshares {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px; }

.socialshares.floating {
  position: fixed;
  display: flex;
  flex-direction: column;
  top: 140px;
  left: 20px;
  width: 40px;
  font-size: 1.2em; }

.socialshares.floating > div {
  margin-bottom: 20px; }

.socialshares > div a:hover {
  filter: brightness(120%);
  transition: 0.2s filter linear, 0.2s -webkit-filter linear; }

.socialshares a {
  color: #000; }

.socialshares > .fb a {
  color: #3b5897; }

.socialshares > .fb a:hover {
  filter: brightness(140%); }

.socialshares > .twtr a {
  color: #00aced; }

.socialshares > .eml a {
  color: #fadf86; }

.socialshares > .eml a:hover {
  filter: brightness(80%); }

.socialshares > .lnkn a {
  color: #0077B5; }

.socialshares > .rdit a {
  color: #ff5700; }

.socialshares > .rdit a:hover {
  filter: brightness(90%); }

.socialshares > .stumblpn a {
  color: #EB4823; }

.social-share-margin {
  margin-left: 40px; }

/* calculator widget customizations */
.calculator-title {
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  text-transform: none; }

.astronomy .calculator-widget {
  background-color: #3b48ea; }

.biology .calculator-widget {
  background-color: #00DF3F; }

.chemistry .calculator-widget {
  background-color: #fa9c20; }

.electronics .calculator-widget {
  background-color: #5f7295; }

.energy .calculator-widget {
  background-color: #FFEA4B; }

.geology .calculator-widget {
  background-color: #a813f9; }

.math .calculator-widget {
  background-color: #eb2222; }

.nature .calculator-widget {
  background-color: #1f6926; }

.physics .calculator-widget {
  background-color: #1597FF; }

.radlinks {
  margin: 30px 0; }

.radlinks h2 {
  font-weight: bold; }

.radlinks-content {
  margin: 10px 0 0; }

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

.radlinks li {
  margin-left: 0;
  padding-left: 0;
  margin-bottom: 10px; }

.related-content {
  margin: 30px 0 0; }

.related-content-header {
  font-weight: bold; }

.related-content ul {
  padding: 0;
  margin: 10px 0 0;
  list-style: none; }

.related-content li {
  margin-bottom: 20px;
  border-bottom: 1px solid #eaeaea; }

.related-content li:nth-last-child(-n+1) {
  border-bottom: none; }

.embed {
  position: relative;
  padding-bottom: 56.25%; }

.embed > iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; }

@media (max-width: 500px) {
  /* un-float social shares on smallest mobile */
  .socialshares.floating {
    flex-direction: row;
    position: relative;
    top: auto;
    left: auto;
    width: auto;
    margin-top: 20px; }

  #article-sidebar {
    margin-left: 0px; }

  .social-share-margin {
    margin-left: 0px; } }
/**
 * =====================================
 * Tablet, medium device styles
 * =====================================
 */
@media (min-width: 768px) {
  .socialshares.floating {
    left: calc(50% - 360px); } }
/**
 * =====================================
 * Smaller desktop styles
 * =====================================
 */
@media (min-width: 992px) {
  #article-sidebar {
    max-width: 300px;
    margin-left: 0px; }

  .socialshares.floating {
    left: calc(50% - 480px); } }
/**
 * =====================================
 * Larger desktop styles
 * =====================================
 */
@media (min-width: 1200px) {
  .article-main-col {
    border-right: 1px solid #eaeaea; }

  #article-title h1 {
    font-size: 42px; }

  .radlinks {
    margin: 0 0 30px; }

  .author-about-wrapper {
    width: 80%; }

  .socialshares.floating {
    left: calc(50% - 580px); } }
/**
 * =====================================
 * Mobile, small device styles (default)
 * =====================================
 */
#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; }

/**
 * =====================================
 * Tablet, medium device styles
 * =====================================
 */
/**
 * =====================================
 * Smaller desktop styles
 * =====================================
 */
/**
 * =====================================
 * Larger desktop styles
 * =====================================
 */
/**
 * =====================================
 * Mobile, small device styles (default)
 * =====================================
 */
.ad-center {
  text-align: center; }

.ad-margin-bottom {
  margin-bottom: 20px; }

.inline-text-ad {
  max-height: 100px; }

.google span,
.google p {
  font-family: Helvetica;
  letter-spacing: 1px; }

/* Article Inline */
.google.google_text {
  margin-bottom: 10px; }

/* Rad Content */
.google .title-section {
  font-family: inherit;
  margin-bottom: 5px;
  font-size: 16px; }

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

.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-size: 15px;
  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-single .google .label {
  padding-top: 7px;
  margin-bottom: 10px;
  height: 19px; }

#google-article-block .google .label {
  padding-top: 12px; }

#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: 14px;
  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: 1px; }

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

#google-article-block .ad-content {
  border-bottom: 2px solid #ccc;
  margin: 0;
  padding: 0.75em 0 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; }

#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: #000000;
  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 {
  text-align: center;
  margin-bottom: 30px; }

/**
 * =====================================
 * Tablet, medium device styles
 * =====================================
 */
/**
 * =====================================
 * Smaller desktop styles
 * =====================================
 */
/**
 * =====================================
 * Larger desktop styles
 * =====================================
 */
/**
 * =====================================
 * Mobile, small device styles (default)
 * =====================================
 */
/* Featured Article Panel */
.featured-article-panel {
  width: 100%;
  position: relative;
  margin-bottom: 20px; }

.featured-article-panel.small-panel {
  margin-bottom: 20px; }

.featured-article-image-wrapper {
  height: 400px; }

.featured-article-image-wrapper .image-overlay,
.standard-article-image-wrapper .image-overlay,
.category-article-image-wrapper .image-overlay,
.related-content-article-image-wrapper .image-overlay {
  width: 100%;
  height: 400px;
  position: absolute;
  opacity: 0;
  transition: all 0.5s; }

.standard-article-image-wrapper .image-overlay,
.category-article-image-wrapper .image-overlay,
.related-content-article-image-wrapper .image-overlay {
  height: 100%; }

.small-panel .featured-article-image-wrapper .image-overlay {
  height: 200px; }

.astronomy .featured-article-image-wrapper .image-overlay:hover,
.astronomy .standard-article-image-wrapper .image-overlay:hover,
.astronomy .category-article-image-wrapper .image-overlay:hover,
.astronomy .related-content-article-image-wrapper .image-overlay:hover {
  opacity: 0.55;
  background-color: #3b48ea; }

.biology .featured-article-image-wrapper .image-overlay:hover,
.biology .standard-article-image-wrapper .image-overlay:hover,
.biology .category-article-image-wrapper .image-overlay:hover,
.biology .related-content-article-image-wrapper .image-overlay:hover {
  opacity: 0.55;
  background-color: #00DF3F; }

.chemistry .featured-article-image-wrapper .image-overlay:hover,
.chemistry .standard-article-image-wrapper .image-overlay:hover,
.chemistry .category-article-image-wrapper .image-overlay:hover,
.chemistry .related-content-article-image-wrapper .image-overlay:hover {
  opacity: 0.55;
  background-color: #fa9c20; }

.electronics .featured-article-image-wrapper .image-overlay:hover,
.electronics .standard-article-image-wrapper .image-overlay:hover,
.electronics .category-article-image-wrapper .image-overlay:hover,
.electronics .related-content-article-image-wrapper .image-overlay:hover {
  opacity: 0.55;
  background-color: #5f7295; }

.energy .featured-article-image-wrapper .image-overlay:hover,
.energy .standard-article-image-wrapper .image-overlay:hover,
.energy .category-article-image-wrapper .image-overlay:hover,
.energy .related-content-article-image-wrapper .image-overlay:hover {
  opacity: 0.55;
  background-color: #FFEA4B; }

.geology .featured-article-image-wrapper .image-overlay:hover,
.geology .standard-article-image-wrapper .image-overlay:hover,
.geology .category-article-image-wrapper .image-overlay:hover,
.geology .related-content-article-image-wrapper .image-overlay:hover {
  opacity: 0.55;
  background-color: #a813f9; }

.math .featured-article-image-wrapper .image-overlay:hover,
.math .standard-article-image-wrapper .image-overlay:hover,
.math .category-article-image-wrapper .image-overlay:hover,
.math .related-content-article-image-wrapper .image-overlay:hover {
  opacity: 0.55;
  background-color: #eb2222; }

.nature .featured-article-image-wrapper .image-overlay:hover,
.nature .standard-article-image-wrapper .image-overlay:hover,
.nature .category-article-image-wrapper .image-overlay:hover,
.nature .related-content-article-image-wrapper .image-overlay:hover {
  opacity: 0.55;
  background-color: #1f6926; }

.physics .featured-article-image-wrapper .image-overlay:hover,
.physics .standard-article-image-wrapper .image-overlay:hover,
.physics .category-article-image-wrapper .image-overlay:hover,
.physics .related-content-article-image-wrapper .image-overlay:hover {
  opacity: 0.55;
  background-color: #1597FF; }

.small-panel .featured-article-image-wrapper {
  height: 200px; }

.featured-article-image {
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover; }

.featured-article-text-panel {
  width: 90%;
  position: relative;
  margin-top: -50px;
  top: 80%;
  left: 5%;
  padding: 10px;
  background-color: #FFF;
  border: 1px solid #eaeaea; }

.small-panel .featured-article-text-panel {
  margin-top: -40px; }

.featured-article-text-panel::before {
  content: '';
  display: block;
  height: 7px;
  width: 100.3%;
  position: absolute;
  bottom: 100%;
  left: -1px;
  top: -2px;
  background-color: white; }

.small-panel .featured-article-text-panel::before {
  width: 100.7%; }

.astronomy .featured-article-text-panel::before {
  background-color: #3b48ea; }

.biology .featured-article-text-panel::before {
  background-color: #00DF3F; }

.chemistry .featured-article-text-panel::before {
  background-color: #fa9c20; }

.electronics .featured-article-text-panel::before {
  background-color: #5f7295; }

.energy .featured-article-text-panel::before {
  background-color: #FFEA4B; }

.geology .featured-article-text-panel::before {
  background-color: #a813f9; }

.math .featured-article-text-panel::before {
  background-color: #eb2222; }

.nature .featured-article-text-panel::before {
  background-color: #1f6926; }

.physics .featured-article-text-panel::before {
  background-color: #1597FF; }

.olympics .featured-article-text-panel::before {
  background-color: #2d9ee0; }

.featured-article-text-panel a,
.standard-article-panel a,
.category-article-panel a,
.related-content-article-panel a {
  color: black;
  text-decoration: none; }

.featured-article-category span {
  font-size: 16px; }

.astronomy .featured-article-category span,
.astronomy .standard-article-category span {
  color: #3b48ea; }

.biology .featured-article-category span,
.biology .standard-article-category span {
  color: #00DF3F; }

.chemistry .featured-article-category span,
.chemistry .standard-article-category span {
  color: #fa9c20; }

.electronics .featured-article-category span,
.electronics .standard-article-category span {
  color: #5f7295; }

.energy .featured-article-category span,
.energy .standard-article-category span {
  color: #FFEA4B; }

.geology .featured-article-category span,
.geology .standard-article-category span {
  color: #a813f9; }

.math .featured-article-category span,
.math .standard-article-category span {
  color: #eb2222; }

.nature .featured-article-category span,
.nature .standard-article-category span {
  color: #1f6926; }

.physics .featured-article-category span,
.physics .standard-article-category span {
  color: #1597FF; }

.featured-article-title span {
  font-size: 26px;
  line-height: 26px; }

.small-panel .featured-article-title span {
  font-size: 18px;
  line-height: 16px; }

/* Standard Article Panel */
.standard-article-panel {
  margin-bottom: 20px; }

.standard-article-category {
  margin-bottom: 5px; }

.standard-article-image-wrapper {
  height: 200px;
  position: relative; }

.standard-article-image {
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover; }

.astronomy .featured-article-image,
.astronomy .standard-article-image,
.astronomy .category-article-image,
.astronomy .related-content-article-image {
  border-bottom: 5px solid #3b48ea; }

.biology .featured-article-image,
.biology .standard-article-image,
.biology .category-article-image,
.biology .related-content-article-image {
  border-bottom: 5px solid #00DF3F; }

.chemistry .featured-article-image,
.chemistry .standard-article-image,
.chemistry .category-article-image,
.chemistry .related-content-article-image {
  border-bottom: 5px solid #fa9c20; }

.electronics .featured-article-image,
.electronics .standard-article-image,
.electronics .category-article-image,
.electronics .related-content-article-image {
  border-bottom: 5px solid #5f7295; }

.energy .featured-article-image,
.energy .standard-article-image,
.energy .category-article-image,
.energy .related-content-article-image {
  border-bottom: 5px solid #FFEA4B; }

.geology .featured-article-image,
.geology .standard-article-image,
.geology .category-article-image,
.geology .related-content-article-image {
  border-bottom: 5px solid #a813f9; }

.math .featured-article-image,
.math .standard-article-image,
.math .category-article-image,
.math .related-content-article-image {
  border-bottom: 5px solid #eb2222; }

.nature .featured-article-image,
.nature .standard-article-image,
.nature .category-article-image,
.nature .related-content-article-image {
  border-bottom: 5px solid #1f6926; }

.physics .featured-article-image,
.physics .standard-article-image,
.physics .category-article-image,
.physics .related-content-article-image {
  border-bottom: 5px solid #1597FF; }

.standard-article-title {
  margin-top: 5px;
  font-size: 20px;
  line-height: 20px; }

/* Category Article Panel */
.category-article-panel {
  margin-bottom: 20px; }

.category-article-image-wrapper {
  height: 200px;
  position: relative; }

.category-article-image {
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover; }

.category-article-title {
  margin-top: 5px; }

.category-article-title span {
  font-size: 20px;
  line-height: 20px; }

/* Related Content Article Panel */
.related-content-article-panel {
  padding-bottom: 15px; }

.related-content-article-image-wrapper {
  position: relative; }

.related-content-article-image {
  width: 100%;
  min-height: 150px;
  background-size: cover;
  background-repeat: no-repeat; }

.related-content-article-title {
  margin-top: 5px;
  font-size: 16px; }

/**
 * =====================================
 * Tablet, medium device styles
 * =====================================
 */
/**
 * =====================================
 * Smaller desktop styles
 * =====================================
 */
/**
 * =====================================
 * Larger desktop styles
 * =====================================
 */
@media (min-width: 1200px) {
  /* Featured Article Panel */
  .featured-article-panel {
    margin-bottom: 0; }

  .featured-article-panel.small-panel {
    margin-bottom: 0; }

  .featured-articles-row .small-panel:first-of-type {
    margin-bottom: 20px; }

  .featured-article-text-panel {
    min-height: 100px;
    top: 85%;
    left: 5%; }

  .featured-article-category span {
    font-size: 18px; }

  .featured-article-title span {
    font-size: 32px;
    line-height: 32px; }

  .small-panel .featured-article-text-panel {
    min-height: 50px;
    top: 75%;
    left: 5%; }

  .small-panel .featured-article-category span {
    font-size: 14px; }

  .small-panel .featured-article-title span {
    font-size: 18px; }

  .standard-article-panel {
    margin-bottom: 0; } }
/**
 * =====================================
 * Mobile, small device styles (default)
 * =====================================
 */
#not-found-content h3 {
  margin-top: 10px; }

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

/**
 * =====================================
 * Tablet, medium device styles
 * =====================================
 */
/**
 * =====================================
 * Smaller desktop styles
 * =====================================
 */
/**
 * =====================================
 * Larger desktop styles
 * =====================================
 */
/**
 * =====================================
 * Mobile, small device styles (default)
 * =====================================
 */
.about-us-content {
  text-align: center; }

.about-us-content a {
  color: #d19650; }

.about-us-content h1,
.about-us-content h3 {
  text-transform: uppercase; }

.section-content {
  margin: 0 20px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%); }

#about-section {
  min-height: 350px; }

#about-section p {
  font-size: 16px; }

#about-section,
#brand-section,
#contact-section {
  position: relative;
  margin-bottom: 20px; }

#brand-section,
#contact-section {
  min-height: 200px;
  background-color: white;
  box-shadow: 0 2px 4px 0 rgba(185, 185, 185, 0.35);
  border: 1px solid #554b42; }

#brand-section {
  border: 1px solid #1597FF; }

#brand-section a {
  color: #1597FF; }

#contact-section {
  border: 1px solid #fa9c20; }

#contact-section a {
  color: #fa9c20; }

#about-section p,
#brand-section p,
#contact-section p {
  margin-top: 10px; }

/**
 * =====================================
 * Tablet, medium device styles
 * =====================================
 */
/**
 * =====================================
 * Smaller desktop styles
 * =====================================
 */
/**
 * =====================================
 * Larger desktop styles
 * =====================================
 */
@media (min-width: 1200px) {
  #about-section {
    min-height: 350px; }

  #about-section p {
    font-size: 18px; } }
.flag-img {
  border: 1px solid #dedede;
  clear: left;
  display: inline-block;
  float: left;
  margin: 5px 10px;
  max-height: 50px;
  max-width: 80px; }

.olympics-image {
  background-color: #dce9f0;
  background-position-y: -100px;
  background-repeat: no-repeat;
  margin: 10px 0 50px;
  position: relative; }

.sport-icon-lg {
  margin: 0 20px; }

#article-content .main-img {
  font-size: 28px;
  padding: 10% 0 5%;
  text-align: center;
  width: 100%; }

#article-content .main-img h3 {
  color: #0c7567;
  font-size: 1.1em; }

#article-content .countdown-clock .countdown-days,
#article-content .countdown-clock .countdown-hours,
#article-content .countdown-clock .countdown-minutes {
  background-color: rgba(255, 255, 255, 0.75);
  border-radius: 40px;
  color: #0c7567;
  display: inline-block;
  padding: 20px;
  width: 20%; }

#article-content .countdown-clock .countdown-seconds {
  background: #fff;
  background-image: -webkit-gradient(linear, left top, right top, color-stop(50%, transparent), color-stop(0, #aee5f8));
  background-image: linear-gradient(to right, transparent 50%, #aee5f8 0);
  border-radius: 50%;
  display: inline-block;
  height: 80px;
  position: relative;
  top: 20px;
  width: 80px; }

#article-content .countdown-clock .countdown-seconds::before {
  background-color: inherit;
  border-radius: 0 100% 100% 0 / 50%;
  content: '';
  display: block;
  height: 100%;
  margin-left: 50%;
  -webkit-transform-origin: left;
  transform-origin: left; }

#article-content .olympic-event-schedule ul {
  background-color: #e7f5fa;
  display: none;
  list-style: none;
  margin: -10px 5px 5px;
  padding: 10px 20px; }

#article-content .olympic-event-schedule ul li {
  color: #67749e;
  font-size: 14px;
  padding: 4px 0; }

#article-content .olympic-event-schedule h3.expand-link {
  color: #0c7567;
  cursor: pointer;
  font-size: 19px;
  padding: 20px 0;
  text-align: center;
  text-decoration: underline; }

#article-content .olympic-event-schedule h3.expand-link span {
  background-color: rgba(255, 255, 255, 0.75);
  border-radius: 10px;
  padding: 3px 6px; }

ul.fun-facts {
  background-color: #e4f2fa;
  border-radius: 8px;
  float: right;
  height: 250px;
  list-style: none;
  margin: 10px;
  padding: 5px;
  position: relative;
  width: 30%; }

ul.fun-facts .fun-fact-number {
  background-color: #fff;
  border-radius: 50%;
  color: #49988c;
  display: inline-block;
  float: left;
  font-size: 2em;
  margin: -3px 10px 0 -3px;
  padding: 5px; }

ul.fun-facts li {
  height: 240px;
  opacity: 0;
  overflow: hidden;
  padding: 4px;
  position: absolute;
  -webkit-transition: opacity 1s;
  transition: opacity 1s; }

ul.fun-facts li.active {
  opacity: 1; }

ul.fun-facts li h5 {
  font-size: 18px; }

ul.fun-facts li p {
  font-size: 14px !important;
  line-height: 16px; }

#article-content .anchornav {
  list-style: none;
  margin: 10px 0 50px; }

#article-content .anchornav li {
  font-size: 19px;
  padding: 5px 0; }

.olympics-content h2 {
  margin-top: 30px; }

.maincol-olympics-nav .athlete-to-watch,
.maincol-olympics-nav > h2 {
  display: none; }

ul.sports-links {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  list-style: none;
  margin: 0;
  margin-bottom: 20px;
  padding: 0; }

ul.sports-links li {
  border-radius: 10px;
  margin: 0 6px;
  padding: 8px;
  text-align: center;
  -webkit-transition: background-color .5s;
  transition: background-color .5s;
  width: 90px; }

ul.sports-links li:hover {
  background-color: #e1e2ff; }

ul.sports-links li a {
  text-align: center; }

ul.sports-links li img {
  height: auto;
  width: 100%; }

#article-content .olympic-event-icon {
  margin: 15px 0 0;
  max-height: 100%;
  max-width: 100%; }

.olympic-table.prediction-table {
  margin-bottom: 30px; }

.olympic-data-preview {
  margin-bottom: 30px;
  position: relative; }

.olympic-data-preview > ol {
  margin-left: 0; }

.olympic-data-preview > ol li {
  background-color: #f3f8f9;
  border: 1px solid #cdcdcd;
  padding: 5px 20px; }

.olympic-data-preview > ol li.more {
  background-color: #d3fafb;
  border: 0;
  list-style: none;
  text-decoration: underline; }

.olympic-data-preview .olympic-table-container {
  -webkit-box-shadow: 8px 8px 3px #333;
  box-shadow: 8px 8px 3px #333;
  height: 0;
  overflow: hidden;
  position: absolute;
  top: 0;
  -webkit-transition: width .5s;
  transition: width .5s;
  width: 0;
  z-index: 99; }

.olympic-data-preview:hover .olympic-table-container {
  height: auto;
  width: 100%; }

/* colors showing accuracy of predictions */
.olympic-table.prediction-table tr td.color-1 {
  background-color: #0a8670;
  font-weight: bold;
  color: #fff; }

.olympic-table.prediction-table tr td.color-1::after {
  content: '*'; }

.olympic-table.prediction-table tr td.color-0_9 {
  background-color: rgba(10, 134, 112, 0.8); }

.olympic-table.prediction-table tr td.color-0_8 {
  background-color: rgba(10, 134, 112, 0.6); }

.olympic-table.prediction-table tr td.color-0_7 {
  background-color: rgba(10, 134, 112, 0.4); }

.olympic-table.prediction-table tr td.color-0_6 {
  background-color: rgba(10, 134, 112, 0.2); }

.olympic-table.prediction-table tr td.color-0_5 {
  background-color: rgba(10, 134, 112, 0); }

.olympic-table.prediction-table tr td.color-0_4 {
  background-color: rgba(103, 116, 158, 0.2); }

.olympic-table.prediction-table tr td.color-0_3 {
  background-color: rgba(103, 116, 158, 0.4); }

.olympic-table.prediction-table tr td.color-0_2 {
  background-color: rgba(103, 116, 158, 0.6); }

.olympic-table.prediction-table tr td.color-0_1 {
  background-color: rgba(103, 116, 158, 0.8); }

.olympic-table.prediction-table tr td.color-0_05 {
  background-color: #67749e;
  color: #fff; }

.accuracy-legend-text {
  display: inline-block;
  font-size: 13px;
  position: relative;
  top: -6px; }

.olympic-table.prediction-table.accuracy-legend {
  border: 1px solid #aaa;
  color: #000;
  display: inline-block;
  font-weight: bold;
  margin: 10px 0 0; }

.olympic-table.prediction-table.accuracy-legend td {
  width: 20px;
  height: 20px; }

.sidebar-olympics-nav {
  margin: 30px 0; }

.athlete-to-watch {
  background: #ddecf6;
  padding: 10px;
  text-align: center; }

.athlete-to-watch .athlete-portrait {
  border: 4px white solid;
  border-bottom: 0;
  border-top-right-radius: 10px;
  border-top-left-radius: 10px;
  box-sizing: content-box;
  display: inline-block;
  height: 180px;
  margin: 10px 10px 0;
  overflow: hidden;
  text-align: center; }

.athlete-to-watch .athlete-portrait img {
  height: 100%;
  margin: 0 auto;
  width: auto; }

.athlete-to-watch .athlete-facts {
  float: left;
  line-height: 16px;
  list-style: none;
  margin: 0 0 5px 10px;
  padding: 0;
  text-align: left; }

.athlete-to-watch .athlete-info {
  background-color: #fff;
  border-radius: 10px;
  color: #67749e;
  font-size: 15px;
  line-height: 22px;
  margin: -5px 10px 10px;
  overflow: hidden;
  padding: 10px;
  text-align: left; }

.athlete-to-watch .athlete-info a {
  color: #67749e; }

.athlete-to-watch .athlete-info-text {
  clear: both;
  color: #333; }

.athlete-to-watch .flag-img {
  float: right;
  margin-bottom: 10px;
  margin-top: 0; }

.athlete-to-watch .athlete-photo-credit,
.athlete-to-watch .athlete-photo-credit a {
  color: #999;
  font-size: 12px;
  line-height: 15px; }

.data-table {
  width: 100%; }

.data-table td, .data-table th {
  background-color: #f3f8f9;
  border: 1px solid #cdcdcd;
  padding: 5px 10px;
  text-align: center; }

.data-table td.nation {
  text-align: left; }

.data-table tr:nth-child(even) td, .data-table tr:nth-child(even) th {
  background-color: #fcfcff; }

.data-table tr:nth-child(even) .gold {
  background-color: #f7f6bd; }

.data-table tr:nth-child(even) .silver {
  background-color: #e7e9e1; }

.data-table tr:nth-child(even) .bronze {
  background-color: #e5d2a2; }

.data-table tr:nth-child(odd) .gold {
  background-color: #efeeb7; }

.data-table tr:nth-child(odd) .silver {
  background-color: #e1e3db; }

.data-table tr:nth-child(odd) .bronze {
  background-color: #dcc99b; }

.olympic-table-footnote {
  color: #999;
  padding: 5px;
  position: relative;
  text-align: center;
  top: -25px; }

#allTimeMedalsWorldMap {
  background-color: #eef9fb;
  margin-bottom: 30px;
  position: relative; }

@media (max-width: 992px) {
  .maincol-olympics-nav .athlete-to-watch,
  .maincol-olympics-nav > h2 {
    display: block; }

  .sidebar-olympics-nav {
    display: none; } }
@media (max-width: 700px) {
  #article-content .main-img {
    font-size: 24px; } }
@media (max-width: 600px) {
  #article-content .main-img {
    font-size: 18px;
    line-height: 20px; }

  ul.fun-facts {
    height: 120px;
    margin: 0 auto;
    width: 100%; }

  ul.fun-facts .fun-fact-number {
    font-size: 1.5em; }

  ul.fun-facts p {
    clear: both; }

  .sport-icon-lg {
    margin: 0 10px;
    height: 150px; } }
@media (max-width: 480px) {
  #article-content .countdown-clock .countdown-days,
  #article-content .countdown-clock .countdown-hours,
  #article-content .countdown-clock .countdown-minutes {
    padding: 10px; }

  #article-content .countdown-clock .countdown-seconds {
    height: 50px;
    top: 10px;
    width: 50px; }

  #article-content .countdown-clock .abbrev,
  .header-container .countdown-clock .abbrev {
    display: none; }

  .data-table td, .data-table th {
    padding: 4px; }

  .data-table td img, .data-table th img {
    display: none; }

  ul.fun-facts {
    height: 160px; } }
@media (max-width: 420px) {
  #article-content .main-img {
    padding: 10px 0; }

  .sport-icon-lg {
    margin: 0 5px;
    height: 100px; }

  .olympic-table.prediction-table.accuracy-legend td {
    width: 10px; } }
#suggestions {
  background-color: #fcfcfc;
  border: 1px solid #ddd;
  box-shadow: 2px 2px 6px #666;
  float: left;
  list-style: none;
  margin: 2px 0 0;
  max-width: 40%;
  padding: 10px;
  position: absolute;
  z-index: 100; }
  #suggestions:empty {
    border: 0;
    box-shadow: none;
    padding: 0; }
  #suggestions .close {
    background-color: #fff;
    border: 1px solid #ccc;
    cursor: pointer;
    font-size: 12px;
    line-height: 12px;
    opacity: .6;
    padding: 1px;
    position: absolute;
    right: 2px;
    text-align: center;
    top: 2px; }
    #suggestions .close:hover {
      opacity: 1; }
  #suggestions li {
    background-color: #1b97a1;
    border-radius: 4px;
    color: #fff;
    cursor: pointer;
    display: inline-block;
    margin: 2px 4px;
    padding: 2px 4px; }
    #suggestions li:hover {
      background-color: #23c4d1; }

#search-results {
  background-color: #eee;
  box-sizing: border-box;
  float: right;
  line-height: 1.8em;
  margin: 0;
  margin-left: 10px;
  padding: 20px;
  width: 50%; }
  #search-results .one-result {
    font-size: 20px;
    margin: 20px 0; }
    #search-results .one-result .cat-color-bg {
      clear: both;
      float: left;
      font-size: 16px;
      margin-right: 20px; }
      #search-results .one-result .cat-color-bg:hover {
        box-shadow: none; }

.cat-color-bg {
  background-color: #1b97a1; }

.science-fair-top {
  margin-bottom: 70px; }
  .science-fair-top .category-header {
    background-position-x: 10px;
    background-position-y: 15px;
    background-repeat: no-repeat;
    margin-bottom: 30px; }
    .science-fair-top .category-header h1 {
      margin-left: 60px; }
  .science-fair-top .categories-search .cat-color-bg {
    cursor: pointer;
    margin: 4px; }
  .science-fair-top .cat-color-bg {
    color: #fff;
    display: inline-block;
    font-size: 20px;
    padding: 2px 6px; }
    .science-fair-top .cat-color-bg.energy {
      color: #000; }
    .science-fair-top .cat-color-bg:hover {
      box-shadow: 2px 6px 6px #aaa; }
  .science-fair-top .search-filter {
    background-color: #cee4e8;
    border-radius: 10px;
    margin: 0 0 20px;
    padding: 10px 20px 35px;
    text-align: center;
    width: 40%; }
    .science-fair-top .search-filter h3 {
      color: #15767d;
      margin-bottom: 20px; }
    .science-fair-top .search-filter button {
      display: block; }

.category-article-title {
  height: 50px; }

h2.grade-row {
  border-bottom: 2px solid #1b97a1;
  clear: both; }

.projects-grade-row {
  height: 300px;
  margin: 20px 0 70px;
  overflow: hidden;
  position: relative;
  transition: left .5s;
  width: 100%; }
  .projects-grade-row .projects-grade-row__slider {
    display: flex;
    flex-wrap: nowrap;
    left: 25px;
    position: absolute; }
    .projects-grade-row .projects-grade-row__slider > div {
      width: 300px; }
  .projects-grade-row .projects-grade-row__arrow-r,
  .projects-grade-row .projects-grade-row__arrow-l {
    background-color: rgba(252, 252, 252, 0.8);
    bottom: 0;
    box-sizing: border-box;
    color: #15767d;
    cursor: pointer;
    font-size: 30px;
    font-weight: bold;
    height: 270px;
    min-width: 25px;
    padding-top: 70px;
    position: absolute;
    text-align: center;
    top: 0;
    width: 5%;
    z-index: 100; }
  .projects-grade-row .projects-grade-row__arrow-r {
    right: 0; }
  .projects-grade-row .projects-grade-row__arrow-l {
    left: 0; }

.grade-anchors a {
  background-color: #1b97a1;
  color: #fff;
  display: inline-block;
  margin: 8px;
  padding: 4px 8px;
  text-decoration: none; }
  .grade-anchors a:hover {
    box-shadow: 2px 6px 6px #aaa; }

@media (max-width: 550px) {
  #search-results {
    float: none;
    margin-left: 0;
    width: 100%; }

  .science-fair-top .search-filter {
    margin-top: 20px;
    width: 100%; } }
.print-button {
  cursor: pointer; }

@media print {
  .header-container {
    position: relative;
    display: block; }

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

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

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

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

  .resources,
  .references,
  .tip {
    page-break-inside: avoid; } }
.jwplayer-section {
  margin: 30px 0;
  padding: 20px 25px 40px;
  border-top: 1px solid rgba(151, 151, 151, 0.3);
  border-bottom: 1px solid rgba(151, 151, 151, 0.3); }

.jwplayer-section .jwplayer__label {
  margin: 0 0 20px;
  font-weight: 400;
  font-size: 16px;
  text-align: center;
  text-transform: uppercase; }

.jwplayer-section .jwplayer__container-outer {
  background-color: #FFFFFF; }

.jwplayer-section .jwplayer__container-outer .jwplayer__container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0; }

.jwplayer-section .jwplayer__container-outer .jwplayer__container.jwplayer__container--sticky {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 314px;
  height: auto;
  padding: 7px;
  border-radius: 2px;
  box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.05);
  background-color: #FFFFFF;
  z-index: 999999; }

.jwplayer-section .jwplayer__container-outer .jwplayer__container.jwplayer__container--sticky .jwplayer__close {
  display: block; }

.jwplayer-section .jwplayer__container-outer .jwplayer__container.jwplayer__container--sticky #jw-player {
  position: relative;
  top: auto;
  left: auto; }

.jwplayer-section .jwplayer__container-outer .jwplayer__container .jwplayer__close {
  position: absolute;
  top: -10px;
  right: -10px;
  display: none;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  text-align: center;
  background-color: #000000;
  z-index: 999999; }

.jwplayer-section .jwplayer__container-outer .jwplayer__container .jwplayer__close:hover {
  cursor: pointer;
  opacity: 0.8; }

.jwplayer-section .jwplayer__container-outer .jwplayer__container .jwplayer__close .close-x {
  position: relative;
  display: inline-block;
  width: 13px;
  height: 13px;
  margin-top: 6px;
  overflow: hidden; }

.jwplayer-section .jwplayer__container-outer .jwplayer__container .jwplayer__close .close-x::after,
.jwplayer-section .jwplayer__container-outer .jwplayer__container .jwplayer__close .close-x::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  margin-top: -1px;
  background: #FFFFFF; }

.jwplayer-section .jwplayer__container-outer .jwplayer__container .jwplayer__close .close-x::before {
  transform: rotate(45deg); }

.jwplayer-section .jwplayer__container-outer .jwplayer__container .jwplayer__close .close-x::after {
  transform: rotate(-45deg); }

.jwplayer-section .jwplayer__container-outer .jwplayer__container #jw-player {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #FFFFFF; }

.low-match {
  color: red; }

.moderate-match {
  color: #fbc02d; }

.high-match {
  color: green; }

.half-height {
  height: 50%; }

.header-nav {
  display: flex;
  flex-direction: column;
  justify-content: center; }

ul.search-container {
  display: none;
  justify-content: center; }

@media (max-width: 768px) {
  .search-indicator {
    display: none; }

  ul.category-container {
    margin-top: 60px; }

  ul.search-container {
    display: block;
    position: absolute;
    top: 0px; } }
html {
  height: 100%; }

body {
  width: 100%;
  height: 100%; }

/* Main content wrapper (used with mobile menu slider) */
#panel {
  background-color: #FBFBFB;
  min-height: 100%; }

.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: 'Nunito Sans', sans-serif; }

span, p {
  font-family: 'Lato', sans-serif; }

.title-font {
  font-family: 'Nunito Sans', sans-serif; }

.logo-underline {
  text-decoration: underline; }

.margin-top-row {
  margin-top: 20px; }

.margin-bottom-row {
  margin-bottom: 20px; }

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

/* Bootstrap container div*/
.content-container {
  padding-top: 165px;
  padding-bottom: 50px; }

/**
 * =====================================
 * Tablet, medium device styles
 * =====================================
 */
/**
 * =====================================
 * Smaller desktop styles
 * =====================================
 */
/**
 * =====================================
 * Larger desktop styles
 * =====================================
 */
@media (min-width: 1200px) {
  .padded-top-row {
    padding-top: 30px; } }

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