/**
 * StoryCorps - Twenty Sixteen
 * https://storycorps.org
 *
 * Copyright (c) 2016
 * Licensed under the GPL-2.0+ license.
 *
 * Compile Test #1
 */

/**
 *===== GLOBAL DEPENDENCIES =====*
 */

/*--- Default font styles. ---*/
body {
  font-family: "Gotham", "Helvetica", "Arial", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
}

h1,
h2,
h3 {
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

h2 {
  color: #647987;
  font-size: 20px;
  line-height: 1.25;
}

h3 {
  font-size: 1.6rem;
  line-height: 1.25;
  transition: color 0.15s ease-in-out;
}

a {
  color: #e51022;
  transition: color 0.15s ease-in-out;
}

a:hover, a:focus {
  color: #67747e;
  text-decoration: none;
}

main {
  line-height: 1.75;
}

main p a,
main label a {
	text-decoration: underline;
}

.text-primary {
  color: #646262;
}

@media only screen and (min-width: 768px) {
  h2 {
    font-size: 30px;
  }
}

/**
 *===== COMPONENTS =====*
 */
.social {
  clear: both;
  margin: 0;
  padding: 2rem 0;
  text-align: center;
}

.social li {
  display: inline-block;
}

.social li + li {
  margin-left: 0.5rem;
}

.social li.share-this-story {
  display: none;
}

.social i {
  border: 2px solid white;
  border-radius: 100%;
  cursor: pointer;
  display: block;
  line-height: 27px;
  text-align: center;
  transition: background-color 0.2s ease-in-out, border-color 0.2s ease-in-out, color 0.2s ease-in-out, opacity 0.2s ease-in-out;
  width: 32px;
  vertical-align: middle;
}

.social span {
  display: none;
}

.social.share {
  padding-bottom: 0;
  text-align: left;
}

.social.share a {
  color: white;
}

.social.share a:hover i {
  background-color: #647987;
  border-color: #647987;
  color: white;
}

.social.share i {
  background-color: transparent;
  border-color: #bfc6cb;
  color: #bfc6cb;
}

.social.share .facebook a:hover i {
  border-color: #3b5998;
  background-color: #3b5998;
}

.social.share .twitter a:hover i {
  border-color: #4099ff;
  background-color: #4099ff;
}

.social.share .google a:hover i {
  border-color: #d34836;
  background-color: #d34836;
}

@media only screen and ( min-width: 992px ) {
  .social {
    text-align: left;
  }
}

@media only screen and (min-width: 768px) {
  .social.share {
    float: right;
  }
  .social li.share-this-story {
    color: #e51022;
    display: inline-block;
    font-weight: 700;
    margin-right: 1rem;
    font-size: 12px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
  }
}

/*-- Footer Social Menu ---*/
.footer-container {
  display: flex;
  justify-content: center;
}

@media only screen and ( max-width: 991px ) {
  .footer-container {
    /*flex-direction: column;*/
    display: block;
  }
}

.footer-menu-container {
  display: flex;
  width: 100%;
}

@media only screen and ( max-width: 768px ) {
  .footer-menu-container {
    flex-direction: column;
  }
}

.footer-menu {
  display: flex;
  flex: 1;
  justify-content: center;
}

@media only screen and ( max-width: 991px ) {
  .footer-menu {
    padding: 0 0 2rem 0;
  }
}

@media only screen and ( max-width: 768px ) {
  .footer-menu {
    justify-content: space-around;
  }
}

.footer-menu .footer-menu-item {
  padding: 0 2rem;
  width: 100%;
}

.footer-social-container {
  padding: 2rem;
  display: flex;
  align-items: center;
}

@media only screen and ( max-width: 991px ) {
  .footer-social-container {
    justify-content: center;
  }
}

.footer-social {
  padding: 0 .5rem;

}

@media only screen and ( max-width: 991px ) {
  .footer-social {
    display: flex;
    padding: 0;
  }
}

.footer-social a:focus {
  color: #e51022;
}

.footer-social span.fa {
  border: 2px solid #e51022;
  border-radius: 100%;
  cursor: pointer;
  display: block;
  line-height: 27px;
  text-align: center;
  transition: background-color 0.2s ease-in-out, border-color 0.2s ease-in-out, color 0.2s ease-in-out, opacity 0.2s ease-in-out;
  vertical-align: middle;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 30px;
  width: 60px;
  height: 60px;
}

@media only screen and ( min-width: 992px ) {
  .footer-social span.fa:first-child {
    margin-bottom: 1rem;
  }
}


@media only screen and ( max-width: 991px ) {
  .footer-social span.fa {
    margin: .5rem;
  }
}

.footer-social span.fa:hover {
  background-color: #e51022;
  color: #fff;
}

/*--- The fixed header nav bar at the top of every screen ---*/
#fixed {
  background-color: #e51022;
  background-image: url(../images/sc-logo-white.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: auto 80%;
  border: none;
  color: white;
  min-height: 80px;
  transition: box-shadow 0.15s ease-in-out, transform 0.25s ease-in-out;
}

.admin-bar #fixed {
  top: 46px;
}

@media screen and (min-width: 783px) {
  .admin-bar #fixed {
    top: 32px;
  }
}

#fixed a {
  color: white;
}

#fixed.shadow {
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.25);
}

#fixed .navbar-toggle {
  border: none;
  float: left;
  margin-top: 24px;
}

#fixed .navbar-toggle.hover, #fixed .navbar-toggle.focus {
  background-color: inherit;
}

#fixed .navbar-toggle .icon-bar {
  background-color: white;
}

#fixed .search-icon {
  color: white;
  display: block;
  float: right;
  font-size: 24px;
  height: 32px;
  margin-top: 24px;
  padding: 0;
  width: 32px;
}

@media only screen and ( max-width: 768px ) {
  #fixed .search-icon {
    margin-right: 8px;
  }
}

#fixed.mini {
  transform: translateY(-100%);
}

/*--- Mobile menu is full-screen and hidden by default ---*/
#menu {
  background-color: #e51022;
  height: 100%;
  left: 0;
  opacity: 0;
  overflow-x: hidden;
  overflow-y: auto;
  pointer-events: none;
  position: fixed;
  top: 0;
  transition: opacity 0.5s ease-out;
  width: 100%;
  -webkit-overflow-scrolling: touch;
}

.admin-bar #menu {
  top: 46px;
}

@media screen and (min-width: 783px) {
  .admin-bar #menu {
    top: 32px;
  }
}

#menu .navbar-form {
  border: none;
  box-shadow: none;
  margin: auto;
  padding-left: 4rem;
  padding-right: 4rem;
}

#menu .navbar-form .form-group {
  display: inline-block;
  width: calc(100% - 40px);
  vertical-align: top;
}

#menu .navbar-form input {
  background-color: transparent;
  border: none;
  border-bottom: 1px solid white;
  border-radius: 0;
  box-shadow: none;
  color: white;
  font-size: 1.8rem;
  letter-spacing: 0.05em;
  padding-left: 10px;
  padding-right: 10px;
  text-transform: uppercase;
}

#menu .navbar-form input::-webkit-input-placeholder {
  color: white;
  text-transform: uppercase;
}

#menu .navbar-form input::-moz-placeholder {
  color: white;
  text-transform: uppercase;
}

#menu .navbar-form input:-ms-input-placeholder {
  color: white;
  text-transform: uppercase;
}

#menu .navbar-form input::placeholder {
  color: white;
  text-transform: uppercase;
}

#menu .navbar-form .btn {
  background: none;
  background-size: 28px;
  border: none;
  border-bottom: 1px solid white;
  border-radius: 0;
  color: white;
  display: inline-block;
  height: 34px;
  padding: 0;
  vertical-align: top;
  width: 40px;
}

#menu .branding {
  padding-left: 2rem;
  padding-right: 2rem;
}

#menu .navbar-nav {
  padding: 1.5rem 4rem;
}

#menu .nav li + li {
  margin-top: 1rem;
}

#menu .nav li a,
#menu .nav li button {
  font-size: 2rem;
  font-weight: 700;
  padding: 1.3rem 1rem .5rem;
  text-transform: uppercase;
}

