/*
 * Bronystate 3.0 - Main Styles
 * Shizuka Kamishima - 2015-11-14
 */
/*
 * Uses Sass Web Fonts Mixin
 * (c)2014 Ross Penman - https://github.com/penman/Sass-Web-Fonts
 * MIT License
 */
* {
  margin: 0;
  padding: 0; }

html {
  overflow-y: scroll; }

body {
  color: #dddddd;
  font-family: Verdana, sans-serif;
  font-size: 12px;
  background-color: #061015;
  background-image: url("/assets/img/100-75-5-monochrome.png"); }

#wrapper {
  width: 1280px;
  min-width: 1280px;
  margin: 16px auto;
  background-color: #373A77;
  box-shadow: 0px 0px 10px 5px rgba(0, 0, 0, 0.8); }

header {
  background-color: #325baf;
  padding: 16px;
  text-align: center; }
  header h1 {
    font-family: Verdana, sans-serif;
    font-size: 3em;
    color: #061015;
    line-height: 1em;
    margin-bottom: 0.25em; }
  header nav {
    line-height: 1.5em;
    font-weight: bold;
    color: #061015;
    font-size: 1.25em; }
    header nav ul {
      padding: 0;
      margin-left: 0;
      display: inline-block; }
    header nav li {
      margin: 0;
      padding: 0 0.25em 0.25em 0;
      list-style-type: none;
      list-style-position: outside;
      float: left; }
      header nav li:after {
        content: " - "; }
      header nav li:last-child:after {
        content: ""; }
      header nav li a {
        -moz-transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        -o-transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        -webkit-transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        color: #061015;
        text-decoration: none;
        border-bottom: 1px solid transparent; }
        header nav li a:visited {
          color: #061015; }
        header nav li a:hover {
          color: #F5ADFF;
          border-bottom: 1px solid #F5ADFF; }
        header nav li a:active {
          color: #F5ADFF; }
        header nav li a.youarehere:before {
          content: "["; }
        header nav li a.youarehere:after {
          content: "]"; }

#timerbar {
  background-color: #1c3662;
  padding: 1em;
  margin: 0;
  text-align: center; }

#timertitle {
  font-size: 1.25em; }

#timerclock {
  font-size: 1.5em; }

#contentwrapper {
  box-shadow: inset 0 10px 10px -10px rgba(0, 0, 0, 0.8);
  padding: 2.5em 2em 1em; }
  #contentwrapper a > img {
    border-color: #64DCB7; }
    #contentwrapper a > img:hover {
      border-style: dotted; }

section {
  margin-bottom: 1.5em; }
  section:before {
    clear: both; }

.tab {
  text-align: left;
  padding: 0px 0px 5px 5px; }
  .tab .streamlinks.btn {
    font-weight: bold; }
  .tab .caption {
    font-size: initial;
    font-weight: bold; }

.streamtab {
  display: none; }
  .streamtab#mainstream {
    display: inline; }

.streamlinks.active {
  background-color: #64DCB7; }

#embedsection {
  margin: -1.75em -2em 1em -2em;
  padding: 3px;
  text-align: center; }

[id$="streambox"] {
  float: left;
  overflow: hidden;
  width: 640px;
  -moz-transition: width 2s ease-out 0s;
  -o-transition: width 2s ease-out 0s;
  -webkit-transition: width 2s ease-out 0s;
  transition: width 2s ease-out 0s; }
  [id$="streambox"].expand {
    width: 1275px;
    -moz-transition: width 2s ease-out 2s;
    -o-transition: width 2s ease-out 2s;
    -webkit-transition: width 2s ease-out 2s;
    transition: width 2s ease-out 2s; }

.streamframe {
  width: 640px;
  height: 392px;
  -moz-transition: width 2s ease-out 0s, height 2s ease-out 0s;
  -o-transition: width 2s ease-out 0s, height 2s ease-out 0s;
  -webkit-transition: width 2s ease-out 0s, height 2s ease-out 0s;
  transition: width 2s ease-out 0s, height 2s ease-out 0s; }
  .streamframe.expand {
    width: 1270px;
    height: 747px;
    -moz-transition: width 2s ease-out 2s, height 2s ease-out 2s;
    -o-transition: width 2s ease-out 2s, height 2s ease-out 2s;
    -webkit-transition: width 2s ease-out 2s, height 2s ease-out 2s;
    transition: width 2s ease-out 2s, height 2s ease-out 2s; }

.embedui {
  text-align: left;
  padding: 1em; }

