/*
Theme Name: Migration Week
Theme URI: http://underscores.me/
Author: Quinn Keast
Author URI: http://quinnkeast.com
Description: Theme for Migration Week 2014
Version: 1.0-wpcom
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: migration-week
Tags:

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.

 Migration Week is based on Underscores http://underscores.me/, (C) 2012-2014 Automattic, Inc.

Resetting and rebuilding styles have been helped along thanks to the fine work of
Eric Meyer http://meyerweb.com/eric/tools/css/reset/index.html
along with Nicolas Gallagher and Jonathan Neal http://necolas.github.com/normalize.css/
and Blueprint http://www.blueprintcss.org/
*/

/*--------------------------------------------------------------
Critical stuffs
--------------------------------------------------------------*/
body {
  background-color: #f7f6e8;
  color: #383834;
  font-size: 15px;
  font-family: 'Whitney SSm A', 'Whitney SSm B', 'Verdana', 'Helvetica', sans-serif;
  font-weight: 500;
}

/*--------------------------------------------------------------
Typography
--------------------------------------------------------------*/
p {
  font-weight: 500;
  font-style: normal;
  font-size: 1em;
  line-height: 1.5;
  margin-bottom: 1em;
  color: #3b3b3b;
}

h1,
h2,
h3,
h4,
h5 {
  font-weight: 600;
  font-style: normal;
}

h1 {
  font-size: 1.875em;
  line-height: 1.2;
  margin: 1em 0;
}

h2 {
  font-size: 1.6em;
  line-height: 1.2;
  margin: 1.5em 0 1em;
  font-weight: 600;
  font-style: normal;
  text-transform: capitalize;
}

h3 {
  font-size: 1.25em;
}

@media (max-width: 767px) {
  h1,
  h2,
  h3,
  h4,
  h5 {
    font-size: 1em;
  }
}

a {
  color: #3b3b3b;
}

a:hover {
  text-decoration: none;
  color: #e6a924;
}

p a,
.checkbox a {
  border-bottom: 2px solid #e6a924;
}

.lead {
  font-size: 1.25em;
  line-height: 1.5;
  font-weight: 500;
}

.posted-on,
.byline {
  font-weight: 600;
  font-style: normal;
  text-transform: uppercase;
  font-size: .75em;
}

blockquote {
  float: left;
  max-width: 40%;
  font-size: 1em;
  margin: 1em 2em 1em 0;
  border: none;
  padding: 0;
}

blockquote p {
  font-weight: 600;
  font-style: normal;
  font-size: 1.5em;
  line-height: 1.4;
  display: inline;
}

blockquote:before {
  height: 8px;
  width: 100%;
  background-image: url("images/squiggle.png");
  background-repeat: repeat-x;
  display: inline-block;
  margin-bottom: 3em;
}

blockquote:after {
  height: 8px;
  width: 100%;
  background-image: url("images/squiggle.png");
  background-repeat: repeat-x;
  display: inline-block;
  margin-top: 3em;
}

hr {
  border-top: 1px solid #cfcebe;
  margin: 1em 0;
}

ul, ol {
  padding-left: 20px;
}

ol li {
  margin-bottom: 1em;
}

/*--------------------------------------------------------------
Menus
--------------------------------------------------------------*/
.main-navigation {
  clear: both;
  display: block;
  float: right;
  position: relative;
  z-index: 20;
}

.main-navigation ul {
  list-style: none;
  margin: 30px -15px 0 0;
  padding-left: 0;
}

.main-navigation li {
  float: left;
  position: relative;
  margin-left: 1.5em;
}

.main-navigation a {
  display: block;
  text-decoration: none;
  font-weight: 600;
  font-style: normal;
  color: #3b3b3b;
  text-transform: uppercase;
  font-size: .825em;
  transition: ease .8s;
  -webkit-transition: ease .8s;
  -moz-transition: ease .8s;
}

.main-navigation .current_page_item a {
  font-weight: 600;
}

.main-navigation ul ul {
  box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
  float: left;
  position: absolute;
  top: 1.5em;
  left: -999em;
  z-index: 99999;
}

.main-navigation ul ul ul {
  left: -999em;
  top: 0;
}

.main-navigation ul ul a {
  width: 200px;
}

.main-navigation ul ul li {}

.main-navigation li:hover > a {}

.main-navigation ul ul :hover > a {}

.main-navigation ul ul a:hover {}

.main-navigation ul li:hover > ul {
  left: auto;
}