#menu .nav li a::after,
#menu .nav li button::after {
  /*background-color: #e51022;*/
  background-color: white;
  content: '';
  display: block;
  height: 2px;
  margin-top: 0.5rem;
  opacity: 0;
  transform: scale(0);
  transition: opacity 0.25s linear, transform 0.15s ease-in-out;
}

#menu .nav li a:hover, #menu .nav li a:focus, #menu .nav li a.active,
#menu .nav li button:hover,
#menu .nav li button:focus,
#menu .nav li button.active {
  background-color: inherit;
}

#menu .nav li a:hover::after, #menu .nav li a:focus::after, #menu .nav li a.active::after,
#menu .nav li button:hover::after,
#menu .nav li button:focus::after,
#menu .nav li button.active::after {
  opacity: 1;
  transform: none;
}

#menu .nav li.home-icon a,
#menu .nav li.home-icon button, #menu .nav li.search-icon a,
#menu .nav li.search-icon button {
  background-position: center;
  background-repeat: no-repeat;
  border: none;
  display: block;
  padding: 0;
  height: 35px;
  width: 35px;
}

#menu .nav li.home-icon a::after,
#menu .nav li.home-icon button::after, #menu .nav li.search-icon a::after,
#menu .nav li.search-icon button::after {
  display: none;
}

#menu .logo {
  background: url(../images/sc-logo-white.svg) center no-repeat;
  display: block;
  height: 82px;
  width: 130px;
}

#menu .close {
  font-weight: normal;
  margin-right: 1.75rem;
  margin-top: 2rem;
  opacity: 1;
}

#menu .listen-honor-share {
  background: url(../images/listen-honor-share-period-white.png) center no-repeat;
  background-size: contain;
  display: block;
  height: 40px;
  margin: 25px auto auto auto;
  width: 220px;
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
}

#menu hr {
  background: url(../images/line-white.svg) center no-repeat;
  background-size: auto 100%;
  border: none;
  display: block;
  height: 6px;
  margin-bottom: 0;
  margin-top: 1rem;
}

/*--- Show the mobile menu when .navbar-toggle button is clicked (and prevent the document from scrolling underneath the menu) ---*/
body.menu {
  height: 100%;
  overflow: hidden;
}

body.menu #menu {
  opacity: 1;
  pointer-events: all;
}

/*--- Small screen styles ---*/
@media only screen and (max-width: 767px) {
  #menu .logo {
    margin: 15px auto 0;
  }
  #menu .nav li.home-icon, #menu .nav li.search-icon {
    clip: rect(1px, 1px, 1px, 1px);
    height: 1px;
    overflow: hidden;
    position: absolute !important;
    width: 1px;
  }

  #menu .navbar-form {
    display: none;
  }

  #menu .nav li a,
  #menu .nav li button {
    font-size: 3rem;
    text-align: center;
  }

  #menu .navbar-nav {
    padding: 4rem 4rem;
  }

}

/*--- Show regular menu bar from 768px and up ---*/
@media only screen and (min-width: 768px) {
  #fixed {
    background: rgba(255,255,255,0.96);
    /*background-color: white;*/
	background: #FF0032;
    box-shadow: 0 2px 5px transparent;
    transform: translateY(-80px);
  }
  #fixed a,
  #fixed button {
    /*color: #e51022;*/
  }
  #fixed.search, #fixed.shadow {
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.25);
  }
  #fixed, #fixed.mini {
    transform: translateY(-80px);
  }
  #fixed.search {
    transform: none;
  }
  #fixed.shadow .branding {
    margin-bottom: -7rem;
  }
  #fixed.shadow .logo {
    height: 70px;
  }
  #fixed.shadow .navbar-nav {
    margin-bottom: 1rem;
  }
  #fixed .search-icon {
    display: none;
  }
  #menu {
    /*background-color: white;*/
    background: rgba(255,255,255,0.2);
    height: auto;
    pointer-events: all;
    padding-left: 0;
    padding-right: 0;
    position: static;
    opacity: 1;
    transition: none;
  }
  #menu .nav li + li {
    margin-top: 0;
  }
  #menu .nav li a,
  #menu .nav li button {
    font-size: 1.6rem;
  }
  #menu .nav li a:hover,
  #menu .nav li button:hover {
    border-color: #e51022;
  }
  #menu .nav li.search-icon a,
  #menu .nav li.search-icon button {
    border: none;
    font-size: 2.8rem;
    height: auto;
    line-height: 20px;
  }
  #menu .navbar-form {
    padding: 0;
  }
  #menu .navbar-form .form-group {
    width: calc(100% - 40px);
  }
  #menu .navbar-form input {
    border-bottom: 1px solid black;
    color: black;
    font-size: 3rem;
    height: 70px;
    line-height: 70px;
    padding: 0;
    width: 100%;
  }
  #menu .navbar-form input::-webkit-input-placeholder {
    color: #eff3f3;
  }
  #menu .navbar-form input::-moz-placeholder {
    color: #eff3f3;
  }
  #menu .navbar-form input:-ms-input-placeholder {
    color: #eff3f3;
  }
  #menu .navbar-form input::placeholder {
    color: #eff3f3;
  }
  #menu .navbar-form .btn {
    border-color: black;
    color: #e51022;
    font-size: 24px;
    height: 70px;
  }
  #menu .branding {
    left: 0;
    text-align: center;
    margin-bottom: -8rem;
    margin-top: 2rem;
    width: 100%;
    transition: margin 0.15s ease-in-out;
  }
  #menu .logo {
    background-image: url(../images/sc-logo.svg);
    display: inline-block;
    transition: height 0.15s ease-in-out, transform 0.15s ease-in-out;
  }
  #menu .close {
    display: none;
  }
  #menu .nav::before,
  #menu .nav::after {
    display: none;
  }
  #menu .navbar-nav {
    display: -ms-flexbox;
    display: flex;
    float: none;
    -ms-flex-pack: justify;
    justify-content: space-between;
    align-items: center;
    margin-bottom: .7rem;
    transition: margin 0.15s ease-in-out;
  }
  #menu .navbar-nav li {
    /*--- blog and contact links are not visible on desktop ---*/
  }
  #menu .navbar-nav li.home-icon {
    display: block;
    -ms-flex-order: 0;
        order: 0;
  }
  #menu .navbar-nav li.home-icon a {
    background-image: url(../images/home.svg);
    background-size: 35px;
  }
  #menu .navbar-nav li.stories {
    -ms-flex-order: 1;
        order: 1;
  }
  #menu .navbar-nav li.discover {
    margin-right: 20%;
    -ms-flex-order: 2;
        order: 2;
  }
  #menu .navbar-nav li.participate {
    -ms-flex-order: 3;
        order: 3;
  }
  #menu .navbar-nav li.about {
    -ms-flex-order: 4;
        order: 4;
  }
  #menu .navbar-nav li.search-icon {
    display: block;
    -ms-flex-order: 5;
        order: 5;
  }
  #menu .navbar-nav li.podcast, #menu .navbar-nav li.contact, #menu .navbar-nav li.search {
    display: none;
  }
  #menu .listen-honor-share,
  #menu .search,
  #menu .podcast,
  #menu hr,
  #menu .social {
    display: none;
  }
}

/*--- Large screen styles ---*/
@media only screen and (min-width: 981px) {
  #fixed .container-fluid {
    max-width: 1440px;
  }
  #menu .branding {
    margin-bottom: -12rem;
  }
  #menu .logo {
    height: 159px;
    width: 253px;
    transform: translateY( 8px );
  }
  #menu .navbar-nav {
    margin-bottom: 7rem;
  }
  #menu .navbar-nav li.home-icon {
    margin-right: 3%;
  }
  #menu .navbar-nav li.discover {
    margin-right: 30%;
  }
  #menu .navbar-nav li.search-icon {
    margin-left: 3%;
  }
}

#site-footer {
  margin: 3rem 0;
  transition: padding-bottom 0.5s ease-in-out;
}