#chatbox {
  float: right;
  padding-bottom: 1em;
  overflow: hidden;
  white-space: nowrap;
  width: 620px;
  height: 440px;
  opacity: 1;
  visibility: visible;
  -moz-transition: height 0.5s 2s, visibility 1s ease-out 3s, opacity 1s ease-out 3s;
  -o-transition: height 0.5s 2s, visibility 1s ease-out 3s, opacity 1s ease-out 3s;
  -webkit-transition: height 0.5s 2s, visibility 1s ease-out 3s, opacity 1s ease-out 3s;
  transition: height 0.5s 2s, visibility 1s ease-out 3s, opacity 1s ease-out 3s; }
  #chatbox.fade {
    opacity: 0;
    visibility: hidden;
    height: 0;
    -moz-transition: height 0.5s 1s, visibility 1s ease-out 0s, opacity 1s ease-out 0s;
    -o-transition: height 0.5s 1s, visibility 1s ease-out 0s, opacity 1s ease-out 0s;
    -webkit-transition: height 0.5s 1s, visibility 1s ease-out 0s, opacity 1s ease-out 0s;
    transition: height 0.5s 1s, visibility 1s ease-out 0s, opacity 1s ease-out 0s; }

iframe {
  background-color: #061015;
  margin: auto;
  box-shadow: 0px 0px 2px 1px rgba(0, 0, 0, 0.8); }