.main-navigation ul ul li:hover > ul {
  left: 100%;
}

.main-navigation .current_page_item > a,
.main-navigation .current-menu-item > a,
.main-navigation .current_page_ancestor > a {}

/* Small menu */
.menu-toggle {
  display: none;
}

.footer-navigation {
  display: block;
  float: left;
}

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

.footer-navigation li {}

.footer-navigation a {
  display: block;
  text-decoration: none;
  font-weight: 600;
  font-style: normal;
  text-transform: uppercase;
  color: #e6a922;
  font-size: .6875em;
  letter-spacing: 1px;
  padding-bottom: 10px;
}

.footer-navigation a:hover {
  color: #ffd64f;
}

@media screen and (max-width: 600px) {
  .menu-toggle,
  .main-navigation.toggled .nav-menu {
    display: block;
  }

  .main-navigation ul {
    display: none;
  }
}

.site-main .comment-navigation,
.site-main .paging-navigation,
.site-main .post-navigation {
  margin: 0 0 1.5em;
  overflow: hidden;
}

.comment-navigation .nav-previous,
.paging-navigation .nav-previous,
.post-navigation .nav-previous {
  float: left;
  width: 50%;
}

.comment-navigation .nav-next,
.paging-navigation .nav-next,
.post-navigation .nav-next {
  float: right;
  text-align: right;
  width: 50%;
}

/*--------------------------------------------------------------
Alignments
--------------------------------------------------------------*/
.alignleft {
  display: inline;
  float: left;
  margin-right: 1.5em;
}

.alignright {
  display: inline;
  float: right;
  margin-left: 1.5em;
}

.aligncenter {
  clear: both;
  display: block;
  margin: 0 auto;
}

/*--------------------------------------------------------------
Clearings
--------------------------------------------------------------*/
.clear:before,
.clear:after,
.entry-content:before,
.entry-content:after,
.comment-content:before,
.comment-content:after,
.site-header:before,
.site-header:after,
.site-content:before,
.site-content:after,
.site-footer:before,
.site-footer:after {
  content: "";
  display: table;
}

.clear:after,
.entry-content:after,
.comment-content:after,
.site-header:after,
.site-content:after,
.site-footer:after {
  clear: both;
}

/*--------------------------------------------------------------
Widgets
--------------------------------------------------------------*/
.widget {
  margin: 0;
}

/* Make sure select elements fit in widgets */
.widget select {
  max-width: 100%;
}

/* Search widget */
.widget_search .search-submit {
  display: none;
}

/*--------------------------------------------------------------
Posts and pages
--------------------------------------------------------------*/
.sticky {
  display: block;
}

.hentry {}

.byline,
.updated:not(.published) {
  display: none;
}

.single .byline,
.group-blog .byline {
  display: inline;
}

.page-content,
.entry-content,
.entry-summary {}

.page-links {
  clear: both;
  margin: 0 0 1.5em;
}

/*--------------------------------------------------------------
Asides
--------------------------------------------------------------*/
.blog .format-aside .entry-title,
.archive .format-aside .entry-title {
  display: none;
}

/*--------------------------------------------------------------
Infinite scroll
--------------------------------------------------------------*/
/* Globally hidden elements when Infinite Scroll is supported and in use. */
.infinite-scroll .paging-navigation,
.infinite-scroll.neverending .site-footer {
  /* Theme Footer (when set to scrolling) */
  display: none;
}

/* When Infinite Scroll has reached its end we need to re-display elements that were hidden (via .neverending) before */
.infinity-end.neverending .site-footer {
  display: block;
}

/*--------------------------------------------------------------
Media
--------------------------------------------------------------*/
.page-content img.wp-smiley,
.entry-content img.wp-smiley,
.comment-content img.wp-smiley {
  border: none;
  margin-bottom: 0;
  margin-top: 0;
  padding: 0;
}

/* Make sure embeds and iframes fit their containers */
embed,
iframe,
object {
  max-width: 100%;
}

.size-full {
  max-width: 100%;
  height: auto;
}

/*--------------------------------------------------------------
Captions
--------------------------------------------------------------*/
figcaption {
  display: table;
  width: 100%;
  -webkit-font-smoothing: antialiased;
  color: #3b3b3b;
  height: auto;
  padding: 5px 0 0;
  font-weight: 500;
  font-style: normal;
  margin: 0;
  font-style: oblique;
  font-size: 0.85em;
}

