/* Required */
/*  ------------------------------------------------------------------

@library :      CNN Grid System - SASS
@version :      0.0.0.1
@description :  System for managing breakpoints and
	            responsive grid columns.

@author :       Kenneth Uzquiano (kenneth.uzquiano@gmail.com)

------------------------------------------------------------------ */
    /*  BASE VALUES
		-----------
		All default values for generating the grid can be found in the
		'lib/vars' file. They can also be overidden by the project's vars file.
		Here is a brief description of what each variable within this file does.
		These variables are global, as they need to be used from mixin to mixin,
		but are calculated at each grid change, thus, do not need to be initialized.

		    $grid-id :              Active grid id
		    $grid-active :          Active grid
		    $grid-columns :         Number of columns in active grid
		    $grid-column-width :    Width of a column based on units below
		    $grid-query :           Media query for active grid
		    $grid-full-width :      Full width of active grid
    */
    /*  -------------------------------
	                MIXINS
		-------------------------------

		@mixin :                @mixin breakpoint( $breakpointId: mobile )
		@description :          Define active grid by id
		@param $breakpointId :  Id of grid to activate (default : mobile)
		@param $retina :        Include media queries for retina displays (default : false)
    */
/* 20px */
    /*
    	@mixin :                @mixin grid-col( $col: 1 )
		@description :          Calculate widths of grid columns based on px, ems, or %
		@param $col :           Number of columns to calculate width (default : 1)
		@param $fluid :         Calculate using percentages vs em / px (default : true)
	*/
/*
	@mixin :                @mixin grid-row( $fluid: true )
	@description :          Define a row to house columned elements
	@param $fluid :         Calculate using percentages vs em / px (default : true)
*/
/*
	---------------------------------
	           FUNCTIONS
	---------------------------------
*/
/*
	@function :         -fn-findGridById( $gridID: mobile )
	@description :      Define active grid by id
	@param $gridId :    Id of grid to activate
*/
/*
	@function :         -fn-setGridProperties($p_grid)
	@description :      Set properties based on active grid
	@param $p_grid :    Grid to use to set properties
*/
/*
	@function :         -fn-getStaticWidth($col: 1)
	@description :      Calculate and return the static width of columns.
	@param $col :       Number of columns to use to calculate static width.
*/
/*
	@function :         -fn-getFluidWidth($col: 1)
	@description :      Calculate and return the fluid width of columns.
	@param $col :       Number of columns to use to calculate fluid width.
*/
/*
	@function :         -fn-getStaticMargin()
	@description :      Calculate and return the static margin
	@param :            null
*/
/*
	@function :         -fn-getFluidMargin()
	@description :      Calculate and return the fluid margin
	@param :            null
*/
body {
  font-size: 16px;
  font-family: CNN,"Helvetica Neue",Helvetica,Arial,Utkal,sans-serif; }
  body * {
    box-sizing: border-box; }

/* Set up flexible containers */
.interactive-container,
.cnn-outbrain,
#comments,
#disqus_thread {
  margin: 0 auto;
  width: 95%;
  max-width: 980px; }

/* ------------ MOBILE / DEFAULT STYLES ------------ */
h1 {
  font-size: 1.75rem;
  line-height: 1.21429;
  padding: 10px 0 0;
  font-weight: 300;
  margin: 10px 0; }