#site-footer .listen-honor-share {
  background: url(../images/listen-honor-share-period-red.png) center no-repeat;
  background-size: contain;
  display: block;
  height: 50px;
  margin: auto;
  width: 275px;
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
}

#site-footer hr {
  background: url(../images/line.svg) center repeat-x;
  border: none;
  display: block;
  height: 6px;
  margin-bottom: 4rem;
}

#site-footer h3 {
  color: #e51022;
}

#site-footer ul {
  margin-top: 2rem;
  padding: 0;
}

#site-footer ul li + li {
  margin-top: 1rem;
}

#site-footer ul li a {
  color: #67747e;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

#site-footer ul li a:hover, #site-footer ul li a:focus {
  color: #e51022;
}

#site-footer .form-control {
  border-right: none;
  box-shadow: none;
  height: 4rem;
}

#site-footer .form-control:focus {
  box-shadow: inherit;
  border-color: #ccc;
  border-right: none;
}

#site-footer .btn {
  border-left: none;
  color: #e51022;
  font-weight: 700;
  height: 4rem;
}

#site-footer .btn:hover {
  border-color: #ccc;
  color: #e51022;
}

#site-footer .sponsors {
  display: none;
}

#site-footer .social {
  padding-bottom: 1rem;
}

#site-footer .social a {
  color: #e51022;
}

#site-footer .social a i {
  transition: background-color 0.15s ease-in-out, color 0.15s ease-in-out;
}

#site-footer .social a i:hover {
  background-color: #e51022;
  color: white;
}

#site-footer .social i {
  border-color: #e51022;
}

@media only screen and (max-width: 768px ) {
  #site-footer .col-xs-6:nth-child(3n+1) {
    clear: both;
  }
}

@media only screen and (min-width: 768px) {
  #site-footer {
    margin-top: 10rem;
  }
  #site-footer .listen-honor-share {
    height: 79px;
    width: 435px;
  }
  #site-footer hr {
    height: 12px;
  }
  #site-footer div.subscribe {
    float: right;
  }
  #site-footer .sponsors {
    display: block;
    margin-top: 2rem;
    text-align: center;
  }
  #site-footer .sponsors a {
    display: inline-block;
    margin-top: 2rem;
    vertical-align: middle;
  }
  #site-footer .sponsors a + a {
    margin-left: 3rem;
  }
  #site-footer .sponsors p {
    color: #67747e;
    margin-left: auto;
    margin-right: auto;
    max-width: 1000px;
  }
  #site-footer .sponsors img {
    height: 44px;
    opacity: 0.5;
    vertical-align: middle;
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
  }
  #site-footer .sponsors img#logo3, #site-footer .sponsors img#logo4, #site-footer .sponsors img#logo8 {
    height: 60px;
  }
  #site-footer .social {
    padding-top: 3rem;
  }
}

@media only screen and (min-width: 768px) and (max-width: 980px) {
  #site-footer .subscribe {
    float: inherit;
  }
}

/*--- Pull quote and donate CTA ---*/
aside {
  clear: both;
  margin: 4rem 0;
  position: relative;
  text-align: center;
}

aside .container-fluid {
  padding: 4rem 2rem;
}

aside.pull-quote::before, aside.pull-quote::after, aside.subscribe::before, aside.subscribe::after {
  background-color: white;
  background-image: url(../images/wavy-border.gif);
  background-repeat: repeat-x;
  content: '';
  display: block;
  height: 6px;
  position: absolute;
  width: 100%;
}

aside.donate::before, aside.donate::after {
  background-color: white;
  /*background-image: none;*/
  background-repeat: repeat-x;
  content: '';
  display: block;
  height: 6px;
  position: absolute;
  width: 100%;
}

aside.pull-quote::before, aside.donate::before, aside.subscribe::before {
  background-position: top;
  transform: translateY(-6px);
}

aside.pull-quote::after, aside.donate::after, aside.subscribe::after {
  background-position: bottom;
  transform: translateY(0px);
}

aside.pull-quote {
  background-color: #f8f8f8;
  font-family: "Mercury", "Georgia", "Times", serif;
  font-size: 1.6rem;
  line-height: 1.5;
}

aside.pull-quote::before, aside.pull-quote::after {
  opacity: 0.25;
}

aside.donate, aside.subscribe {
  background-color: #e0e6e6;
  color: #5c6770;
  font-weight: 900;
  text-transform: uppercase;
  -webkit-backface-visibility: hidden;
}

aside.donate .textwidget {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media only screen and ( max-width: 767px ) {
  aside.donate .textwidget {
    flex-direction: column;
  }
}

@media only screen and ( max-width: 1350px ) {
  aside.donate #communities-text-widget {
    flex-direction: column;
  }

  aside.donate #communities-text-widget p {
    margin-right: 0;
    margin-bottom: 2rem;
    max-width: 100%;
  }
}

aside.donate p, aside.subscribe p {
  margin-bottom: 2rem;
}

aside.donate .btn, aside.subscribe .btn {
  border-color: transparent;
  color: #5c6770;
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
  width: 100%;
}

aside.donate .btn:hover, aside.subscribe .btn:hover {
  background-color: #5c6770;
  color: white;
}

aside.donate .btn:hover::before, aside.subscribe .btn:hover::before {
  background-color: #5c6770;
}

aside.subscribe .input-group {
  margin: auto;
}

aside.subscribe .form-control,
aside.subscribe .btn {
  height: 40px;
}

aside.subscribe .form-control {
  border: none;
  font-size: 2rem;
}

aside.subscribe .btn {
  background-color: #b2c1c4;
  color: white;
}

aside.subscribe.podcast {
  background-color: #b2c1c4;
  color: white;
}

aside.subscribe.podcast::before, aside.subscribe.podcast::after {
  background-image: url(../images/wavy-border-grey.gif);
}

aside.subscribe.podcast .container-fluid {
  padding-left: 2rem;
  padding-right: 2rem;
}

aside.subscribe.podcast .btn {
  display: block;
}

aside.subscribe.podcast .btn {
  background-color: white;
  color: #e51022;
  display: block;
  padding: 1em 2em;
  text-transform: uppercase;
  height: auto;
  width: 100%;
}

aside.subscribe.podcast .btn:hover {
  background-color: #67747e;
  color: white;
}

aside.subscribe.podcast .btn:hover::before {
  background-color: #67747e;
}

.single-listen aside.subscribe.podcast,
.single-post aside.subscribe.podcast {
  background-color: #e51022;
  font-size: 1.4rem;
  text-align: left;
}

.single-listen aside.subscribe.podcast::before, .single-listen aside.subscribe.podcast::after,
.single-post aside.subscribe.podcast::before,
.single-post aside.subscribe.podcast::after {
  background-image: url(../images/wavy-border-red.gif);
}

.single-listen aside.subscribe.podcast .btn:hover,
.single-post aside.subscribe.podcast .btn:hover {
  background-color: #e51022;
  border-color: white;
  color: white;
}

.single-listen aside.subscribe.podcast .btn:hover::before,
.single-post aside.subscribe.podcast .btn:hover::before {
  background-color: #e51022;
}

@media only screen and (min-width: 768px) {
  aside {
    margin: 8rem 0;
  }
  aside.pull-quote {
    font-size: 20px;
  }
  aside.pull-quote p {
    margin: auto;
    max-width: 60%;
  }
  aside.donate .container-fluid {
    padding-left: 10%;
    padding-right: 10%;
    position: relative;
  }
  aside.donate .btn {
    width: auto;
  }
  aside.donate p {
    float: left;
    margin-bottom: 0;
    margin-right: 4rem;
    max-width: 75%;
    text-align: left;
  }
  aside.subscribe .input-group {
    max-width: 36%;
  }
  aside.subscribe.podcast .container-fluid {
    position: relative;
  }
  aside.subscribe.podcast .btn {
    margin-top: -2.5rem;
    position: absolute;
    right: 6%;
    top: 50%;
  }
  aside.subscribe.podcast p {
    float: left;
    margin: 0;
    padding-right: 2rem;
    text-align: left;
    max-width: 60%;
  }
  aside.subscribe.podcast .btn {
    display: inline-block;
    width: auto;
  }
  aside.subscribe.podcast .container-fluid::after {
    clear: both;
    content: '';
    display: block;
  }
}