figcaption strong {
  font-weight: 600;
}

figcaption .caption {
  display: table-cell;
  float: left;
  width: 70%;
  padding: 0 20px 0px 0;
  border-right: 1px solid #e6a924;
  font-size: .875em;
  line-height: 1.5;
  font-style: italic;
}

figcaption .credit {
  display: table-cell;
  padding: 0 0 0 20px;
  float: left;
  width: 30%;
  font-size: .875em;
  line-height: 1.5;
  color: #828282;
  font-weight: 500;
  font-style: normal;
  letter-spacing: -.5px;
}

.wp-caption {
  margin: 2em 0;
  max-width: 100%;
}

.wp-caption img[class*="wp-image-"] {
  display: block;
  margin: 0 auto;
}

.wp-caption-text {}

.wp-caption .wp-caption-text {
  margin: 0.8075em 0;
}

img[class*="wp-image-"] {
  width: 100%;
  margin: 2em 0 3em;
}

/*--------------------------------------------------------------
Galleries
--------------------------------------------------------------*/
.gallery {
  margin-bottom: 1.5em;
}

.gallery-item {
  display: inline-block;
  text-align: center;
  vertical-align: top;
  width: 100%;
}

.gallery-columns-2 .gallery-item {
  max-width: 50%;
}

.gallery-columns-3 .gallery-item {
  max-width: 33.33%;
}

.gallery-columns-4 .gallery-item {
  max-width: 25%;
}

.gallery-columns-5 .gallery-item {
  max-width: 20%;
}

.gallery-columns-6 .gallery-item {
  max-width: 16.66%;
}

.gallery-columns-7 .gallery-item {
  max-width: 14.28%;
}

.gallery-columns-8 .gallery-item {
  max-width: 12.5%;
}

.gallery-columns-9 .gallery-item {
  max-width: 11.11%;
}

.gallery-caption {
  display: block;
}

/*--------------------------------------------------------------
Everything else
--------------------------------------------------------------*/
.site-header {
  position: absolute;
  width: 100%;
}

.logo {
  z-index: 10;
  position: absolute;
  float: left;
  margin-top: 60px;
  max-width: 100%;
}

@media (max-width: 767px) {
  .logo {
    max-width: 300px;
  }
}

.duc-logo {
  z-index: 10;
  position: absolute;
  right: 0;
  margin-top: 60px;
}

.squiggle {
  height: 8px;
  width: 100%;
  background-image: url("images/squiggle.png");
  background-repeat: repeat-x;
  display: inline-block;
}

.squiggle--reverse {
  background-image: url("images/squiggle-reverse.png");
}

.squiggle--bumpAfter {
  margin-bottom: 30px;
}

