/**
 * @file
 * Overall specifications for Newsplus Lite.
 */


/**
 * Reusable heading classes are included to help modules change the styling of
 * headings on a page without affecting accessibility.
 */
html {
  height: 100%;
}
body {
  font-size: 16px;
  color: #3f3f3f;
  line-height: 1.55;
  background-color: #f3f3f3;
  text-rendering: optimizeLegibility;
}
p {
  margin: 0;
  padding: 0 0 15px 0;
}
p.large {
  font-size: 18px;
  line-height: 1.33;
  font-weight: 700;
  padding-bottom: 20px;
}
a {
  color: #c0273c;
}
a:hover {
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  text-decoration: underline;
  color: #ea2d49;
}
a:focus,
a:active {
  outline: none;
  text-decoration: none;
  color: #ea2d49;
}
code,
pre {
  word-wrap: break-word;
  word-break: break-all;
  white-space: pre;
  white-space: pre-wrap;
  font-family: 'Source Code Pro', Consolas, Monaco, Courier;
}
pre {
  background: #ebebeb;
  border:none;
  border-left: 10px solid #ea2d49;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
  color: #363636;
  padding: 20px;
  font-size: 14px;
  max-height: 62px;
  overflow: hidden;
  margin: 40px 0 40px 45px;
}
pre:hover {
  max-height: 10000px;
  -webkit-transition: all ease-in-out 2s; 
  moz-transition: all ease-in-out 2s; 
  o-transition: all ease-in-out 2s;
  -ms-transition: all ease-in-out 2s; 
  ransition: all ease-in-out 2s;
}
img {
  max-width: 100%;
  height: auto;
}
blockquote {
  font-size: 24px;
  font-style: italic;
  padding:0 0 0 140px;
  border-left: none;
  position: relative;
  margin: 40px 0 50px;
  line-height: 1.33;
  overflow: hidden;
  min-height: 80px;
}
.footer-area blockquote {
  padding-left: 70px;
}
/*Blockquote quote symbol*/
blockquote:after {
  position: absolute;
  font-family: 'PT Sans', Helvetica Neue, Arial, Sans-serif;
  content: "“";
  left: 15px;
  color: #dddddd;
  font-style: normal;
  font-size: 280px;
  line-height: 1;
  top: -20px;
  height: 100%;
}
.footer-area blockquote:after {
  left: 0;
  font-size: 190px;
  top: -15px;
}
@media (min-width: 992px) {
  .two-sidebars blockquote { padding: 0 0 0 75px; }
  .two-sidebars blockquote:after { left: 0; font-size: 190px; top: -15px; }
}
@media (min-width: 768px) and (max-width: 991px) {
  .footer-area blockquote { padding-left: 40px; font-size: 18px; }
  .footer-area blockquote:after { left: 0; font-size: 90px; top: -5px; }
}
@media (max-width: 767px) {
  blockquote { padding: 0 0 0 75px; }
  blockquote:after { left: 0; font-size: 190px; top: -15px; }
}
ul {
  list-style-type: square;
}
ul.list li {
  margin-bottom: 5px;
}

/*Headings*/
h1, h2, h3, h4, h5, h6,
.heading-a,
.heading-b,
.heading-c,
.heading-d,
.heading-e {
  font-weight: 700;
  line-height: 1.2;
  margin: 20px 0 10px 0;
}
h1 a, h2 a, h3 a, h4 a, h5 a, h6 a,
.heading-a > a,
.heading-b > a,
.heading-c > a,
.heading-d > a,
.heading-e > a {
  color: #3f3f3f;
}
h1,
.heading-a {
  font-size: 48px;
  margin-bottom: 20px;
}
h2,
.heading-b {
  font-size: 28px;
  font-weight: 400;
  margin-bottom: 20px;
}
h3,
.heading-c {
  font-size: 22px;
  margin-bottom: 15px;
}
h4,
.heading-d {
  font-size: 18px;
}
h5,
.heading-e {
  font-size: 16px;
}
.title {
  margin-top: 0
}
.sidebar h2.title,
#page .block-views h2.title {
  margin-top: 7px;
  margin-bottom: 20px;
  font-size: 14px;
  font-weight: 700;
  color: #464646;
  padding-bottom: 5px;
  border-bottom: 1px solid #c0273c;
  text-transform: uppercase;
}
.node--view-mode-teaser h2.node__title,
.node--view-mode-teaser h2.node__title {
  font-weight: 700;
}
.sidebar h3.title {
  margin-top: 9px;
}
.footer-area h2.title,
.subfooter-area h2.title {
  font-size: 25px;
  margin-bottom: 20px;
}
#block-views-mt-user-latest-posts-block.block-views h2.title {
  font-size: 28px;
  font-weight: 700;
  border-bottom: 0;
  padding: 0;
  margin-bottom: 45px;
  text-transform: none;
}
@media (max-width: 767px) {
 .node h1.title {
    font-size: 36px;
  }
}
@media (max-width: 480px) {
  #block-views-mt-user-latest-posts-block.block-views h2.title {
    margin-bottom: 20px;
  }
}
del {
  text-decoration: line-through;
}
.feed-icon {
  display: block;
  margin: 25px 0 0 0;
}