/*--- Play button overlay on featured thumbnails --- */
.featured-play i {
  background: none;
  border: 0.4rem solid white;
  border-radius: 100%;
  color: white;
  font-size: 2.4rem;
  height: 6rem;
  line-height: 5.4rem;
  left: calc(50% - 3rem);
  position: absolute;
  text-align: center;
  text-indent: 0.6rem;
  top: calc(50% - 3rem);
  transition: color 0.15s ease-in-out, border-color 0.15s ease-in-out;
  width: 60px;
}

.featured-play i.small {
  border-width: 0.3rem;
  font-size: 1.8rem;
  height: 5rem;
  line-height: 4.4rem;
  left: calc(50% - 2.5rem);
  text-indent: 0.4rem;
  top: calc(50% - 2.5rem);
  width: 50px;
}

.featured-play:hover i {
  border-color: #e51022;
  color: #e51022;
}

.most-popular {
  text-align: center;
}

.most-popular a {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.most-popular a + a {
  margin-left: 3rem;
}

.most-popular a.active {
  color: black;
}

.filter-panel {
  border-top: 1px solid #d8e0e1;
  margin-top: 2rem;
}

.filter-panel h4 {
  font-weight: 700;
  padding-bottom: 1rem;
  text-align: center;
  font-size: 15;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.filter-panel h4 a {
  color: #647987;
}

.filter-panel h4 i {
  font-size: 1.6rem;
}

.filter-panel select {
  border: none;
  box-shadow: none;
  color: #e51022;
  font-size: 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/*--- Pagination controls ---*/
.pagination {
  clear: both;
  display: block;
  font-weight: 900;
  margin: 0;
  padding: 4rem 0;
  text-align: center;
}

.pagination h2 {
  color: black;
  font-size: 1.2rem;
}

.pagination span,
.pagination a {
  display: inline-block;
  padding: 1rem 0.5rem;
}

.pagination .page-numbers:not( .dots ):hover {
  opacity: .9;
}

.pagination .page-numbers.current,
.pagination .page-numbers {
    border-radius: 50%;
    color: #ffffff;
    font-weight: normal;
    font-size: 14px;
    height: 4rem;
    margin-right: 4px;
    width: 4rem;
    padding: 8px 0 0 0;
}

.pagination .page-numbers.current {
    background-color: #de1639;
}

.page-numbers:not(.dots) {
    background-color: #73777a;
}

.page-numbers.dots {
    color: #C2C6C9;
    font-size: 22px;
    font-weight: 900;
    padding: 0;
    width: 2rem;
}

.page-numbers.next,
.page-numbers.prev {
    padding-top: 7px;
    vertical-align: bottom;
}

.pagination .fa-arrow-left,
.pagination .fa-arrow-right {
    font-size: 24px;
    font-weight: 900;
    vertical-align: text-bottom;
}

.pagination .fa-arrow-left {
    padding-right: 3px;
}

.pagination .fa-arrow-right {
    padding-left: 3px;
}

/*--- In-page nav sidebar ---*/
.sidebar {
  display: none;
}

/*--- SC Player ---*/
.player {
  clear: none;
}

/*--- Section B Player ---*/
@media only screen and ( max-width: 1499px ) and ( min-width: 992px ) {
  .section-b .player .player-menu a {
    font-size: 1.4rem;
  }
}

@media only screen and ( max-width: 991px ) and ( min-width: 768px ) {
  .section-b .player .player-menu a {
    font-size: 1.1rem;
  }

  .section-b .player .player-menu figure {
    padding: 0 2px;
  }

  .section-b .player img.sc-logo {
    width: 70px;
  }
}

@media only screen and ( max-width: 767px ) and ( min-width: 500px ) {
  .section-b .player .player-menu a {
    font-size: 1.4rem;
  }

  .section-b .player img.sc-logo {
    width: 120px;
  }
}

/**
 *===== Prevents FOUC =====*
 */
.slick-container .player.top-story {
	opacity: 0;
	transition: opacity 0.5s ease-in-out;
}

.slick-container.slick-initialized .player.top-story {
	opacity: 1;
}

/*--- In the event there is no slick carousel ( only one story present ) ---*/
.top-story-container.single .player.top-story {
  opacity: 1;
  transition: none;
}

#gradient {
  background: white;
  background: -webkit-linear-gradient(white, #f8f8f8);
  background: -o-linear-gradient(white, #f8f8f8);
  background: -moz-linear-gradient(white, #f8f8f8);
  background: linear-gradient(white, #f8f8f8);
}

/*--- Section B Styles ( Front Page Section B )---*/
.section-b .player.no-play .overlay summary {
  display: flex;
  justify-content: center;
  position: absolute;
  bottom: 10%;
  font-size: 14px;
}

.section-b .player.no-play .overlay .duration-container {
  position: absolute;
  bottom: 0;
  right: 0;
}

/*--- Toggle Featured Image for player if overlay is set ---*/
.top-story-container.max .player.top-story.overlay-exists:not( .slick-center ) .source {
  -webkit-filter: opacity(0);
  filter: opacity(0);
}

@media only screen and ( min-width: 1200px ) {
  /*--- Player Center Scale ---*/
  .slick-track {
    margin: 50px 0px;
  }

  /*--- Increase the size of the center player ---*/
  .top-story-container.max .slick-center {
    transform: scale( 1.2 );
    z-index: 1035;
    transition: opacity 0.5s ease-in-out, transform 0.3s ease-in-out !important;
  }

  /*--- Section B Styles ( Front page )---*/
  .top-story-container.max .player.top-story:not( .slick-center ) .overlay .link {
    display: none;
  }

  /*--- Change non-center player display ---*/
  .top-story-container.max .player.top-story:not( .slick-center ) .overlay .tag,
  .top-story-container.max .player.top-story:not( .slick-center ) .overlay .main-play-event,
  .top-story-container.max .player.top-story:not( .slick-center ) .overlay summary,
  .top-story-container.max .player.top-story:not( .slick-center ) .overlay .duration {
    display: none;
  }

  /*--- Set grayscale and opacity to the players that are not in the center position ---*/
  .top-story-container.max .player.top-story:not( .slick-center ) .source,
  .top-story-container.max .player.top-story:not( .slick-center ) .overlay {
    opacity: .4;
    -webkit-filter: grayscale( 100% );
    filter: grayscale( 100% );
    visibility: visible;
  }

  .top-story-container.max .player.top-story:not( .slick-center ) .embed-responsive-item {
    pointer-events: none;
    visibility: hidden;
    opacity: 0;
  }
}

@media only screen and ( max-width: 1199px ) and ( min-width: 768px ) {
  /*--- Change non-center player display ---*/
	.top-story-container.max .player.top-story:not( .slick-center ) .overlay {
		display: flex;
	}

	.top-story-container.max .player.top-story:not( .slick-center ) .featured-image {
		opacity: 1;
		-webkit-filter: none;
		filter: none;
	}
}

@media only screen and ( max-width: 767px ) {
  /*--- Change non-center player display ---*/
	.top-story-container.max .player.top-story:not( .slick-center ) .overlay {
		display: none !important;
	}

	.top-story-container.max .player.top-story:not( .slick-center ) .featured-image {
		opacity: .8;
		-webkit-filter: grayscale( 100% );
		filter: grayscale( 100% );
	}
}

/*--- Archive Player ---*/
.post-type-archive-animation .player .overlay summary {
  display: none;
}

@media only screen and (min-width: 768px) {
  /*--- In-page nav sidebar ---*/
  .sidebar {
    display: block;
    max-height: calc( 100% - 205px );
    overflow-y: auto;
    position: absolute;
    width: 200px;
  }
  .sidebar ul {
    border-right: 1px solid #dddddd;
    margin: 0;
    padding: 0 2rem;
  }
  .sidebar ul li + li {
    margin-top: 0.8rem;
  }
  .sidebar ul li a {
    color: #627a88;
    display: block;
    font-size: 12px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
  }
  .sidebar ul li a:hover, .sidebar ul li a.active {
    color: #e51022;
  }
  .sidebar ul li a.active {
    font-weight: 700;
  }
  .sidebar.fixed {
    position: fixed;
    top: 200px;
  }
  .sidebar.fixed.bottom {
    bottom: 0;
    position: absolute;
    top: auto;
  }
}

/**
 *===== LAYOUT =====*
 */
/*--- Misc. defaults ---*/
#wpadminbar {
  position: fixed;
}

html {
  min-height: 100%;
}

body {
  overflow-x: hidden;
  padding-top: 80px;
}

.container-fluid {
  max-width: 1280px;
}

main {
  position: relative;
}

ul {
  list-style: none;
}

.content ul {
  list-style: disc;
}

.content nav ul {
  list-style: none;
}

.select-wrapper {
  position: relative;
}

.select-wrapper + .select-wrapper {
  margin-top: 2rem;
}

.select-wrapper::after {
  color: #647987;
  content: '\f078';
  display: block;
  font-family: 'FontAwesome';
  font-size: 1.2rem;
  margin-top: -1rem;
  pointer-events: none;
  position: absolute;
  right: 1rem;
  top: 50%;
}

.select-wrapper select {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
}

input.form-control {
  box-shadow: none;
}

.btn {
  position: relative;
  transition: background-color 0.4s ease-in-out, border-color 0.4s ease-in-out, color 0.4s ease-in-out;
  white-space: normal;
  z-index: 1;
}

.btn::before {
  border-radius: 6px;
  content: '';
  left: 0;
  height: 100%;
  opacity: 0;
  position: absolute;
  top: 0;
  width: 100%;
  transform: translate3d(0, 0, 0);
  transition: transform 0.4s, opacity 0.4s;
  transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
  z-index: -1;
}

.btn:hover::before {
  opacity: 1;
}

.input-group-btn .btn {
  border-left: none;
}

.hidden {
  clip: rect(1px, 1px, 1px, 1px);
  height: 1px;
  overflow: hidden;
  position: absolute !important;
  width: 1px;
}

/*--- Hero images ---*/
.hero-unit {
  margin-bottom: 4rem;
  max-height: 500px;
  overflow: hidden;
  position: relative;
  transition: max-height .2s ease-in-out;
}

.hero-unit img {
  height: auto;
  width: 100%;
}

/*--- Thumbnail grid ---*/
.posts-list h2 {
  margin-bottom: 3rem;
}

.posts-list h4 {
  text-align: center;
}

.posts-list .row > div {
  margin-top: 3rem;
}

.posts-list .col-xs-6:nth-child(2n + 1) {
  clear: both;
}

.posts-list figure {
  position: relative;
}

.posts-list .category-tag,
.posts-list .timestamp {
  display: block;
  padding: 0.25em 1em;
  position: absolute;
  font-size: 8.25px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.posts-list .category-tag {
  background-color: #e51022;
  color: white;
  left: 1rem;
  top: 1rem;
}

.posts-list .timestamp {
  background-color: rgba(255, 255, 255, 0.5);
  bottom: 0;
  color: #e51022;
  right: 0;
}

.posts-list a h3 {
  color: black;
  font-size: 1.2rem;
  margin-top: 1rem;
  padding: 0 0.5em;
  text-align: center;
}

.posts-list a p {
  color: black;
  font-size: 1.2rem;
  line-height: 1.75;
}

.posts-list a .read-more {
  color: #e51022;
  cursor: pointer;
  display: block;
  font-weight: 900;
  margin-top: 2rem;
  text-align: center;
  font-size: 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.posts-list a:hover h3 {
  color: #e51022;
}

img {
  display: inline-block;
  max-width: 100%;
}

/*--- Discover Page ---*/
.posts-list.parent .content {
  padding: 6rem 6rem 3rem 6rem;
}

.posts-list.parent .content .child {
  margin-top: 0;
  min-height: 0;
}

.taxonomy-post figure {
  padding-bottom: 70%;
}

.taxonomy-post .featured-image {
  background-image: url( '../images/sc-logo.svg' );
  background-position: center;
  background-size: cover;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
}

.taxonomy-post:hover .featured-image {
  opacity: 0.9;
}

.taxonomy-post h4 {
  text-align: center;
  text-transform: uppercase;
  color: #808991;
  font-size: 1.5rem;
  margin: 1.5rem 0 1.0rem 0;
  font-family: 'Mercury', 'Georgia', 'Times', serif;
}

.taxonomy-post h3.title {
  text-align: center;
  margin-top: 1.5rem;
}

.taxonomy-post p {
  padding: 0 20px;
}

@media only screen and (min-width: 768px) {
  body {
    padding-top: 216px;
  }
  /*--- Hero images ---*/
  .hero-unit img {
    max-width: none;
    min-height: 100%;
    min-width: 100%;
  }
  .hero-unit.parent h2 {
     font-size: 60px ;
    }
  .posts-list .col-xs-6:nth-child(2n + 1) {
    clear: none;
  }
  .posts-list .taxonomy-post.col-xs-6:nth-child(2n + 1) {
    clear: both;
  }
  .posts-list a h3 {
    font-size: 1.4rem;
    margin-top: 2rem;
  }
  .posts-list a p {
    font-size: 1.2rem;
  }

}

@media only screen and (min-width: 768px) and (max-width: 980px) {
  body {
    padding-top: 100px;
  }
}

@media only screen and (min-width: 1280px) {
  .hero-unit {
    max-height: 500px;
  }
}

@media only screen and (max-width: 1279px){
  .hero-unit {
    max-height: 350px;
  }
}

/**
 *===== TEMPLATE SPECIFIC =====*
 */
.front-page h2,
.front-page h3 {
  text-align: center;
}

.front-page h2 {
  margin-top: 0;
}

.top-story-container {
  position: relative;
  margin-bottom: 8rem;
}

/*--- Toggle Chevron Icons for carousel ---*/
.top-story-container:hover .toggle-players {
  visibility: visible;
  opacity: .8;
}

.top-story-container:hover i.fa-chevron-circle-left {
  left: 1%;
}

.top-story-container:hover i.fa-chevron-circle-right {
  right: 1%;
}

.top-story-container .toggle-players {
  cursor: pointer;
  color: #666;
  position: absolute;
  top: 40%;
  z-index: 1;
  font-size: 80px;
  opacity: 0;
  visibility: hidden;
  transition: left 0.5s ease-in-out, right 0.5s ease-in-out, visibility 0.5s ease-in-out, opacity 0.5s ease-in-out;
}

.top-story-container i.fa-chevron-circle-left {
  left: 0;
}

.top-story-container i.fa-chevron-circle-right {
  right: 0;
}

@media only screen and ( max-width: 1499px ) and ( min-width: 1201px ) {
  .top-story-container .toggle-players {
    font-size: 45px;
    top: 42%;
  }
}

@media only screen and ( max-width: 1199px ) and ( min-width: 768px ) {
  .top-story-container .toggle-players {
    color: #fff;
    font-size: 32px;
    top: 45%;
  }
}

@media only screen and ( max-width: 768px ) and ( min-width: 481px ) {
  .top-story-container .toggle-players {
    color: #fff;
    font-size: 45px;
  }
}

@media only screen and ( max-width: 480px ) {
 .top-story-container i.fa-chevron-circle-left {
    left: 2%;
  }

  .top-story-container i.fa-chevron-circle-right {
    right: 2%;
  }

  .top-story-container .toggle-players {
    font-size: 36px;
    color: #fff;
  }
}

/*--- Single Templates ---*/
.top-story-container.single .toggle-players {
  display: none;
}

.most-loved a h3 {
  color: white;
  font-size: 1.6rem;
  padding: 0 4rem;
  position: absolute;
  top: 50%;
  width: 100%;
}

.most-loved a:hover h3 {
  color: #e51022;
}

.most-loved i.fa-play {
  top: calc(50% - 6rem);
}


.featured-today .column,
.become-inspired .column {
  display: flex;
  flex-direction: column;
  padding: 0 15px;
}

section.become-inspired,
.related-stories {
  margin-bottom: 4rem;
}

section.become-inspired a h3,
.related-stories a h3 {
  color: #646262;
  font-family: "Mercury", "Georgia", "Times", serif;
  font-weight: 700;
  line-height: 1.75;
  padding: 0;
  text-align: left;
}

@media only screen and (min-width: 768px) {
  .front-page .hero-unit {
    margin-bottom: 8rem;
  }
  .featured-today .category-tag,
  .featured-today .timestamp,
  .most-loved .category-tag,
  .most-loved .timestamp,
  .become-inspired .category-tag,
  .become-inspired .timestamp,
  .related-stories .category-tag,
  .related-stories .timestamp {
    font-size: 12px;
  }
  .featured-today .row > div:nth-child(3n),
  .become-inspired .row > div:nth-child(3n),
  .related-stories .row > div:nth-child(3n) {
    clear: none;
  }
  .featured-today a h3 {
    font-size: 1.6rem;
  }
  .most-loved a h3 {
    font-size: 2rem;
  }
}

/*--- Generic/standard page styles ---*/
.page:not(.home) .hero-unit,
.single #stops .hero-unit {
  margin-bottom: -6rem;
}

.page .parent {
  margin-bottom: 0 !important;
}

.hero-unit.parent h2 {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  align-items: center;
  color: #fff;
  display: flex;
  justify-content: center;
  text-transform: none;
  font-weight: normal;
  text-shadow: #080808 0px 0px 4px;
  font-weight: bold;
  margin: 0px;
  padding-left: 5%;
  padding-right: 5%;
}

.page:not(.home) h1 {
  text-align: center;
}

.single #stops h1 {
  text-align: center;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  line-height: 1.1;
  color: #333;
}

.page:not(.home) h2.intro {
  color: #e51022;
  font-family: "Mercury", "Georgia", "Times", serif;
  font-size: 2.4rem;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.5;
  margin-bottom: 4rem;
  margin-top: 0;
  text-align: center;
  text-transform: none;
}

.page:not(.home) h3 .text-primary {
  display: block;
  font-size: 2.4rem;
  margin-bottom: 2rem;
  margin-top: 4rem;
  text-align: center;
}

.page-title h1 {
  background-color: white;
  padding: 4rem 2rem;
}

.page-title-full-width {
  background-color: #eff3f3;
  margin-bottom: 6rem;
  padding: 2rem 0;
}

.page-title-full-width h1 {
  font-size: 30px;
}

/*--- FAQ-specific styles ---*/
.faq .text-primary {
  color: black;
  font-weight: 900;
}

.faq h2 {
  font-size: 24px;
  margin-top: 4rem;
}

.faq h3,
.faq p {
  color: #646262;
  text-align: left;
}

.faq .row {
  margin-bottom: 6rem;
}

.faq .row p {
  color: black;
  font-weight: 900;
  font-size: 13.5;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.faq .row .condensed {
  list-style: none;
  padding: 0;
}

.faq .row .condensed + p {
  margin-top: 4rem;
}

.faq .row .condensed li + li {
  margin-top: 1.5rem;
}

.faq .row .condensed a {
  color: black;
  font-size: 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.faq .row .condensed a::after {
  color: #e51022;
  content: '\f054';
  font-family: 'FontAwesome';
  margin-left: 1rem;
}

.faq .row .condensed a:hover {
  color: #e51022;
}

@media only screen and (min-width: 768px) {
  .page:not(.home) .hero-unit,
  .single #stops .hero-unit {
    margin-bottom: -12rem;
    margin-top: 15px;
  }

  .page:not(.home) .page-title h1,
  .single #stops .page-title h1 {
    font-size: 4rem;
    padding: 6rem 4rem;
  }
  .page:not(.home) h2.intro {
    font-size: 2.8rem;
    margin-bottom: 6rem;
  }
  .page:not(.home) h3 .text-primary {
    font-size: 3rem;
    margin-top: 6rem;
    margin-bottom: 3rem;
  }
  .faq .content > h2,
  .faq .content > h3,
  .faq .content > p,
  .faq .content > ul {
    padding-left: 15%;
    padding-right: 15%;
  }
  .faq .content > ul {
    padding-left: calc(15% + 2rem);
  }

  .page-title-full-width {
    margin-top: 15px;
  }
}

.single {
  /*--- Blog single ---*/
}

.single .row#gradient {
  margin: 0;
}

@media only screen and ( min-width: 768px ) {
  .single .hero {
    margin: 12px auto 0;
    max-width: 840px;
  }
}

.hero-unit.parent h2 {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  align-items: center;
  color: #fff;
  display: flex;
  justify-content: center;
  text-transform: none;
  font-weight: normal;
  text-shadow: #080808 0px 0px 4px;
  font-weight: bold;
}

.single .hero-unit {
  margin-bottom: 0;
}

.single main h1,
.single main h2 {
  color:#7E54A3;
  letter-spacing: 0;
  line-height: 1.1;
  text-align: left;
  text-transform: none;
}

.single main h2 {
  margin: 0;
}

.single main h5 {
  line-height: 1.75;
}

.single .head {
  background-color: #f8f8f8;
  padding-bottom: 3rem;
  padding-top: 3rem;
}

.single .head h1 {
  margin: 0;
}

.single .head .transcript.btn {
  border-color: #e51022;
  border-radius: 100px;
  border-width: 2px;
  color: #e51022;
  font-weight: 700;
  margin-top: 2rem;
  font-size: 9px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.single .head .transcript.btn:hover {
  background-color: #e51022;
  color: white;
}

.single .article-body {
  padding-bottom: 2rem;
  padding-top: 2rem;
}

.single .article-body h1 {
  font-size: 1.6rem;
  margin-bottom: 2rem;
}

.single .article-body h2 {
  margin: 20px 0;
}

.single .article-body p {
  color: #646262;
}

.single .article-body p img {
  clear: both;
  display: block;
  float: none !important;
  height: auto;
  margin: 2rem auto;
  /*--- Set image alignment to "none" in editor to force full-width ---*/
}

.single .article-body iframe {
  display: block;
  margin: auto;
  max-width: 100%;
  padding: 10px 0;
}

.single .article-body p img.alignnone {
  display: block;
  height: auto;
  margin-left: 0;
  margin-right: 0;
  width: 100%;
}

.single .article-body .read-more-link {
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.single #single-iframe {
  width: 100%;
}

.single .blog .head {
  background-color: white;
  padding-bottom: 2rem;
  padding-top: 4rem;
  position: relative;
}

.single .blog .head h2 {
  color: #646262;
  margin-bottom: 1rem;
  font-size: 15px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.single .blog .head h1 {
  color: #e51022;
  font-size: 3rem;
  padding: 0;
}

.single .blog .head h3 {
  color: #646262;
  font-size: 1.4rem;
  margin-bottom: 0;
}

.single .blog .article-body {
  background-color: white;
}

.single .blog .taxonomies,
.single .blog .social.share {
  float: none;
}

.single .blog .social.share {
  text-align: center;
}

.single .blog .taxonomies li.share-this-story,
.single .blog .taxonomies li.download,
.single .blog .social.share li.share-this-story,
.single .blog .social.share li.download {
  display: none;
}

.single .credits-title {
   color: #e51022;
   font-size: 1.6rem;
   margin-bottom: 10px;
}

.single .credits-funders {
   margin-bottom: 20px;
}

.single footer nav {
  margin-top: 3rem;
  margin-bottom: 80px;
}

.single footer nav::before {
  background-color: #eff3f3;
  content: '';
  /*display: block;*/
  height: 1px;
  margin-bottom: 3rem;
}

.single footer nav .prev {
  float: right;
}

.single footer nav span a {
  background-color: #b2c1c4;
  border: none;
  color: white;
  cursor: pointer;
  font-weight: 700;
  padding: 1em 1.5em;
  font-size: 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 4px;
}

.single footer nav span a:hover {
  background-color: #e51022;
}

.single .transcript-container {
  padding: 5px;
}

.single .transcript-container footer {
  margin-top: 1em;
  text-align: center;
}

.single .transcript-container a.close {
  float: none;
  font-size: 0.875em;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

@media only screen and ( max-width: 480px ) {
  #animation-post-links-container {
    padding: 0 5px;
  }
}

/*.single footer nav .btn.disabled, .single footer nav .btn.disabled:hover {
  background-color: #eff3f3;
  color: #b2c1c4;
  cursor: default;
}*/

footer {
  /*--- Keyword links ---*/
}

footer .taxonomies li {
  display: inline-block;
  margin-bottom: 0.25em;
}

footer .taxonomies li a {
  background-color: #b2c1c4;
  border-radius: 100px;
  color: white;
  display: inline-block;
  padding: 0.25em 1em;
  transition: background-color 0.2s ease-in-out;
  font-size: 10.5px;
  letter-spacing: 0.05em;
  text-align: center;
  text-transform: uppercase;
}

footer .taxonomies li a:hover {
  background-color: #e51022;
}

footer .credits-container {
  background-color: #f8f8f8;
  color: #67747e;
  font-weight: 700;
  line-height: 1.5;
  margin-top: 3rem;
  padding-bottom: 2rem;
  padding-top: 3rem;
  font-size: 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

footer .credits-container h3 {
  color: #646262;
  font-size: 1.2rem;
  margin: 0;
}

footer .sponsor {
  display: none;
}

.related-stories.posts-list h2 {
  color: #67747e;
  margin: 0 0 30px 0;
  text-align: center;
}

.related-stories.posts-list .row > div {
  margin-top: 0;
}

@media only screen and (max-width: 768px) {
  .single .credits-container .credits {
    margin-bottom: 15px;
  }

  .hero-unit.parent h2 {
    font-size: 40px ;
  }
}

@media only screen and (max-width: 480px) {
  .hero-unit.parent h2 {
     font-size: 28px ;
    }
}

@media only screen and (min-width: 768px) {
  .single {
    /*--- Limit width of article content for readability ---*/
    /*--- Slick library overrides ---*/
  }
  .single .head.container-fluid,
  .single .head .container-fluid,
  .single .article-body,
  .single .taxonomies,
  .single .credits-container .container-fluid,
  .single aside.subscribe.podcast .container-fluid,
  .single nav.container-fluid,
  #menu .navbar-form {
    max-width: 960px;
    padding-left: 6rem;
    padding-right: 6rem;
  }

  .single .player-container {
    max-width: 960px;
    padding-left: 6rem;
    padding-right: 6rem;
    margin-right: auto;
    margin-left: auto;
    background-color: #f8f8f8;
  }
  .single .head {
    padding-top: 5rem;
  }
  .single .head .social.share {
    padding-top: 5rem;
  }
  .single .head .transcript.btn {
    margin-top: 5rem;
  }
  .single .article-body h1 {
    font-size: 3rem;
    margin-bottom: 6rem;
    margin-top: 7.5rem;
  }
  .single .article-body p img {
    /*--- Default images will be displayed centered between paragraphs ---*/
    margin-bottom: 6rem;
    margin-top: 6rem;
    /*--- Add "alignnone" class to force image size to larger than text column ---*/
    /*--- Existing class to float images left ---*/
    /*--- Existing class to float images right ---*/
  }
  .single .article-body p img.alignnone {
    margin-left: -4rem;
    margin-right: -4rem;
    max-width: none;
    width: calc( 100% + 8rem);
  }
  .single .article-body p img.pull-left, .single .article-body p img.alignleft {
    /*margin-bottom: 4rem;
    margin-top: 4rem;
    margin-right: 4rem;*/
    float: left !important;
    margin-top: 5px;
    margin-right: 15px;
    margin-bottom: 5px;
  }
  .single .article-body p img.pull-right, .single .article-body p img.alignright {
    /*margin-bottom: 4rem;
    margin-top: 4rem;
    margin-left: 4rem;*/
    float: right !important;
    margin-top: 5px;
    margin-left: 15px;
    margin-bottom: 5px;
  }
  .single footer .sponsor {
    display: block;
  }
  .single .slick-slider {
    position: relative;
  }
  .single .slick-slider .slick-list {
    overflow-x: hidden;
  }
  .single .slick-slider .slick-arrow {
    cursor: pointer;
    height: 4rem;
    margin-top: -2rem;
    overflow: hidden;
    position: absolute;
    top: 50%;
    width: 4rem;
  }
  .single .slick-slider .slick-arrow::before {
    color: black;
    font-family: 'FontAwesome';
    font-size: 4rem;
    display: block;
    line-height: 4rem;
  }
  .single .slick-slider .slick-prev {
    left: -6rem;
  }
  .single .slick-slider .slick-prev::before {
    content: '\f053';
  }
  .single .slick-slider .slick-next {
    right: -6rem;
  }
  .single .slick-slider .slick-next::before {
    content: '\f054';
  }
  .single .slick-slider .slick-disabled {
    cursor: default;
    opacity: 0.25;
  }
}

.blog .hero-unit,
.archive-blog .hero-unit,
.archive-animation .hero-unit {
  margin-bottom: -6rem;
}

.blog .posts-list,
.archive-blog .posts-list,
.archive-animation .posts-list {
  position: relative;
  /*text-align: center;*/
}

/*.blog .posts-list figure,
.archive-blog .posts-list figure {
  margin-bottom: 3rem;
}*/

/*.blog .posts-list h2,
.archive-blog .posts-list h2 {
  font-size: 1.6rem;
  font-weight: 400;
}*/

.blog .posts-list p,
.archive-blog .posts-list p,
.archive-animation .posts-list p {
  text-align: left;
}

.archive-blog h1,
.archive-animation h1 {
  background-color: white;
  display: inline-block;
  font-family: "Mercury", "Georgia", "Times", serif;
  font-weight: 700;
  letter-spacing: 0;
  margin-bottom: 0;
  max-width: 100%;
  padding: 4rem 2rem;
  text-transform: none;
}

@media only screen and (min-width: 768px) and (max-width: 980px) {
  .blog .hero-unit,
  .archive-blog .hero-unit,
  .archive-animation .hero-unit {
    margin-bottom: -8rem;
  }
  .blog h1,
  .archive-blog h1,
  .archive-animation h1 {
    font-size: 4rem;
    padding: 6rem 4rem;
  }
}

.archive-animation h1.animation,
.archive-blog h1.blog {
  width: 100%;
  text-align: left;
}

@media only screen and (min-width: 981px) {
  .blog .hero-unit,
  .archive-blog .hero-unit,
  .archive-animation .hero-unit {
    margin-bottom: -10rem;
  }
  .blog h1,
  .archive-blog h1,
  .archive-animation h1 {
    font-size: 6rem;
    padding: 8rem 6rem;
  }
}

.archive-listen {
  /*--- Search controls ---*/
}

.archive-listen .search-form {
  background-color: #eff3f3;
}

.archive-listen .search-form .input-group,
.archive-listen .search-form .filter-panel {
  padding: 2rem 4rem;
}

.archive-listen .search-form input.form-control,
.archive-listen .search-form .btn {
  background: none;
  border-radius: 0;
  border-color: transparent;
  border-bottom-color: #b2c1c4;
  box-shadow: none;
  color: #e51022;
  font-size: 2.4rem;
  height: 4.8rem;
  text-transform: uppercase;
}

.archive-listen .search-form select.form-control {
  border: 1px solid white;
  padding-right: 25px;
  transition: border-color 0.2s ease-in-out;
}

.archive-listen .search-form select.form-control:focus {
  border-color: #b0c1c4;
  box-shadow: none;
}

@media only screen and (min-width: 768px) {
  .archive-listen {
    /*--- Search controls ---*/
  }
  .archive-listen .search-form {
    text-align: center;
    padding: 4rem;
    margin-top: 15px;
  }
  .archive-listen .search-form .input-group {
    margin: auto;
    max-width: 800px;
  }
  .archive-listen .search-form .input-group .form-control,
  .archive-listen .search-form .input-group .btn {
    box-shadow: none;
  }
  .archive-listen .search-form .most-popular,
  .archive-listen .search-form .filter-panel {
    display: inline-block;
    font-weight: 700;
    margin: 0;
    padding: 0;
  }
  .archive-listen .search-form .most-popular {
    margin-right: 4rem;
    width: auto;
  }
  .archive-listen .search-form .filter-panel {
    border: none;
    width: 50%;
  }
  .archive-listen .search-form .filter-panel h4 {
    display: none;
  }
  .archive-listen .search-form #filters {
    display: block;
    height: auto !important;
  }
  .archive-listen .search-form #filters .select-wrapper {
    display: inline-block;
    width: calc( 100% / 3);
  }
  .archive-listen .search-form #filters .select-wrapper + .select-wrapper {
    padding-left: 1rem;
  }
  .archive-listen .posts-list .col-xs-6:nth-child(4n + 1) {
    clear: both;
  }
}

.search-results {
  /*--- Search controls ---*/
}

.search-results:not(.archive) .search-form {
  background-color: #eff3f3;
  margin-bottom: 4rem;
  padding: 8rem;
}

.search-results:not(.archive) .search-form h2 {
  color: #051417;
  font-weight: 400;
  text-align: center;
}

.search-results:not(.archive) .search-form .input-group {
  margin: auto;
  max-width: 800px;
}

.search-results:not(.archive) .search-form .input-group .form-control,
.search-results:not(.archive) .search-form .input-group .btn {
  border-color: transparent;
  box-shadow: none;
  height: 4rem;
}

.search-results:not(.archive) .search-form .input-group .form-control {
  font-size: 15px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.search-results .results-info {
  display: none;
}

.search-results .col-xs-6.col-sm-4 {
  margin-bottom: 3rem;
}

.search-results .no-results {
  text-align: center;
}

@media only screen and (min-width: 768px) {
  .search-results .posts-list {
    min-height: 220px;
  }
  .search-results .results-info {
    display: block;
  }
  .search-results .results-info .results-name {
    font-weight: 700;
    margin-bottom: 2rem;
    font-size: 18px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
  }
  .search-results .results-info .results-count {
    color: #b2c1c4;
    text-align: right;
    font-size: 12px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
  }
  .search-results .sidebar {
    padding-top: 3rem;
  }
  .search-results .no-results {
    margin: 0;
    padding: 0;
    text-align: left;
  }
  .search-results .posts-list .col-sm-4:nth-child(3n + 1) {
    clear: both;
  }
  .search-results .search-form {
    /*margin-top: 15px;*/
    margin-top: 0;
  }
}

.modal-content {
  border: none;
}

@media only screen and (min-width: 768px) {
  .modal-dialog {
    width: 750px;
  }
}

@media only screen and (max-width: 1200px) {
  .single footer nav {
    margin-top: 3rem;
    margin-bottom: 30px;
  }
}

.participantdonations {
  /*--- Participant Donations ---*/
}

.participantdonations .btn,
.participantdonations input,
.participantdonations textarea {
  border-radius: 0;
}

.participantdonations #submit,
.progress-bar {
  background-color: #5dbac6;
}

.participantdonations #submit {
  border: none;
}

.participantdonations .bg-info {
  background-color: #ffffff;
}

.alert-danger.payment-errors::-webkit-input-placeholder {
  color: rgba(169, 68, 66, 1);
}

.alert-danger.payment-errors {
  background-color: rgba(242,222,222,0.65);
  border: 1px solid;
}

.participantdonations #message.hide,
#donate-form.hide {
  display: none;
}

#make-another-donation {
  border: none;
  font-size: 16px;
  padding: 0 0 1px 0;
}

#progress-display.hide {
  display: none;
  height: auto;
}