.hero {
  background-image: url("images/article-background-default.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center top;
  height: 100vh;
  min-height: 600px;
  width: 100%;
  z-index: 5;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 0 30rem rgba(56, 53, 48, 0.75);
}

.home-page-hero {
  width: 100%;
  height: 96vh;
  min-height: 600px;
  display: flex;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center top;
  align-content: stretch;
}

.home-page-hero .hero__content {
  margin-top: 0 !important;
  display: flex;
  align-items: flex-end;
  width: 100%;
}

.hero__content {
  display: none;
}

.hero--home {
  z-index: 5;
}

.hero--quiz {
  height: 80vh;
}

.hero__title {
  text-align: center;
  color: #f7f5e2;
  font-weight: 600;
  position: relative;
  margin: 0 0 20px 0;
  font-size: 3.5em;
  line-height: 1;
  text-transform: uppercase;
  text-shadow: 0 2px 3px rgba(39, 35, 28, 0.6);
}

@media (max-width: 767px) {
  .hero__title {
    font-size: 2em !important;
  }
}

.hero__title--home {
  text-align: left;
  font-size: 80px;
  line-height: 1;
  letter-spacing: -2px;
  font-weight: 700;
}

@media (max-width: 767px) {
  .hero__title--home {
    font-size: 38px !important;
    letter-spacing: 0;
  }
}

.hero__subtitle {
  text-align: center;
  color: #f7f5e2;
  font-size: 1.2em;
  line-height: 1.5;
  font-weight: 600;
  position: relative;
  text-transform: none;
  margin: 10px 0 0 0;
}

.hero__subtitle--home {
  font-weight: 300;
  font-size: 24px;
  line-height: 1.2;
  color: #f8c67e;
  text-align: left;
}

@media (max-width: 767px) {
  .hero__subtitle--home {
    font-size: 20px !important;
  }
}

.hero__subtitle--play {
  font-size: 8em;
  font-weight: 500;
  margin: 0;
  cursor: pointer;
}

.hero__subtitle--play i {
  cursor: pointer;
}

.hero__subtitle--play i:hover {
  color: #e6a924;
}

.hero__buttons {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  margin: 30px 0 80px;
}

.hero__buttons .btn-hero {
  font-size: 16px;
  text-transform: uppercase;
  border-radius: 30px;
  border: 1px solid #fff;
  color: #fff;
  padding: 12px 20px 10px;
  font-weight: 600;
  letter-spacing: 2px;
}

.hero__buttons .btn-hero:hover {
  background-color: #e6a924;
  border-color: #e6a924;
}

.hero__chevron {
  text-align: center;
  display: block;
  position: absolute;
  margin-left: auto;
  margin-right: auto;
  left: 0;
  right: 0;
  bottom: 60px;
}

.hero__chevron span {
  color: #f7f5e2;
  font-size: 2em;
  line-height: 1;
  font-weight: normal;
}

@media (max-width: 767px) {
  .hero__chevron {
    display: none;
  }
}

.hero--youtube {
  cursor: pointer;
}

.hero__video {
  position: absolute;
  object-fit: cover;
  min-width: 100%;
  min-height: 100%;
  background-image: none;
}

.hero__video--loaded {
  background-image: none;
  background-color: #1b1b1b;
}

.strip {
  background-image: url("images/wave.png");
  background-repeat: repeat;
  text-align: center;
  padding: 60px 0;
  position: relative;
}

.strip__title {
  margin: 0 0 20px 0;
  text-transform: uppercase;
  font-size: 1.7em;
}

.strip__title--thanks {
  color: #e6a924;
  margin: 0;
  font-size: 1.4em;
}

.strip__subtitle {
  font-size: 1em;
  text-transform: none;
}

.strip__subtitle--thanks {}

.strip__subtitle--thanks a {
  color: #383834;
  border-bottom: 2px solid #e6a924;
}

.strip__copy {
  font-size: 1.2em;
  line-height: 1.5em;
  margin-top: 20px;
}

.strip__copy--home {
  font-size: 1.6em;
  margin-bottom: 0;
}

.strip--map {
  background-color: #383834;
  background-image: none;
  color: #f0ede0;
  padding: 0;
  display: table;
}

.strip--map__cell {
  display: table-cell;
  min-height: 100%;
  width: 50%;
}

.strip--map__title {
  margin-top: 50px;
}

.strip--map__copy {
  font-size: 1.2em;
  line-height: 1.5em;
  margin-top: 20px;
  color: #f0ede0;
}

.strip--map__error {
  color: #f0ede0;
}

.strip--map__output {
  height: 100%;
  display: table-cell;
  min-height: 100%;
  width: 50%;
  background-image: url("images/map-background.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

.strip--map__output.mapOpen {
  background-image: none;
}

.strip--map__list {
  margin-bottom: 50px;
}

.strip--darker {
  background-color: #ddddd0;
}

.strip--yellow {
  background-color: #f2dc99;
  text-align: left;
  z-index: 15;
}

.strip--footer {
  background-color: #383834;
  background-image: none;
  color: #f0ede0;
  text-align: left;
}

.strip--footer__copyright {
  color: #f0ede0;
  font-size: .75em;
}

.strip--footer__copyright a {
  color: #f0ede0;
}

.strip--comments {
  background-color: #ddddd0;
  background-image: none;
  min-height: 500px;
}

.strip--comments__title {
  font-size: 1.4em;
}

.strip--moreStories {
  background-color: #e6a924;
  background-image: url("images/more-background.png");
  background-repeat: repeat-y;
  background-position: center top;
  text-align: left;
  padding-top: 0;
  padding-bottom: 0;
}

.strip--moreStories__next {
  padding-top: 50px;
  padding-bottom: 50px;
  background-color: #e6a924;
}

.strip--moreStories__next__title {
  font-size: 1.25em;
}

.strip--moreStories__alsoLike__title {
  text-align: center;
  font-size: 1.25em;
}

.strip--moreStories__alsoLike {
  background-color: #f7f6e8;
  padding-top: 50px;
  padding-bottom: 80px;
}

.strip--moreStories__alsoLike:after {
  width: 100%;
  height: 200px;
  background-color: #f7f6e8;
}

.porthole {}

@media (max-width: 767px) {
  .porthole {
    margin-bottom: 50px;
  }
}

.porthole__image {
  width: 200px;
  height: 200px;
  border-radius: 100px;
  -webkit-border-radius: 100px;
  -moz-border-radius: 100px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  margin: 0 auto;
}

.porthole__image:hover {
  border: 2px solid #e6a924;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

@media (min-width: 1200px) {
  .porthole__image {
    width: 300px;
    height: 300px;
    border-radius: 150px;
    -webkit-border-radius: 150px;
    -moz-border-radius: 150px;
  }
}

.porthole__title {
  border-bottom: 2px solid #e6a924;
  display: inline-block;
  font-size: 1.5em;
  margin: 1.5em 0 1em;
}

.porthole__copy {}

.porthole__more {}

.porthole__more__icon {
  clear: both;
  margin: 0 auto;
  font-size: 2em;
  display: block;
}

.porthole__more__copy {
  text-transform: uppercase;
  font-size: .75em;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  clear: both;
  margin: 0 auto;
  color: #383834;
  border-bottom: 2px solid #e6a924;
}

.storyblock-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.storyblock {
  text-align: left;
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
  flex: 0 0 auto;
}

.storyblock a:hover {
  box-shadow: inset 0px -4px 0px 0 rgba(139, 87, 16, 0.15);
}

.storyblock__top {
  background-color: #ffffff;
  position: relative;
  flex: 1 0 auto;
}

.storyblock__top__category {
  text-transform: uppercase;
  font-size: .75em;
  line-height: 1;
  letter-spacing: .5px;
  color: #e6a924;
  margin: 20px 20px 0;
  display: inline-block;
}

.storyblock__top__title {
  font-size: 1.2em;
  margin: 20px 20px 10px;
  text-transform: capitalize;
}

.storyblock__top__title a {
  color: #383834;
}

.storyblock__top__author {
  font-size: .75em;
  line-height: 1;
  margin: 0 20px 20px;
  display: inline-block;
}

.storyblock__top__authorPhoto {
  width: 70px;
  height: 70px;
  border-radius: 35px;
  -webkit-border-radius: 35px;
  -moz-border-radius: 35px;
  position: absolute;
  right: 20px;
  bottom: -35px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border: 5px solid #ffffff;
}

.storyblock__thumbnail {
  width: 100%;
  height: auto;
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: cover;
}

.story {
  padding-bottom: 50px;
}

@media (min-width: 992px) {
  .story {
    padding-right: 100px;
  }
}

@media (min-width: 1200px) {
  .story {
    padding-right: 100px;
  }
}

.story--quiz {
  padding-right: 0;
}

.story h1 {
  text-transform: uppercase;
}

.story h2 {
  text-transform: uppercase;
}

.story__top {
  position: relative;
  z-index: 5;
  margin-bottom: 50px;
}

.story__top__authorPhoto {
  width: 90px;
  height: 90px;
  border-radius: 45px;
  -webkit-border-radius: 45px;
  -moz-border-radius: 45px;
  position: absolute;
  top: -60px;
  left: -5px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border: 5px solid #f7f6e9;
}

.story__top__details {
  font-size: .825em;
  line-height: 1;
  margin-left: 100px;
  margin-top: 20px;
}

.story__top__details__author {}

.story__top__details__bar {
  color: #e6a924;
}

.story__top__details__date {}

.relatedStory {
  list-style: none;
  width: 100%;
  display: inline-block;
}

.relatedStory__thumbnail {
  width: 100%;
  height: 100%;
}

.relatedStory__category {
  text-transform: uppercase;
  font-size: .75em;
  line-height: 1;
  letter-spacing: .5px;
  color: #e6a924;
  margin: 20px 20px 0;
  display: inline-block;
}

.relatedStory__title {
  font-size: 1.2em;
  margin: 10px 20px 10px;
  text-transform: capitalize;
}

.relatedStory__title a {
  color: #383834;
}

.relatedStory__author {
  font-size: .75em;
  line-height: 1;
  margin: 0 20px 20px;
  display: inline-block;
}

.relatedStory__authorPhoto {
  width: 70px;
  height: 70px;
  border-radius: 35px;
  -webkit-border-radius: 35px;
  -moz-border-radius: 35px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border: 5px solid #ddddd0;
  float: right;
  margin-top: -35px;
  margin-right: 20px;
  z-index: 5;
  position: relative;
}

.sidebar-container {
  position: absolute;
  right: 0;
  background-color: #ddddd0;
  z-index: 5;
  padding-right: 0;
  padding-left: 0;
  height: 100%;
}

.sidebar {}

.sidebar__top {
  height: 80px;
  background-color: #ddddd0;
  margin-top: -80px;
}

.sidebar__title {
  font-size: 1.25em;
  line-height: 1;
  text-transform: uppercase;
  text-align: center;
  padding: 30px 0 0 0;
  margin: 0;
}

.nextStory {}

.nextStory__thumbnail {
  width: 100%;
  height: 220px;
  background-size: cover;
  background-repeat: no-repeat;
}

@media (min-width: 992px) {
  .nextStory__thumbnail {
    height: 140px;
  }
}

@media (min-width: 1200px) {
  .nextStory__thumbnail {
    height: 160px;
  }
}

.nextStory__category {
  text-transform: uppercase;
  font-size: .75em;
  line-height: 1;
  letter-spacing: .5px;
  color: #e6a924;
  margin: 20px 0 0;
  display: inline-block;
}

.nextStory__category--reverse {
  color: #f7f6e8;
}

.nextStory__title {
  font-size: 1.2em;
  margin: 10px 0 10px;
  text-transform: capitalize;
}

.nextStory__title a {
  color: #383834;
}

.nextStory__author {
  font-size: .75em;
  line-height: 1;
  margin: 0 0 20px;
  display: inline-block;
}

.sharing-container {
  margin-top: 50px;
}

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

.sharing__link {
  width: 45px;
  height: 45px;
  text-align: center;
  border-radius: 24px;
  -webkit-border-radius: 24px;
  -moz-border-radius: 24px;
  display: inline-block;
  margin-right: 10px;
}

.sharing__link [class^="fi-"] {
  display: block;
  width: 100%;
  height: 100%;
  font-size: 1.25em;
  text-transform: none;
  line-height: 45px;
  color: #fff;
}

.sharing__link--facebook {
  background-color: #3b5998;
}

.sharing__link--twitter {
  background-color: #00aced;
}

.sharing__link--reddit {
  background-color: #5f99cf;
}

.sharing__link--pinterest {
  background-color: #ca0034;
}

.sharing__link--mail {
  background-color: #ddddd0;
}

.sharing__link--mail i {
  color: #cfcebe;
}

.diamond {
  width: 50px;
  height: 50px;
  background: #f7f6e8;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transform-origin: 0 100%;
  transform-origin: 0 100%;
  position: relative;
}

.diamond--centreHorizontal {
  margin: 50px -50px -85px 50%;
}

.diamond--centreVertical {}

.diamond--brown {
  background: #ddddd0;
}

.diamond--grey {
  background: #383834;
}

#video-image {
  width: 100%;
  height: 100%;
}

.left-inner-addon {
  position: relative;
}

.left-inner-addon input {
  padding-left: 40px;
}

.left-inner-addon i {
  position: absolute;
  padding: 10px 15px;
  pointer-events: none;
  color: #383834;
  text-align: left;
  left: 0;
  font-size: 20px;
}

.entry-title {
  text-align: center;
  color: #3b3b3b;
  font-size: 3.5em;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -.75px;
  position: relative;
  margin: 0;
}

.entry-meta {
  margin-top: 30px;
  margin-bottom: 30px;
  text-align: center;
}

.entry-meta a {
  color: #3b3b3b;
}

.entry-meta a:hover {
  color: #1191c5;
}

.bar {
  color: #e6a922;
  margin: 0 10px;
}

.social-media-sharing {
  border-top: 1px solid #cfcebe;
  border-bottom: 1px solid #cfcebe;
  height: 2em;
  line-height: 1.875em;
}

.social-media-sharing > ul {
  display: table;
  margin: 0 auto;
  padding: 0;
}

.social-media-sharing > ul > li {
  list-style: none;
  float: left;
  padding: 0 10px;
  font-size: .875em;
}

.social-media-sharing .share-link {
  color: #3b3b3b;
  cursor: pointer;
  font-weight: 500;
  font-style: normal;
}

.social-media-sharing .share-link:hover {
  color: #1191c5;
}

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

.site-footer {
  background-color: #3b3b3b;
  color: #efe9d9;
}

.site-footer p {
  font-size: .75em;
}

.footer-container {
  margin-top: 30px;
}

.copyright {
  font-size: .6875em;
  margin-top: 1em;
  margin-bottom: 2em;
}

.aside {
  float: left;
  margin: 0 40px 40px 0;
}

.aside h5 {
  border-bottom: 1px solid #000;
  text-transform: uppercase;
  font-weight: 600;
  font-style: normal;
  letter-spacing: 1.5px;
}

.strip strip--moreStories .yarpp-related {
  margin: 0 !important;
}

.yarpp-related {
  margin: 0 !important;
}

.yarpp-related-widget ul {
  padding: 0;
  margin: 0;
}

.comment-container {
  margin-top: 2em;
}

.progress {
  position: relative;
  width: 100%;
  height: 15px;
  background: #ddddd0;
  border-radius: 10px;
  overflow: hidden;
  margin: 1em 0;
}

.bar {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 15px;
  margin: 0;
  background: #85C220;
  -webkit-transition: ease;
  -moz-transition: ease;
  -o-transition: ease;
  transition: ease;
}

.btn-file {
  position: relative;
  overflow: hidden;
}

.btn-file input[type=file] {
  position: absolute;
  top: 0;
  right: 0;
  min-width: 100%;
  min-height: 100%;
  font-size: 100px;
  text-align: right;
  filter: alpha(opacity = 0);
  opacity: 0;
  outline: none;
  background: white;
  cursor: inherit;
  display: block;
}

.successMessage {
  padding: 5px 20px 10px;
}

.youtube-banner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #1b1b1b;
}

.youtube-banner iframe {
  padding-bottom: 80px;
}

.tweet-button {
  display: inline-block;
  position: relative;
}

.fb_iframe_widget {
  overflow: hidden;
}

.gform_wrapper ul {
  padding-left: 0;
  list-style: none;
}

.gform_wrapper li {
  margin-bottom: 15px;
}

.gform_wrapper form {
  margin-bottom: 0;
}

.gform_wrapper .gfield_required {
  padding-left: 1px;
  color: #b94a48;
}

.ginput_container input, .ginput_container select, .ginput_container textarea {
  display: block;
  width: 100%;
  height: 34px;
  padding: 6px 12px;
  font-size: 14px;
  line-height: 1.428571429;
  color: #555;
  vertical-align: middle;
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 4px;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  -webkit-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
  transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
}

.ginput_container input:-moz-placeholder, .ginput_container select:-moz-placeholder, .ginput_container textarea:-moz-placeholder {
  color: #999;
}

.ginput_container input::-moz-placeholder, .ginput_container select::-moz-placeholder, .ginput_container textarea::-moz-placeholder {
  color: #999;
}

.ginput_container input:-ms-input-placeholder, .ginput_container select:-ms-input-placeholder, .ginput_container textarea:-ms-input-placeholder {
  color: #999;
}

.ginput_container input::-webkit-input-placeholder, .ginput_container select::-webkit-input-placeholder, .ginput_container textarea::-webkit-input-placeholder {
  color: #999;
}

.ginput_container input:focus, .ginput_container select:focus, .ginput_container textarea:focus {
  border-color: #66afe9;
  outline: 0;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
}

.ginput_container input[disabled], .ginput_container select[disabled], .ginput_container textarea[disabled], .ginput_container input[readonly], .ginput_container select[readonly], .ginput_container textarea[readonly], fieldset[disabled] .ginput_container input, fieldset[disabled] .ginput_container select, fieldset[disabled] .ginput_container textarea {
  cursor: not-allowed;
  background-color: #eee;
}

textarea.ginput_container input, textarea.ginput_container select, textarea.ginput_container textarea {
  height: auto;
}

.ginput_container textarea {
  height: auto;
}

.gform_button {
  display: inline-block;
  padding: 6px 12px;
  margin-bottom: 0;
  font-size: 14px;
  font-weight: normal;
  line-height: 1.428571429;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  border: 1px solid transparent;
  border-radius: 4px;
  white-space: nowrap;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none;
  color: #fff;
  background-color: #428bca;
  border-color: #357ebd;
}

.gform_button:focus {
  outline: thin dotted #333;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}

.gform_button:hover, .gform_button:focus {
  color: #333;
  text-decoration: none;
}

.gform_button:active, .gform_button.active {
  outline: 0;
  background-image: none;
  -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
}

.gform_button.disabled, .gform_button[disabled], fieldset[disabled] .gform_button {
  cursor: not-allowed;
  pointer-events: none;
  opacity: .65;
  filter: alpha(opacity = 65);
  -webkit-box-shadow: none;
  box-shadow: none;
}

.gform_button:hover, .gform_button:focus, .gform_button:active, .gform_button.active, .open .dropdown-toggle.gform_button {
  color: #fff;
  background-color: #3276b1;
  border-color: #285e8e;
}

.gform_button:active, .gform_button.active, .open .dropdown-toggle.gform_button {
  background-image: none;
}

.gform_button.disabled, .gform_button[disabled], fieldset[disabled] .gform_button, .gform_button.disabled:hover, .gform_button[disabled]:hover, fieldset[disabled] .gform_button:hover, .gform_button.disabled:focus, .gform_button[disabled]:focus, fieldset[disabled] .gform_button:focus, .gform_button.disabled:active, .gform_button[disabled]:active, fieldset[disabled] .gform_button:active, .gform_button.disabled.active, .gform_button[disabled].active, fieldset[disabled] .gform_button.active {
  background-color: #428bca;
  border-color: #357ebd;
}

.gform_wrapper .gfield_error .gfield_label {
  color: #b94a48;
}

.gform_wrapper .gfield_error input, .gform_wrapper .gfield_error select, .gform_wrapper .gfield_error textarea {
  border-color: #eed3d7;
  background-color: #f2dede;
  color: #b94a48;
}

.gform_wrapper .gfield_error input:focus, .gform_wrapper .gfield_error select:focus, .gform_wrapper .gfield_error textarea:focus {
  border-color: #b94a48;
  outline: 0;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(185, 74, 72, 0.6);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(185, 74, 72, 0.6);
}

.validation_error {
  padding: 15px;
  margin-bottom: 20px;
  border: 1px solid transparent;
  border-radius: 4px;
  background-color: #f2dede;
  border-color: #eed3d7;
  color: #b94a48;
}

.validation_error h4 {
  margin-top: 0;
  color: inherit;
}

.validation_error .alert-link {
  font-weight: bold;
}

.validation_error > p, .validation_error > ul {
  margin-bottom: 0;
}

.validation_error > p + p {
  margin-top: 5px;
}

.validation_error hr {
  border-top-color: #e6c1c7;
}

.validation_error .alert-link {
  color: #953b39;
}

#gforms_confirmation_message {
  padding: 15px;
  margin-bottom: 20px;
  border: 1px solid transparent;
  border-radius: 4px;
}

#gforms_confirmation_message h4 {
  margin-top: 0;
  color: inherit;
}

#gforms_confirmation_message .alert-link {
  font-weight: bold;
}