.metadata {
  color: #737373;
  font-weight: 400;
  font-size: .75rem;
  line-height: 1.5; }
  .metadata p {
    margin-bottom: 0; }
  .metadata__byline {
    font-weight: 700;
    padding-bottom: 0; }
    .metadata__byline a {
      color: #006598; }
  .metadata:after {
    clear: both;
    content: '';
    display: table; }

p {
  padding: 0 10px 18px 0; }

/* ------------ TABLET STYLES ------------ */
/* md 10 screen and (min-width: 30em) */
@media screen and (min-width: 30em) {
  h1 {
    font-size: 3.25rem;
    line-height: 1.07692;
    padding: 10px 0 0;
    font-weight: 300;
    margin: 10px 0; }

  .metadata {
    color: #737373;
    font-weight: 400;
    font-size: .875rem;
    line-height: 1.57143; }
    .metadata p {
      margin-bottom: 0; }
    .metadata__byline {
      font-weight: 700;
      padding-bottom: 0; }
      .metadata__byline a {
        color: #006598; }
    .metadata:after {
      clear: both;
      content: '';
      display: table; } }
/* ------------ DESKTOP STYLES ------------ */
/* lg 12 screen and (min-width: 48em) */
@media screen and (min-width: 48em) {
  h1 {
    font-size: 3.875rem;
    line-height: 1.06452;
    padding: 10px 0 0;
    font-weight: 300;
    margin: 10px 0; }

  .metadata {
    color: #737373;
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.5; }
    .metadata p {
      margin-bottom: 0; }
    .metadata__byline {
      font-weight: 700;
      padding-bottom: 0; }
      .metadata__byline a {
        color: #006598; }
    .metadata:after {
      clear: both;
      content: '';
      display: table; } }
/* CNN Sharebar */
.share-container {
  width: 300px;
  position: relative;
  margin-left: -15px; }
  .share-container .share-bar {
    width: auto;
    display: inline-block;
    float: none; }
    .share-container .share-bar li.share-button {
      width: 35px;
      height: 35px;
      float: right;
      margin-left: 15px;
      cursor: pointer;
      list-style-type: none;
      -webkit-transition: transform 0.5s ease 0s;
      transition: transform 0.5s ease 0s; }
      .share-container .share-bar li.share-button.email {
        background: url("https://cdn.cnn.com/cnn/.e/img/4.0/interactive/sharebar/email.png");
        background-size: 35px 35px; }
      .share-container .share-bar li.share-button.facebook {
        background: url("https://cdn.cnn.com/cnn/.e/img/4.0/interactive/sharebar/facebook.png");
        background-size: 35px 35px; }
      .share-container .share-bar li.share-button.twitter {
        background: url("https://cdn.cnn.com/cnn/.e/img/4.0/interactive/sharebar/twitter.png");
        background-size: 35px 35px; }
      .share-container .share-bar li.share-button:hover {
        transform: scale(1.2, 1.2);
        -webkit-transform: scale(1.2, 1.2); }

/*---------------
TABLET
---------------*/
/* md 10 screen and (min-width: 30em) */
@media screen and (min-width: 30em) {
  .share-container {
    width: 300px;
    position: relative;
    margin-left: -15px;
    clear: both;
    margin-top: 0px; }
    .share-container .share-bar {
      width: auto;
      display: inline-block;
      float: left;
      padding-bottom: 15px; }
      .share-container .share-bar li.share-button {
        width: 35px;
        height: 35px;
        float: right;
        margin-left: 15px;
        cursor: pointer;
        list-style-type: none;
        -webkit-transition: transform 0.5s ease 0s;
        transition: transform 0.5s ease 0s; }
        .share-container .share-bar li.share-button.email {
          background: url("https://cdn.cnn.com/cnn/.e/img/4.0/interactive/sharebar/email.png");
          background-size: 35px 35px; }
        .share-container .share-bar li.share-button.facebook {
          background: url("https://cdn.cnn.com/cnn/.e/img/4.0/interactive/sharebar/facebook.png");
          background-size: 35px 35px; }
        .share-container .share-bar li.share-button.twitter {
          background: url("https://cdn.cnn.com/cnn/.e/img/4.0/interactive/sharebar/twitter.png");
          background-size: 35px 35px; }
        .share-container .share-bar li.share-button:hover {
          transform: scale(1.2, 1.2);
          -webkit-transform: scale(1.2, 1.2); } }
/*---------------
DESKTOP
---------------*/
/* lg 12 screen and (min-width: 48em) */
@media screen and (min-width: 48em) {
  .share-container {
    width: 300px;
    float: right;
    margin-left: 0;
    margin-bottom: 10px;
    margin-top: -60px; }
    .share-container .share-bar {
      width: auto;
      display: inline-block;
      float: right; }
      .share-container .share-bar li.share-button {
        width: 35px;
        height: 35px;
        float: right;
        margin-left: 15px;
        cursor: pointer;
        list-style-type: none;
        -webkit-transition: transform 0.5s ease 0s;
        transition: transform 0.5s ease 0s; }
        .share-container .share-bar li.share-button.email {
          background: url("https://cdn.cnn.com/cnn/.e/img/4.0/interactive/sharebar/email.png");
          background-size: 35px 35px; }
        .share-container .share-bar li.share-button.facebook {
          background: url("https://cdn.cnn.com/cnn/.e/img/4.0/interactive/sharebar/facebook.png");
          background-size: 35px 35px; }
        .share-container .share-bar li.share-button.twitter {
          background: url("https://cdn.cnn.com/cnn/.e/img/4.0/interactive/sharebar/twitter.png");
          background-size: 35px 35px; }
        .share-container .share-bar li.share-button:hover {
          transform: scale(1.2, 1.2);
          -webkit-transform: scale(1.2, 1.2); } }
/* Project-level vars */
/*
    CNN Colors
    based on swatches from Data vis style guide
    (http://docs.turner.com/display/cnndxg/Data+Visualisation+style+guide)
*/
a {
  text-decoration: none; }

body {
  background-image: url("../media/bg-faces-of-syria.jpg");
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: center top;
  background-color: #262626; }

.faces-of-syria__header {
  width: 90%;
  max-width: 500px;
  margin: 0 auto 0; }
  .faces-of-syria__header h1, .faces-of-syria__header h2 {
    color: #ffffff;
    text-align: center; }
  .faces-of-syria__header h2 {
    font-weight: 300;
    font-size: 18px; }
    .faces-of-syria__header h2:after {
      content: " ";
      width: 60%;
      height: 1px;
      background-color: #dadada;
      margin: 20px auto;
      display: block; }
    .faces-of-syria__header h2 span {
      display: block;
      font-size: 0.65em;
      color: #dadada;
      font-style: italic;
      line-height: 1.5;
      padding-top: 10px; }
  .faces-of-syria__header .share-buttons {
    text-align: center;
    margin: 0 auto; }
    .faces-of-syria__header .share-buttons > div {
      width: 40px;
      height: 40px;
      border-radius: 20px;
      radius: 20px;
      background-color: rgba(255, 255, 255, 0.4);
      display: inline-block;
      font-family: 'cnn-icons';
      color: #262626;
      font-size: 24px;
      line-height: 40px;
      cursor: pointer; }
    .faces-of-syria__header .share-buttons .share-fb:before {
      content: "\f12e";
      padding-left: 3px; }
    .faces-of-syria__header .share-buttons .share-tw:before {
      content: "\f139";
      color: #262626;
      padding-left: 6px; }
    .faces-of-syria__header .share-buttons .share-tw {
      margin-left: 10px; }

.int-byline {
  color: #ffffff;
  font-weight: 300;
  position: relative;
  line-height: 40px; }
  .int-byline:before {
    content: " ";
    width: 80px;
    height: 1px;
    background-color: #fafafa;
    position: absolute; }

.cnn-outbrain-container {
  background-color: #dadada;
  width: 100%;
  padding: 30px 0; }

.faces-of-syria-feed {
  width: 100%;
  position: relative;
  box-sizing: border-box;
  margin-top: 40px;
  margin-bottom: 80px; }
  .faces-of-syria-feed:after {
    clear: both;
    content: '';
    display: table; }
  .faces-of-syria-feed__card {
    width: 100%;
    height: auto;
    float: left;
    margin-right: 1%;
    box-sizing: border-box;
    margin-bottom: 1%;
    cursor: pointer; }
    .faces-of-syria-feed__card.two-col {
      width: 100%; }
    .faces-of-syria-feed__card.no-img {
      background: #000000;
      background: rgba(0, 0, 0, 0.5); }
      .faces-of-syria-feed__card.no-img h2 {
        display: block;
        padding: 20px;
        color: #d8d8d8; }
        .faces-of-syria-feed__card.no-img h2.quote {
          text-indent: -0.2em; }
      .faces-of-syria-feed__card.no-img.color-teal {
        background: #2BC19B; }
      .faces-of-syria-feed__card.no-img.color-orange {
        background: #D2681D; }
    .faces-of-syria-feed__card img {
      width: 100%; }
    .faces-of-syria-feed__card h2, .faces-of-syria-feed__card h3, .faces-of-syria-feed__card p {
      display: none; }
    .faces-of-syria-feed__card.open {
      width: 100%;
      background: #000000 !important;
      background: rgba(0, 0, 0, 0.5) !important;
      padding: 20px; }
      .faces-of-syria-feed__card.open img {
        width: 100%;
        float: none;
        margin-right: 20px;
        margin-bottom: 20px; }
      .faces-of-syria-feed__card.open h2, .faces-of-syria-feed__card.open h3, .faces-of-syria-feed__card.open p {
        display: block;
        color: #ffffff; }
      .faces-of-syria-feed__card.open h2 {
        font-size: 24px;
        padding: 0;
        margin: 0; }
      .faces-of-syria-feed__card.open h3 {
        font-size: 20px;
        font-weight: 300;
        margin: 0; }
      .faces-of-syria-feed__card.open p {
        font-size: 14px;
        font-weight: 300;
        padding: 0 0 4px 0; }
        .faces-of-syria-feed__card.open p a {
          color: #64AFD5; }
        .faces-of-syria-feed__card.open p.two-col {
          clear: both; }
        .faces-of-syria-feed__card.open p.author {
          font-style: italic; }
          .faces-of-syria-feed__card.open p.author:before {
            content: '\2014 '; }
      .faces-of-syria-feed__card.open a {
        text-decoration: none;
        color: #006598; }
        .faces-of-syria-feed__card.open a:hover {
          color: #ca0000; }

/* lg 12 screen and (min-width: 48em) */
@media screen and (min-width: 48em) {
  .faces-of-syria__header {
    width: 90%;
    max-width: 500px;
    margin: 0 auto 0; }
    .faces-of-syria__header h1, .faces-of-syria__header h2 {
      color: #ffffff;
      text-align: center; }
    .faces-of-syria__header h2 {
      font-weight: 300;
      font-size: 24px; }
      .faces-of-syria__header h2:after {
        content: " ";
        width: 50%;
        height: 1px;
        background-color: #dadada;
        margin: 20px auto;
        display: block; }
    .faces-of-syria__header .share-buttons {
      text-align: center;
      margin: 0 auto; }
      .faces-of-syria__header .share-buttons > div {
        width: 40px;
        height: 40px;
        border-radius: 20px;
        radius: 20px;
        background-color: rgba(255, 255, 255, 0.4);
        display: inline-block;
        font-family: 'cnn-icons';
        color: #262626;
        font-size: 24px;
        line-height: 40px;
        cursor: pointer; }
      .faces-of-syria__header .share-buttons .share-fb:before {
        content: "\f12e";
        padding-left: 3px; }
      .faces-of-syria__header .share-buttons .share-tw:before {
        content: "\f139";
        color: #262626;
        padding-left: 6px; }
      .faces-of-syria__header .share-buttons .share-tw {
        margin-left: 10px; }

  .int-byline {
    color: #ffffff;
    font-weight: 300;
    position: relative;
    line-height: 40px; }
    .int-byline:before {
      content: " ";
      width: 80px;
      height: 1px;
      background-color: #fafafa;
      position: absolute; }

  .faces-of-syria-feed {
    width: 100%;
    position: relative;
    box-sizing: border-box;
    margin-top: 50px;
    margin-bottom: 100px; }
    .faces-of-syria-feed:after {
      clear: both;
      content: '';
      display: table; }
    .faces-of-syria-feed__card {
      width: 19%;
      height: auto;
      float: left;
      margin-right: 1%;
      box-sizing: border-box;
      margin-bottom: 1%;
      cursor: pointer;
      overflow: hidden; }
      .faces-of-syria-feed__card:hover h2 {
        display: block;
        position: absolute;
        bottom: -18px;
        left: 0px;
        color: #ffffff;
        background: rgba(0, 0, 0, 0.6);
        padding: 20px;
        width: 100%;
        height: 100%; }
      .faces-of-syria-feed__card.two-col {
        width: 39%; }
      .faces-of-syria-feed__card.no-img {
        background: #000000;
        background: rgba(0, 0, 0, 0.5); }
        .faces-of-syria-feed__card.no-img:hover h2 {
          display: block;
          padding: 20px;
          color: #d8d8d8;
          position: relative;
          bottom: initial;
          background: none; }
        .faces-of-syria-feed__card.no-img h2 {
          display: block;
          padding: 20px;
          color: #d8d8d8; }
          .faces-of-syria-feed__card.no-img h2.quote {
            text-indent: -0.2em; }
      .faces-of-syria-feed__card img {
        width: 100%; }
      .faces-of-syria-feed__card h2, .faces-of-syria-feed__card h3, .faces-of-syria-feed__card p {
        display: none; }
      .faces-of-syria-feed__card.open {
        width: 59%;
        background: #000000;
        background: rgba(0, 0, 0, 0.5);
        padding: 20px; }
        .faces-of-syria-feed__card.open img {
          width: auto;
          float: left;
          margin-right: 20px;
          margin-bottom: 20px; }
        .faces-of-syria-feed__card.open h2, .faces-of-syria-feed__card.open h3, .faces-of-syria-feed__card.open p {
          display: block;
          color: #ffffff; }
        .faces-of-syria-feed__card.open h2 {
          font-size: 24px;
          padding: 0;
          margin: 0; }
        .faces-of-syria-feed__card.open:hover h2 {
          display: block;
          position: relative;
          bottom: initial;
          left: initial;
          color: #ffffff;
          background: none;
          padding: 0; }
        .faces-of-syria-feed__card.open h3 {
          font-size: 20px;
          font-weight: 300;
          margin: 0; }
        .faces-of-syria-feed__card.open p {
          font-size: 14px;
          font-weight: 300;
          padding: 0 0 4px 0; }
          .faces-of-syria-feed__card.open p.two-col {
            clear: both; }
          .faces-of-syria-feed__card.open p.author {
            font-style: italic; }
            .faces-of-syria-feed__card.open p.author:before {
              content: '\2014 '; }
        .faces-of-syria-feed__card.open a {
          text-decoration: none;
          color: #006598; }
          .faces-of-syria-feed__card.open a:hover {
            color: #ca0000; } }

/*# sourceMappingURL=faces-of-syria.css.map */