@media ( max-width: 481px ) {
  .participantdonations-main-content {
    display: flex;
    flex-direction: column;
    font-size: 14px;
  }

  .participantdonations .col-xs-6:not(.card-expiration) {
    width: 100% !important;
  }
}

/**************************** Popout notifications ****************************/

.popout-notification {
  position: fixed;
  bottom: -700px;
  z-index: 10;
  background-color: #e51022;
  border-radius: 0;
  font-weight: 900;
  text-transform: uppercase;
  color: white;
  transition: 1s;
  padding: 10px 0;
  width: 100%;
}

.popout-notification.slide-up {
  bottom: 0px;
}

.popout-slider {
  display: none;
}

.popout-content-container {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  max-width: 1280px;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

.popout-notification .btn {
  border-color: transparent;
  color: #67747e;
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
}

@media only screen and (min-width: 1200px) {
  .popout-notification p {
    margin: 0 20px 0 0;
    flex: 1;
  }

  .popout-cta {
    margin-right: 10px;
  }
}

@media only screen and (max-width: 1199px) and (min-width: 981px) {
  .popout-content-container {
    display: block;
    text-align: center;
  }

  .popout-cta {
    width: 40%;
    margin-right: 10px;
  }

  .dismiss-notification {
    width: 40%;
  }
}

@media only screen and (max-width: 980px) {
  .popout-slider {
    display: block;
    position: absolute;
    top: 0px;
    right: 5px;
    font-size: 2rem;
    padding: 0;
  }

  .popout-slider:focus {
    outline: 0;
  }

  .popout-content-container {
    display: block;
    text-align: center;
    padding-right: 30px;
  }

  .popout-cta {
    width: 90%;
  }

  .dismiss-notification {
    width: 90%;
    margin-top: 10px;
  }
}

/************************** End popout notifications **************************/

/*--- Player Backdrop ---*/
.player-backdrop {
  visibility: hidden;
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: rgba( 51, 51, 51, 0 );
  z-index: 1035;
  top: 0;
  left: 0;
  transition-property: background-color, visibility;
  transition-duration: 5s, 5s;
  transition-timing-function: ease-in-out, ease-out;
}

.disable-backdrop {
  visibility: hidden;
  position: fixed;
  right: 20px;
  top: 60px;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: rgba( 255, 255, 255, 0 );
  font-size: 12px;
  padding: .25em 1em;
  cursor: pointer;
  transition-property: color, visibility;
  transition-duration: 8s, 8s;
  transition-timing-function: ease-in-out, ease-out;
}

.fade-in {
  visibility: visible;
}

.fade-out {
  transition-duration: 1s, 1s;
}

.player-backdrop.fade-in {
  background-color: rgba( 51, 51, 51, 0.9 );
}

.disable-backdrop.fade-in {
  color: rgba( 255, 255, 255, 1 );
}

/*--- Contact Forms ---*/
.contact-page-title {
  font-size: 4rem;
  padding: 6rem 4rem;
}

#main #contact fieldset {
  border: none;
  margin: 0;
  padding: 0;
}

