/**
 * @file
 * Styles for pullquote module.
 */

.pullquote-container {
  position: relative;
}

.pullquote-quote {
 z-index: 1;
background: rgba(202, 205, 195, 0.35);
border: 1px solid #86AF2B;
border-width: 3px 0;
color: #030303;
float: right;
font: italic 140% Georgia, "Times New Roman", Times, serif;
line-height: 1.7em;
margin: 1em 0 0.4em 1em;
padding: 0.5em 0.75em;
width: 30%;
box-shadow: 6px 10px 5px #888888;
}

/* inserts quotation marks around pullquoted text */
.pullquote-quote:before {
  content: open-quote;
}

.pullquote-quote:after {
  content: close-quote;
}

.pullquote-quote.pullquote-left {
  float: left;
  margin-left: 0;
  margin-right: 1em;
}