#gforms_confirmation_message > p, #gforms_confirmation_message > ul {
  margin-bottom: 0;
}

#gforms_confirmation_message > p + p {
  margin-top: 5px;
}

.gallery-row {
  padding: 15px 0;
}

.aligncenter {
  display: block;
  margin: 0 auto;
}

.alignleft {
  float: left;
}

.alignright {
  float: right;
}

figure.alignnone {
  margin-left: 0;
  margin-right: 0;
}

.donation-widget {
  position: relative;
  min-height: 300px;
  margin: 2em 0;
}

.donation-widget .highlight {
  color: #e6a924;
}

.donation-widget .separator {
  width: 100%;
  height: 3px;
  background-color: #ddddd0;
}

.donation-widget .squiggle {
  max-width: 50%;
}

.donation-widget__title {
  margin: 1em 50% 0.5em 0;
}

.donation-widget__subtitle {
  line-height: 1.5;
  margin: 0.5em 40% 0 0;
}

.donation-widget__subtitle a {
  border-bottom: 2px solid #e6a924;
}

.donation-widget__image {
  position: absolute;
  right: 0;
  top: -40px;
}

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

.email-signup {
  border: 2px solid #e6a924;
  border-radius: 6px;
  padding: 30px;
  margin: 30px 0;
  text-align: center;
  background-image: url(images/wave.png);
  background-repeat: repeat;
  background-color: #f2dc99;
}

.email-signup h2 {
  margin-top: 0;
  color: #e6a924;
}

.email-signup .form-control {
  padding: 8px 12px;
  line-height: 1.5;
  font-size: 18px;
  border: 1px solid #ccc;
  border-radius: 3px;
  height: auto;
}

.email-signup .btn {
  padding: 10px 12px;
  font-size: 16px;
  background-color: #428f3d;
  border-color: #428f3d;
}

.email-signup .mouseprint {
  font-size: 10px;
}

.attribution {
  font-size: 10px;
}