.btn {
  font-size: normal;
  position: relative;
  display: inline-block;
  margin-right: 0.75em;
  max-width: 0;
  height: 32px;
  padding-left: 32px;
  overflow: hidden;
  white-space: nowrap;
  border-width: 0;
  outline: none;
  border-radius: 2px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
  background-color: #13244D;
  color: #dddddd;
  -moz-transition: max-width 2s ease-out 0s, background-image 1s ease-out 0.5s, background-color 1s ease-out 0.5s, color 1s ease-out 0.5s;
  -o-transition: max-width 2s ease-out 0s, background-image 1s ease-out 0.5s, background-color 1s ease-out 0.5s, color 1s ease-out 0.5s;
  -webkit-transition: max-width 2s ease-out 0s, background-image 1s ease-out 0.5s, background-color 1s ease-out 0.5s, color 1s ease-out 0.5s;
  transition: max-width 2s ease-out 0s, background-image 1s ease-out 0.5s, background-color 1s ease-out 0.5s, color 1s ease-out 0.5s; }
  .btn:hover {
    background-color: #1d3776;
    max-width: 100%;
    -moz-transition: max-width 2s ease-out 0s, background-image 0.2s ease-out 0s, background-color 0.2s ease-out 0s, color 0.2s ease-out 0s;
    -o-transition: max-width 2s ease-out 0s, background-image 0.2s ease-out 0s, background-color 0.2s ease-out 0s, color 0.2s ease-out 0s;
    -webkit-transition: max-width 2s ease-out 0s, background-image 0.2s ease-out 0s, background-color 0.2s ease-out 0s, color 0.2s ease-out 0s;
    transition: max-width 2s ease-out 0s, background-image 0.2s ease-out 0s, background-color 0.2s ease-out 0s, color 0.2s ease-out 0s; }
    .btn:hover span.caption {
      opacity: 1;
      -moz-transition: opacity 0.5s ease-out 0s;
      -o-transition: opacity 0.5s ease-out 0s;
      -webkit-transition: opacity 0.5s ease-out 0s;
      transition: opacity 0.5s ease-out 0s; }
  .btn span.caption {
    margin-top: 0.5em;
    padding: 0 8px;
    display: inline-block;
    white-space: nowrap;
    font-size: 12px;
    font-weight: bold;
    opacity: 0;
    -moz-transition: opacity 0.5s ease-out 0.5s;
    -o-transition: opacity 0.5s ease-out 0.5s;
    -webkit-transition: opacity 0.5s ease-out 0.5s;
    transition: opacity 0.5s ease-out 0.5s; }
  .btn > * {
    position: relative; }
  .btn:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    display: block;
    width: 0;
    padding-top: 0;
    border-radius: 100%;
    background-color: rgba(236, 240, 241, 0.3);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%); }
  .btn:active:before {
    width: 120%;
    padding-top: 120%;
    transition: width .2s ease-out, padding-top .2s ease-out; }
  .btn.refresh {
    background: #13244D url("/assets/img/refresh.png") 0 0 no-repeat;
    color: #dddddd; }
    .btn.refresh:hover {
      background: #1d3776 url("/assets/img/refresh.png") 0 0 no-repeat; }
  .btn.popout {
    background: #13244D url("/assets/img/popout.png") 0 0 no-repeat; }
    .btn.popout:hover {
      background: #1d3776 url("/assets/img/popout.png") 0 0 no-repeat; }
  .btn.chatbox {
    background: #13244D url("/assets/img/chatbox.png") 0 0 no-repeat; }
    .btn.chatbox:hover {
      background: #1d3776 url("/assets/img/chatbox.png") 0 0 no-repeat; }
  .btn.twi {
    background: #13244D url("/assets/img/twilight.png") 0 0 no-repeat; }
    .btn.twi:hover {
      background: #D19FE4 url("/assets/img/twilight-hover.png") 0 0 no-repeat;
      color: #8f4bac; }
  .btn.pinkie {
    background: #13244D url("/assets/img/pinkie.png") 0 0 no-repeat; }
    .btn.pinkie:hover {
      background: #FAB3D1 url("/assets/img/pinkie-hover.png") 0 0 no-repeat;
      color: #da297f; }
  .btn.rarity {
    background: #13244D url("/assets/img/rarity.png") 0 0 no-repeat; }
    .btn.rarity:hover {
      background: #F1F1F3 url("/assets/img/rarity-hover.png") 0 0 no-repeat;
      color: #a3a9ab; }
  .btn.dash {
    background: #13244D url("/assets/img/dash.png") 0 0 no-repeat; }
    .btn.dash:hover {
      background: #9EDBF8 url("/assets/img/dash-hover.png") 0 0 no-repeat;
      color: #4493d3; }
  .btn.aj {
    background: #13244D url("/assets/img/applejack.png") 0 0 no-repeat; }
    .btn.aj:hover {
      background: #FFC36B url("/assets/img/applejack-hover.png") 0 0 no-repeat;
      color: #e2520e; }
  .btn.flutt {
    background: #13244D url("/assets/img/fluttershy.png") 0 0 no-repeat; }
    .btn.flutt:hover {
      background: #FCF4A4 url("/assets/img/fluttershy-hover.png") 0 0 no-repeat;
      color: #b79c17; }
  .btn.mainstreamtab {
    background: #13244D url("/assets/img/OneCircle.png") 0 0 no-repeat;
    color: #dddddd; }
    .btn.mainstreamtab:hover {
      background: #1d3776 url("/assets/img/OneCircle.png") 0 0 no-repeat; }
  .btn.secondstreamtab {
    background: #13244D url("/assets/img/TwoCircle.png") 0 0 no-repeat;
    color: #dddddd; }
    .btn.secondstreamtab:hover {
      background: #1d3776 url("/assets/img/TwoCircle.png") 0 0 no-repeat; }

#zone_news {
  width: 100%; }

.article-wrap {
  float: left;
  width: 800px;
  margin-bottom: 1.5em; }
  .article-wrap article table {
    margin-bottom: 1.5em;
    border: 1px solid black; }
  .article-wrap article td, .article-wrap article th {
    border: 1px solid black; }

#sidebar {
  width: 320px;
  margin-top: 2em;
  padding: 1em;
  border-left: 2px solid #061015;
  float: right; }

.postinfo {
  font-size: 10px;
  margin-top: -0.5em;
  margin-bottom: 1em; }
  .postinfo .date:before {
    font-family: FontAwesome;
    padding-right: 0.5ex;
    content: "\f017"; }
  .postinfo .author {
    padding-left: 0.5em; }
    .postinfo .author:before {
      font-family: FontAwesome;
      padding-right: 0.5ex;
      content: "\f007"; }
  .postinfo .tags {
    display: inline;
    padding-left: 0.5em;
    margin-left: 0; }
    .postinfo .tags:before {
      font-family: FontAwesome;
      content: "\f02b"; }
    .postinfo .tags li {
      list-style-type: none;
      display: inline; }
      .postinfo .tags li:not(:last-child):after {
        content: ","; }
    .postinfo .tags a {
      color: #61BB4C; }
      .postinfo .tags a:hover {
        color: #F5ADFF; }

.threecol {
  border-top: 2px solid #061015;
  padding-top: 1em;
  margin-bottom: -0.5em; }
  .threecol div {
    display: inline-block;
    width: 33%; }

.pagination {
  width: 50%;
  font-weight: bold; }
  .pagination div {
    display: inline-block; }
  .pagination .left {
    padding-right: 1em; }
  .pagination .center {
    font-size: 14px; }
    .pagination .center a {
      margin: auto 0.1em; }
  .pagination .right {
    padding-left: 1em; }
  .pagination em {
    font-style: normal; }
    .pagination em:before {
      content: "["; }
    .pagination em:after {
      content: "]"; }

.postlist {
  margin-bottom: 0; }
  .postlist .post {
    border-top: 2px solid #061015;
    margin-bottom: 1em; }
    .postlist .post:last-of-type {
      margin-bottom: 0; }

hr {
  clear: both;
  border: 0;
  border-bottom: 2px solid #061015;
  margin-top: 0.5em;
  margin-bottom: 1.5em; }

.vr {
  border-left: 2px solid #061015;
  padding-right: 1em; }

p {
  line-height: 1.75em;
  padding-bottom: 1em; }

a {
  transition: color 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: inline-block;
  color: #64DCB7;
  text-decoration: none; }
  a:visited {
    color: #64DCB7; }
  a:hover {
    color: #F5ADFF; }
  a:active {
    color: #64DCB7; }
  a[href^="http://"]:after, a[href^="https://"]:after {
    font-family: FontAwesome;
    font-size: 10px;
    font-weight: normal;
    content: '\f08e';
    margin: 0 0 0 3px; }
  a[href*="//www.bronystate.net/"]:after, a.noext:after {
    content: "";
    margin: 0; }
  a.anchor {
    height: 0; }

strong {
  font-weight: bold; }

ul, ol {
  line-height: 1.75em;
  padding-bottom: 1.5em;
  padding-left: 1em;
  margin-left: 1em;
  text-indent: 0; }
  ul ul, ul ol, ol ul, ol ol {
    padding-bottom: 0; }

ol {
  margin-left: 0;
  counter-reset: item; }
  ol > li {
    margin: 0;
    padding: 0 0 0 2em;
    text-indent: -2em;
    list-style-type: none;
    counter-increment: item; }
    ol > li:before {
      display: inline-block;
      width: 1em;
      padding-right: 0.5em;
      font-weight: bold;
      text-align: right;
      content: counter(item) "."; }

h1 {
  font-size: 2em; }

h2 {
  font-size: 1.5em; }

h3 {
  font-size: 1.25em; }

h1, h2, h3 {
  font-family: Verdana, sans-serif;
  color: #d1abc5;
  line-height: 1em;
  margin-top: 0.5em;
  margin-bottom: 0.5em; }

.anchor {
  height: 0; }

:target {
  margin-left: -20px; }
  :target:before {
    display: inline-block;
    position: relative;
    left: -50px;
    font-family: FontAwesome;
    font-size: 20px;
    color: #64DCB7;
    content: "\f0a4";
    opacity: 0;
    animation: 3s anchorfinger cubic-bezier(0.45, 0.05, 0.55, 0.95); }

@keyframes anchorfinger {
  0%, 50%, 100% {
    transform: translateX(3px); }
  25%, 75% {
    transform: translateX(-3px); }
  50% {
    opacity: 1; }
  100% {
    opacity: 0; }
  0% {
    opacity: 1; } }
img {
  padding: 1px;
  border: 2px solid #061015;
  border-radius: 10px; }
  img.noborder {
    padding: 3px;
    border: none;
    border-radius: 0; }

.floatleft {
  float: left;
  margin-right: 1em; }

.floatright {
  float: right;
  margin-left: 1em; }

.center {
  text-align: center; }

.right {
  text-align: right; }

.color-warning {
  color: #FF5198; }

.backtotop {
  float: right;
  margin-left: -100%;
  margin-top: -1.5em;
  font-size: 10px; }

blockquote {
  background-color: black;
  padding: 1em 1.25em 0;
  margin-bottom: 1em;
  font-size: 0.85em;
  overflow-x: hidden; }

footer {
  clear: both;
  margin-top: -1em;
  padding-top: 0.5em;
  border-top: 2px solid #061015;
  font-size: 10px;
  text-align: center;
  cursor: default; }
  footer .icon-wrap {
    margin: auto;
    padding-top: 3px;
    display: flex;
    align-items: center;
    justify-content: center; }
  footer .twit {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: 200px; }
    footer .twit i {
      font-size: 18px; }
    footer .twit span {
      opacity: 0;
      -moz-transition: opacity 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
      -o-transition: opacity 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
      -webkit-transition: opacity 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
      transition: opacity 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
    footer .twit:hover span {
      opacity: 1; }
  footer .sep {
    display: inline-block;
    width: 20px; }
  footer .rss {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 200px; }
    footer .rss i {
      font-size: 18px; }
    footer .rss span {
      opacity: 0;
      -moz-transition: opacity 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
      -o-transition: opacity 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
      -webkit-transition: opacity 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
      transition: opacity 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
    footer .rss:hover span {
      opacity: 1; }