#main #contact input {
  border-radius: 0;
}

#main #contact button {
  margin-top: 8px;
  border-radius: 0px;
}

.contact-sidebar {
  margin-top: 250px;
  line-height: 1.75;
}

.contact-sidebar h3 {
  text-align: left;
  font-size: 16px;
  color: #647987;
}

.contact-sidebar .textwidget {
  margin-bottom: 40px;
}

@media only screen and ( max-width: 768px ) {
  #main #contact {
    padding: 10px;
  }

  .contact-sidebar {
    padding: 30px;
  }
}

/*--- About Page ---*/
.about-flex-container {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-flow: row wrap;
  justify-content: space-between;
  list-style: none !important;
  padding: 0;
  margin: 0;
}

.about-flex-container h3 {
  max-width: 200px;
}

@media only screen and ( max-width: 430px ) {
  .about-flex-container {
    justify-content: center;
  }
}

article.about .col-xs-12 + .col-xs-12 {
  margin-top: 1.5em;
}

@media only screen and ( min-width: 768px ) {
  article.about .col-xs-12 + .col-xs-12 {
    margin-top: 0;
  }
}

aside.donate#communities-grey-bar {
    margin-top:  -4rem;
}

aside.donate#communities-grey-bar::before,
aside.donate#communities-grey-bar::after {
    height: 0;
}
