/*
  This file contains all the base styling for sass files. Pulling in all the 
  necessary variables and mixins but does not actually output anything so is
  safe to use as a base for other css files without adding excessive weight
*/
/*********************
BREAKPOINTS
*********************/
/*
  screen-tiny: 321 - 320
  screen-xs: 480px - 767px
  screen-sm: 768px - 969px
  screen-md: 970px - 1199px
  screen-lg: 1200px
*/
/*********************
Placeholder
*********************/
/*********************
VENDOR PREFIX
*********************/
.twitter_quote {
  font-weight: bold;
  quotes: "\201C" "\201D" "\2018" "\2019";
  margin-left: 16px;
}

.twitter_quote:before {
  content: open-quote;
  font-size: 16px;
  margin-left: -16px;
}

.twitter_quote:after {
  content: close-quote;
  font-size: 16px;
}

.twitter_quote.pull_quote {
  color: #d92231;
  word-break: auto;
  padding-left: 15%;
  padding-right: 15%;
  padding-top: 20px;
  padding-bottom: 20px;
  margin-left: auto;
  margin-right: auto;
  display: table;
  font-size: 24px;
  font-weight: normal;
  text-align: center;
  quotes: "\201C" "\201D" "\2018" "\2019";
}

.twitter_quote.pull_quote:before {
  content: open-quote;
  font-size: 40px;
  margin-left: -16px;
}

.twitter_quote.pull_quote:after {
  content: close-quote;
  font-size: 40px;
}
