/* Main */
/* -------------------------------------------------------------- */
* {
  box-sizing: border-box; }

html {
  background-color: #f2f2f2; }

body {
  background-color: #f2f2f2;
  background: -webkit-linear-gradient(-28deg, #f2f2f2 0%, #f2f2f2 60%, #eaeaea 60%, #eaeaea 100%) fixed;
  color: #181a1b;
  margin: 0;
  padding: 0;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  min-height: 2000px; }

h1, h2, h3, h4, h5 {
  margin: 0; }

/* Links */
/* -------------------------------------------------------------- */
a {
  color: white;
  text-decoration: none;
  -webkit-transition: all 0.1s cubic-bezier(0, 0, 0.58, 1); }

a:hover {
  color: #05cc47; }

/* Helper */
/* -------------------------------------------------------------- */
.hidden {
  display: none; }

::selection {
  background-color: #05cc47;
  color: white; }

/* Header */
/* -------------------------------------------------------------- */
#header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  margin: 0;
  padding: 0;
  background-color: transparent;
  height: 60px;
  -webkit-user-select: none; }

#header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: -10;
  height: 100px;
  background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.5), transparent); }

#header {
  -webkit-transform: translateY(0px);
  -webkit-transition: all 0.3s cubic-bezier(0, 0, 0.58, 1);
  -moz-transition: all 0.3s cubic-bezier(0, 0, 0.58, 1);
  -ms-transition: all 0.3s cubic-bezier(0, 0, 0.58, 1);
  -o-transition: all 0.3s cubic-bezier(0, 0, 0.58, 1);
  transition: all 0.3s cubic-bezier(0, 0, 0.58, 1); }

#header.away {
  -webkit-transform: translateY(-60px); }

#header.fixed,
#header.active {
  position: fixed;
  background-color: #181a1b;
  xxbackground-color: black; }

#header::before {
  pointer-events: none;
  opacity: 1;
  visibility: visible;
  -webkit-transition: all 0.3s cubic-bezier(0, 0, 0.58, 1);
  -moz-transition: all 0.3s cubic-bezier(0, 0, 0.58, 1);
  -ms-transition: all 0.3s cubic-bezier(0, 0, 0.58, 1);
  -o-transition: all 0.3s cubic-bezier(0, 0, 0.58, 1);
  transition: all 0.3s cubic-bezier(0, 0, 0.58, 1); }

#header.fixed::before,
#header.active::before {
  opacity: 0;
  visibility: hidden; }

#header .global-nav {
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s cubic-bezier(0, 0, 0.58, 1);
  -moz-transition: all 0.3s cubic-bezier(0, 0, 0.58, 1);
  -ms-transition: all 0.3s cubic-bezier(0, 0, 0.58, 1);
  -o-transition: all 0.3s cubic-bezier(0, 0, 0.58, 1);
  transition: all 0.3s cubic-bezier(0, 0, 0.58, 1); }

#header.fixed .global-nav,
#header.active .global-nav {
  opacity: 1;
  visibility: visible; }

#header h1 {
  margin: 0;
  padding: 0;
  display: inline-block;
  width: 130px;
  margin-right: 0;
  position: relative;
  z-index: 100;
  vertical-align: top; }
  @media (max-width: 768px) {
    #header h1 {
      xxmargin-left: 50px; } }

#header h1 a {
  position: absolute;
  top: 0;
  display: block;
  text-indent: -999px;
  overflow: hidden;
  background: url(../ui/logo.png) center center no-repeat;
  background-size: contain;
  background-size: 100px auto;
  height: 60px;
  width: 140px;
  margin: 0 0px 0 0px; }

#header section svg {
  width: 30px;
  height: 30px;
  fill: #7d8080; }

.hamburger::after {
  display: none; }
  @media (max-width: 768px) {
    .hamburger::after {
      display: block;
      pointer-events: none;
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100vw;
      height: 60px;
      background-color: #181a1b;
      z-index: -1;
      box-shadow: none; } }

@media (max-width: 768px) {
  .hamburger.is-active::after {
    xxbox-shadow: inset 0 -1px #3e3f3f; } }

.hamburger {
  position: relative;
  display: none;
  margin-right: -20px;
  z-index: 50; }
  @media (max-width: 768px) {
    .hamburger {
      vertical-align: middle;
      outline: none;
      height: 60px;
      width: 60px;
      padding: 15px 15px;
      display: inline-block;
      cursor: pointer;
      transition-property: opacity, -webkit-filter;
      transition-property: opacity, filter;
      transition-property: opacity, filter, -webkit-filter;
      transition-duration: 0.15s;
      transition-timing-function: linear;
      font: inherit;
      color: inherit;
      text-transform: none;
      background-color: transparent;
      border: 0;
      overflow: visible; } }

.hamburger:hover {
  xxopacity: 0.7; }

.hamburger-box {
  width: 26px;
  height: 24px;
  display: inline-block;
  position: relative; }

.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -2px; }

.hamburger:hover .hamburger-inner,
.hamburger:hover .hamburger-inner::before,
.hamburger:hover .hamburger-inner::after {
  background-color: #05cc47; }

.hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
  width: 24px;
  height: 2px;
  background-color: #7d8080;
  border-radius: 0px;
  position: absolute;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  transition-duration: 0.15s;
  transition-timing-function: ease;
  width: 18px; }

.hamburger-inner::before, .hamburger-inner::after {
  content: "";
  display: block; }

.hamburger-inner::before {
  top: -6px;
  width: 21px; }

.hamburger-inner::after {
  xxbottom: -10px;
  width: 24px; }

/*
 * Collapse
 */
.hamburger--collapse .hamburger-inner {
  top: auto;
  bottom: 5px;
  transition-duration: 0.1s;
  transition-delay: 0.1s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }

.hamburger--collapse .hamburger-inner::after {
  top: -12px;
  transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0.1s linear; }

.hamburger--collapse .hamburger-inner::before {
  transition: top 0.05s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), -webkit-transform 0.1s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: top 0.05s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.1s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: top 0.05s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.1s cubic-bezier(0.55, 0.055, 0.675, 0.19), -webkit-transform 0.1s cubic-bezier(0.55, 0.055, 0.675, 0.19); }

.hamburger--collapse.is-active .hamburger-inner,
.hamburger--collapse.is-active .hamburger-inner::before,
.hamburger--collapse.is-active .hamburger-inner::after {
  width: 24px;
  background-color: #fff; }

.hamburger--collapse.is-active .hamburger-inner {
  xxbottom: 0px;
  -webkit-transform: translate3d(0, calc(-10px + 5px), 0) rotate(-45deg);
  transform: translate3d(0, calc(-10px + 5px), 0) rotate(-45deg);
  transition-delay: 0.32s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }

.hamburger--collapse.is-active .hamburger-inner::after {
  top: 0;
  opacity: 0;
  transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0.1s 0.17s linear; }

.hamburger--collapse.is-active .hamburger-inner::before {
  top: 0;
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
  transition: top 0.05s 0.18s cubic-bezier(0.33333, 0, 0.66667, 0.33333), -webkit-transform 0.1s 0.42s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: top 0.05s 0.18s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.1s 0.42s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: top 0.05s 0.18s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.1s 0.42s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.1s 0.42s cubic-bezier(0.215, 0.61, 0.355, 1); }

/* Page Nav */
.page nav.secondary {
  text-align: center;
  position: relative;
  list-style: none;
  margin: 0 0;
  margin: 0 25px;
  padding: 00px 0;
  xxborder-bottom: 1px solid #dadada;
  border-bottom: 1px solid #d6dadb;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1); }

.page nav.secondary ul {
  margin: 0;
  padding: 0;
  list-style: none;
  position: relative;
  display: inline-block; }
  @media (max-width: 768px) {
    .page nav.secondary ul {
      white-space: nowrap; } }

.page nav.secondary ul li {
  display: inline-block;
  margin: 0px 15px;
  font-family: "Calibre-Semibold";
  font-weight: normal;
  font-size: 17px;
  font-size: 21px;
  line-height: 42px;
  text-transform: uppercase; }
  @media (max-width: 768px) {
    .page nav.secondary ul li {
      margin: 0px 10px;
      font-size: 17px; } }

.page nav.secondary ul li a {
  display: block;
  padding: 5px 0;
  color: #181a1b;
  color: rgba(24, 26, 27, 0.4);
  xxopacity: 0.40; }
  @media (max-width: 768px) {
    .page nav.secondary ul li a {
      padding: 0; } }

.page nav.secondary ul li a:hover {
  opacity: 1;
  color: #05cc47; }

.page nav.secondary ul li a.active {
  opacity: 1;
  color: #181a1b; }

.page nav.secondary u {
  position: absolute;
  bottom: 0;
  bottom: -1px;
  margin-top: 0px;
  xxmargin-top: -2px;
  xxheight: 3px;
  height: 1px;
  width: 70px;
  display: inline-block;
  z-index: 2;
  background-color: #05cc47;
  transition: left 0.2s cubic-bezier(0.15, 0.8, 0.3, 1.2) 0s; }

.secondary.tabs var {
  position: relative;
  top: -2px;
  opacity: 1;
  background-color: rgba(0, 0, 0, 0.25);
  background-color: white;
  font-size: 12px;
  font-family: "Calibre-Light";
  font-style: normal;
  display: inline-block;
  border-radius: 100%;
  text-align: center;
  margin-left: 2px;
  width: 20px;
  height: 20px;
  line-height: 20px; }

/* Profile */
.hero {
  position: relative;
  xxheight: 400px;
  color: #fff;
  xxborder: 1px solid #c00;
  background-color: #c00;
  background-color: #242626; }

.deviant {
  position: absolute;
  z-index: 30;
  bottom: 25px;
  margin-left: 25px; }
  @media (max-width: 768px) {
    .deviant {
      xxbottom: 65px;
      margin-left: 15px; } }

.deviant .avatar {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 50px;
  margin-right: 0px;
  image-rendering: pixelated; }
  @media (max-width: 768px) {
    .deviant .avatar {
      margin-top: 10px;
      width: 30px;
      height: 30px; } }

.deviant .deviant-username {
  position: relative;
  display: inline-block;
  margin: 0;
  line-height: 1;
  font-size: 80px;
  font-size: 74px;
  font-family: "Calibre-Semibold";
  font-family: "Calibre-Medium";
  xxfont-family: "Calibre-Regular";
  xxfont-family: "Helvetica Neue";
  text-rendering: optimizeLegibility; }
  .deviant .deviant-username span {
    -webkit-transition: all 0.3s cubic-bezier(0, 0, 0.58, 1);
    -moz-transition: all 0.3s cubic-bezier(0, 0, 0.58, 1);
    -ms-transition: all 0.3s cubic-bezier(0, 0, 0.58, 1);
    -o-transition: all 0.3s cubic-bezier(0, 0, 0.58, 1);
    transition: all 0.3s cubic-bezier(0, 0, 0.58, 1); }
  @media (max-width: 768px) {
    .deviant .deviant-username {
      font-size: 44px; } }
  .deviant .deviant-username #username {
    position: relative;
    top: -2px; }

a[href="#profile"]:hover span {
  color: #05cc47; }

.deviant .deviant-username a {
  color: inherit; }

.deviant .deviant-username a i {
  font-family: 'deviantART-symbols-mobile';
  opacity: .75;
  vertical-align: top;
  display: inline-block;
  margin-left: -12px;
  font-size: 36px; }
  @media (max-width: 768px) {
    .deviant .deviant-username a i {
      margin-top: 1px;
      font-size: 24px;
      margin-left: -8px; } }

/*
.deviant .deviant-fullname {
  font-weight: normal;
  font-size: 25px;
  font-family: "Calibre-Light";
  opacity: 0.85;
}
*/
/* Dropdown */
.actions {
  margin-top: 20px;
  xxmargin-left: 0px; }
  @media (max-width: 768px) {
    .actions {
      margin-top: 15px;
      xxmargin-left: 0px; } }

.actions .btn.special {
  margin-right: 5px;
  padding-left: 25px;
  padding-right: 25px;
  width: 125px;
  overflow: hidden; }
  @media (max-width: 768px) {
    .actions .btn.special {
      margin-right: -5px;
      xxheight: 40px;
      xxline-height: 40px;
      font-size: 15px; } }
  .actions .btn.special b.primary {
    xxdisplay: inline-block;
    position: absolute;
    -webkit-transform: translateX(-25px);
    -webkit-transition: all 0.3s cubic-bezier(0, 0, 0.58, 1);
    -moz-transition: all 0.3s cubic-bezier(0, 0, 0.58, 1);
    -ms-transition: all 0.3s cubic-bezier(0, 0, 0.58, 1);
    -o-transition: all 0.3s cubic-bezier(0, 0, 0.58, 1);
    transition: all 0.3s cubic-bezier(0, 0, 0.58, 1); }
  .actions .btn.special b.secondary {
    xxdisplay: none;
    position: absolute;
    -webkit-transform: translateX(-160px);
    -webkit-transition: all 0.3s cubic-bezier(0, 0, 0.58, 1);
    -moz-transition: all 0.3s cubic-bezier(0, 0, 0.58, 1);
    -ms-transition: all 0.3s cubic-bezier(0, 0, 0.58, 1);
    -o-transition: all 0.3s cubic-bezier(0, 0, 0.58, 1);
    transition: all 0.3s cubic-bezier(0, 0, 0.58, 1); }
  .actions .btn.special b.teriary {
    display: none; }
  .actions .btn.special:hover {
    background-color: #fff; }

.hero.is_other .for_other {
  display: inline-block; }
.hero.is_other .for_self {
  display: none; }

.hero.is_self .for_other {
  display: none; }
.hero.is_self .for_self {
  display: inline-block; }

.actions .btn.special.watching {
  width: 125px;
  background-color: #fff;
  background-color: #222222;
  background-color: #000;
  color: #05cc47;
  -webkit-font-smoothing: antialiased; }
  .actions .btn.special.watching i {
    display: inline-block;
    position: relative;
    top: 1px;
    margin-left: -10px;
    margin-right: 5px; }
  .actions .btn.special.watching b.primary {
    xxdisplay: none;
    -webkit-transform: translateX(100px); }
  .actions .btn.special.watching b.secondary {
    xxdisplay: inline-block;
    -webkit-transform: translateX(-40px); }
  .actions .btn.special.watching b.teriary {
    display: none; }

.actions .btn-group {
  display: inline-block; }
  .actions .btn-group .btn.default {
    font-size: 15px;
    font-family: "Calibre-Light";
    font-family: "Calibre-Regular";
    color: #05CC47;
    color: #05cc47;
    box-shadow: inset 0 0 0 1px #05CC47;
    box-shadow: inset 0 0 0 1px #05cc47; }
    @media (max-width: 768px) {
      .actions .btn-group .btn.default {
        font-size: 15px; } }
    .actions .btn-group .btn.default::before {
      content: "Send a "; }
      @media (max-width: 768px) {
        .actions .btn-group .btn.default::before {
          content: ""; } }
  .actions .btn-group .btn.default:hover {
    color: #fff;
    xxbox-shadow: inset 0 0 0 1px #fff;
    z-index: 20; }
  .actions .btn-group .btn.default:hover + .dropdown a.more {
    color: #fff;
    xxbox-shadow: inset 1px 0 0 white, inset 0 0 0 1px #05cc47 !important; }

.btn {
  text-decoration: none;
  text-align: center;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  text-overflow: ellipsis;
  cursor: pointer;
  display: inline-block;
  border-width: 0;
  border-radius: 3px;
  color: #666;
  font-size: 16px;
  padding: 5px 20px;
  height: 40px;
  min-width: 90px;
  line-height: 30px;
  font-family: "Calibre-Light";
  text-transform: uppercase;
  outline: none;
  text-rendering: optimizeLegibility;
  -webkit-transition: all 0.1s cubic-bezier(0, 0, 0.58, 1); }

.btn.special {
  background-color: #05CC47;
  font-family: "Calibre-Bold";
  color: #000; }

.actions a {
  min-width: 50px;
  vertical-align: top;
  color: inherit;
  color: #000;
  font-size: 16px;
  xxmargin-left: 10px;
  xxfont-family: "Calibre-Semibold";
  xxbackground-color: rgba(255, 255, 255, 0.85);
  xxbackground-color: #f2f2f2;
  xxbox-shadow: 0 3px 8px rgba(0, 0, 0, 0.1), 0 1px 1px rgba(0, 0, 0, 0.05); }

.actions .btn-group {
  margin-left: 10px;
  vertical-align: top;
  display: inline-block;
  xxbox-shadow: 0 3px 8px rgba(0, 0, 0, 0.1), 0 1px 1px rgba(0, 0, 0, 0.05); }

.actions .btn-group a:not(.more) {
  border-radius: 3px 0 0 3px; }

.actions .btn-group a {
  margin-left: 0px;
  xxbox-shadow: none; }

.actions .btn-group a.more {
  display: inline-block;
  height: 40px !important;
  top: 0 !important;
  position: relative;
  text-align: center;
  margin-right: 10px !important;
  margin-left: -3px !important;
  padding-left: 0px !important;
  padding-right: 0px !important;
  min-width: 30px !important;
  box-shadow: inset 0 0 0 1px #05CC47;
  box-shadow: inset 0 0 0 1px #05cc47; }
  .actions .btn-group a.more:hover {
    xxbox-shadow: inset 0 0 0 1px white; }
    .actions .btn-group a.more:hover i {
      color: white !important; }
  .actions .btn-group a.more i {
    position: relative;
    top: 3px !important;
    margin-left: 1px !important;
    color: #05CC47;
    color: #05cc47; }
    .actions .btn-group a.more i:hover {
      color: white !important; }

.actions .dropdown {
  position: relative;
  display: inline-block;
  margin: 0;
  padding: 0;
  text-align: left;
  margin-left: -4px; }

.actions .dropdown ul {
  position: absolute;
  display: block;
  top: 29px;
  right: -14px;
  margin: 0;
  padding: 7px 0;
  list-style: none;
  background: #F6F6F3;
  border-color: #F6F6F3;
  border-radius: 3px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3), 0 1px 2px rgba(0, 0, 0, 0.05);
  z-index: 500;
  opacity: 0 !important;
  pointer-events: none;
  -webkit-transform: translate(0, -15px) translateZ(0);
  -webkit-transition: all 0.15s cubic-bezier(0, 0, 0.58, 1); }

.actions .dropdown ul li.divider {
  border-top: 1px solid #dae4d9;
  margin: 5px 10px; }

.actions .dropdown ul li a {
  display: block;
  font-size: 15px;
  color: #6A6962;
  min-width: 180px;
  padding: 6px 30px 6px 15px;
  white-space: nowrap;
  text-transform: none;
  letter-spacing: 0;
  -webkit-transition: all 0.1s cubic-bezier(0, 0, 0.58, 1);
  -moz-transition: all 0.1s cubic-bezier(0, 0, 0.58, 1);
  -ms-transition: all 0.1s cubic-bezier(0, 0, 0.58, 1);
  -o-transition: all 0.1s cubic-bezier(0, 0, 0.58, 1);
  transition: all 0.1s cubic-bezier(0, 0, 0.58, 1); }

.actions .dropdown.active ul {
  display: block;
  opacity: 1 !important;
  pointer-events: auto;
  -webkit-transform: translate(0, 0) translateZ(0);
  -webkit-transition: all 0.15s cubic-bezier(0, 0, 0.58, 1); }

.actions .dropdown ul::before, .actions .dropdown ul::after {
  content: "";
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  border: 10px solid transparent;
  pointer-events: none; }

.actions .dropdown ul::before {
  top: -20px;
  right: 10px;
  border-bottom-color: rgba(0, 0, 0, 0.1);
  -webkit-filter: blur(1px); }

.actions .dropdown ul::after {
  top: -19px;
  right: 10px;
  border-bottom-color: inherit; }

.actions .dropdown ul > li a i {
  width: 16px;
  height: 16px;
  display: inline-block;
  top: 1px;
  left: -8px;
  pointer-events: none;
  text-align: center;
  position: relative;
  margin-right: -4px; }

.actions .dropdown ul > li a.checked i:after {
  content: "";
  width: 10px;
  height: 5px;
  position: absolute;
  z-index: 500;
  display: block;
  top: 4px;
  left: 4px;
  border: 3px solid #05cc46;
  border-top: none;
  border-right: none;
  background: transparent;
  opacity: 1;
  transform: rotate(-50deg); }

.actions .dropdown ul > li a:hover {
  background-color: #ECEBE6;
  background-color: #e6ede0;
  color: #4A4942; }

.actions .dropdown ul > li a.active {
  font-weight: bold; }

.actions .dropdown ul > li a.disabled {
  opacity: 0.25;
  pointer-events: none; }

.actions .btn-group .dropdown a.more {
  vertical-align: top;
  position: relative;
  top: 9px;
  border-left: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 0 3px 3px 0;
  margin-left: -1px;
  padding: 9px 4px;
  z-index: 10; }

.actions .btn-group .dropdown a.more i {
  position: relative;
  top: 5px;
  margin-left: -1px;
  font-size: 14px;
  pointer-events: none; }

.actions .btn-group .dropdown ul li a [class^="icon-"] {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  xxborder: 1px solid #c00;
  margin-right: 0px;
  margin-left: 10px;
  color: #05cc47; }

.actions .btn-group .dropdown ul li a .icon-core-small {
  position: relative;
  margin-top: -10px;
  top: 1px;
  font-family: 'deviantART-symbols-mobile';
  font-size: 24px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

.hero .content {
  max-width: 1200px;
  height: 400px;
  position: relative;
  margin: auto;
  xxposition: absolute;
  xxborder: 1px solid #c00; }

.close-infobar {
  visibility: hidden;
  pointer-events: none;
  opacity: 0;
  -webkit-transition: all 0.3s cubic-bezier(0, 0, 0.58, 1);
  -moz-transition: all 0.3s cubic-bezier(0, 0, 0.58, 1);
  -ms-transition: all 0.3s cubic-bezier(0, 0, 0.58, 1);
  -o-transition: all 0.3s cubic-bezier(0, 0, 0.58, 1);
  transition: all 0.3s cubic-bezier(0, 0, 0.58, 1);
  -webkit-transform: translateY(20px) scale(1);
  xx-webkit-transform-origin: 100% 0;
  -webkit-transition-timing-function: cubic-bezier(0.15, 0.8, 0.3, 1.2);
  -webkit-transition-timing-function: cubic-bezier(0.31, 0.44, 0.445, 1.65); }
  .close-infobar.active {
    visibility: visible;
    pointer-events: auto;
    opacity: 1;
    -webkit-transform: translateY(0px);
    xx-webkit-transition-delay: 0.3s; }

.close-infobar {
  position: absolute;
  display: block;
  top: 40px;
  right: 25px;
  font-size: 70px;
  z-index: 30;
  font-family: "Calibre-Thin";
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }
  .close-infobar::before {
    content: "\00d7"; }
  @media (max-width: 768px) {
    .close-infobar {
      right: 12px; } }

.infobar {
  position: absolute;
  bottom: 25px;
  xxtop: 20px;
  right: 25px;
  left: 0;
  margin-left: 326px;
  text-align: right;
  font-size: 16px;
  xxopacity: 0.85;
  z-index: 20; }
  @media (max-width: 1024px) {
    .infobar {
      text-align: left;
      margin-left: 326px;
      right: auto; } }
  @media (max-width: 768px) {
    .infobar {
      text-align: right;
      xxmargin-left: 14px;
      right: auto;
      left: auto;
      right: -5px;
      bottom: 10px;
      width: 50px;
      xxheight: 200px; } }
  .infobar .padding {
    width: auto; }
    @media (max-width: 1024px) {
      .infobar .padding {
        width: 2000px; } }
    @media (max-width: 768px) {
      .infobar .padding {
        width: 2000px; } }

.infobar a {
  display: inline-block;
  xxborder: 1px solid #c00;
  padding: 3px 12px 18px 12px;
  position: relative;
  height: 40px;
  font-size: 16px;
  color: inherit;
  color: white;
  font-family: "Calibre-Light";
  font-family: "Calibre-Thin";
  xxmargin-right: 15px;
  margin-left: 5px;
  border-radius: 3px;
  -webkit-transition: all 0.3s cubic-bezier(0, 0, 0.58, 1);
  -moz-transition: all 0.3s cubic-bezier(0, 0, 0.58, 1);
  -ms-transition: all 0.3s cubic-bezier(0, 0, 0.58, 1);
  -o-transition: all 0.3s cubic-bezier(0, 0, 0.58, 1);
  transition: all 0.3s cubic-bezier(0, 0, 0.58, 1); }
  .infobar a:hover {
    background-color: rgba(0, 0, 0, 0.25);
    background-color: #05cc47;
    xxbackground-color: rgba(255, 255, 255, 0.5); }
  .infobar a.active {
    background-color: rgba(0, 0, 0, 0.5);
    xxbackground-color: rgba(255, 255, 255, 0.5);
    background-color: #05cc47; }
  @media (max-width: 768px) {
    .infobar a {
      display: block;
      margin-bottom: 12px;
      xxopacity: 0.75;
      xxborder: 1px solid #fff;
      xxborder: 1px solid rgba(255, 255, 255, 0.5);
      xxbackground-color: rgba(255, 255, 255, 0.5);
      background-color: rgba(0, 0, 0, 0.75);
      xxborder: 1px solid #05cc47;
      border-radius: 100%;
      width: 32px;
      height: 32px;
      padding: 0;
      margin-left: 0px;
      text-align: center;
      xxmargin-right: 5px; }
      .infobar a:hover {
        background-color: transparent;
        background-color: #05cc47; } }

.infobar a i {
  display: none;
  font-size: 16px;
  -webkit-transition: all 0.3s cubic-bezier(0, 0, 0.58, 1);
  -moz-transition: all 0.3s cubic-bezier(0, 0, 0.58, 1);
  -ms-transition: all 0.3s cubic-bezier(0, 0, 0.58, 1);
  -o-transition: all 0.3s cubic-bezier(0, 0, 0.58, 1);
  transition: all 0.3s cubic-bezier(0, 0, 0.58, 1); }
  .infobar a i img {
    -webkit-filter: contrast(10%) brightness(500%);
    xximage-rendering: auto;
    width: 16px;
    height: 20px;
    top: 4px;
    margin-left: -1px; }
  .infobar a i:hover {
    opacity: 1; }
  @media (max-width: 1024px) {
    .infobar a i {
      display: none; } }
  @media (max-width: 768px) {
    .infobar a i {
      vertical-align: middle;
      width: 20px;
      height: 20px;
      display: inline-block;
      line-height: 20px;
      margin-top: 6px;
      opacity: 0.75;
      margin-left: 0px;
      color: #05cc47;
      color: #fff; } }
  .infobar a i.icon-groups {
    font-size: 18px;
    margin-top: 1px;
    font-family: 'deviantART-symbols-mobile'; }

.infobar a:hover i {
  opacity: 1; }

.infobar a span {
  display: inline-block;
  -webkit-transition: all 0.3s cubic-bezier(0, 0, 0.58, 1);
  -moz-transition: all 0.3s cubic-bezier(0, 0, 0.58, 1);
  -ms-transition: all 0.3s cubic-bezier(0, 0, 0.58, 1);
  -o-transition: all 0.3s cubic-bezier(0, 0, 0.58, 1);
  transition: all 0.3s cubic-bezier(0, 0, 0.58, 1); }
  @media (max-width: 1024px) {
    .infobar a span {
      display: inline-block; } }
  @media (max-width: 768px) {
    .infobar a span {
      display: none; } }

.infobar a.active span {
  -webkit-transform: translateY(-40px);
  -webkit-transition: all 0.2s cubic-bezier(0, 0, 0.58, 1);
  -moz-transition: all 0.2s cubic-bezier(0, 0, 0.58, 1);
  -ms-transition: all 0.2s cubic-bezier(0, 0, 0.58, 1);
  -o-transition: all 0.2s cubic-bezier(0, 0, 0.58, 1);
  transition: all 0.2s cubic-bezier(0, 0, 0.58, 1);
  opacity: 0; }

.infobar a label {
  cursor: pointer;
  position: absolute;
  xxtop: 0;
  bottom: 0;
  left: 12px;
  xxmargin-top: -18px;
  margin-bottom: 4px;
  display: inline-block;
  font-size: 11px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  font-family: "Calibre-Light";
  font-family: "Calibre-Regular";
  font-family: "Calibre-Semibold";
  letter-spacing: 0.5px;
  xxfont-family: "Calibre-Medium";
  -webkit-transition: all 0.2s cubic-bezier(0, 0, 0.58, 1);
  -moz-transition: all 0.2s cubic-bezier(0, 0, 0.58, 1);
  -ms-transition: all 0.2s cubic-bezier(0, 0, 0.58, 1);
  -o-transition: all 0.2s cubic-bezier(0, 0, 0.58, 1);
  transition: all 0.2s cubic-bezier(0, 0, 0.58, 1);
  -webkit-transition-delay: 0s; }
  @media (max-width: 768px) {
    .infobar a label {
      display: none;
      position: relative;
      top: 6px;
      margin-left: 6px;
      margin-right: 15px; } }

.infobar a:hover label {
  color: white; }

.infobar a.active label {
  font-size: 16px;
  color: white;
  -webkit-transform: translateY(-7px);
  xx-webkit-transition-delay: 0.2s; }
  @media (max-width: 768px) {
    .infobar a.active label {
      -webkit-transform: translateY(0px);
      font-size: 11px; } }

img.badge {
  image-rendering: pixelated;
  position: relative;
  top: 5px;
  margin-top: -12px;
  xx-webkit-transform: scale(2);
  xx-webkit-filter: drop-shadow(0px 0px 10px white); }

.hero .actions .dropdown ul {
  top: 45px;
  right: 4px; }
  .hero .actions .dropdown ul li.hr {
    margin: 10px 15px;
    border-top: 1px solid rgba(0, 0, 0, 0.1); }
  .hero .actions .dropdown ul small a {
    font-size: 13px;
    padding-top: 10px;
    padding-bottom: 10px;
    xxmargin-left: 28px; }

.hero {
  position: relative;
  xxoverflow: hidden; }

.hero .cover-art {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden; }

.hero .gradient {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  xxbackground: -webkit-linear-gradient(bottom, rgba(51, 51, 51, 0.7), rgba(51, 51, 51, 0.6) 50px, rgba(51, 51, 51, 0));
  xxbackground: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6) 90px, rgba(0, 0, 0, 0.3));
  xxbackground: -webkit-linear-gradient(bottom, rgba(36, 38, 38, 0.9), rgba(36, 38, 38, 0.9) 100px, rgba(36, 38, 38, 0.2));
  xxbackground: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.7) 100px, rgba(0, 0, 0, 0.1));
  background: -webkit-linear-gradient(bottom, rgba(36, 38, 38, 0.8), rgba(36, 38, 38, 0.6) 100px, rgba(36, 38, 38, 0.1));
  z-index: 10;
  -webkit-transition: all 0.3s cubic-bezier(0, 0, 0.58, 1);
  -moz-transition: all 0.3s cubic-bezier(0, 0, 0.58, 1);
  -ms-transition: all 0.3s cubic-bezier(0, 0, 0.58, 1);
  -o-transition: all 0.3s cubic-bezier(0, 0, 0.58, 1);
  transition: all 0.3s cubic-bezier(0, 0, 0.58, 1); }

.hero:hover .gradient {
  xxbackground: -webkit-linear-gradient(bottom, rgba(51, 51, 51, 0.7), rgba(51, 51, 51, 0.6) 50px, rgba(51, 51, 51, 0));
  xxbackground: -webkit-linear-gradient(bottom, rgba(36, 38, 38, 0.9), rgba(36, 38, 38, 0.6) 80px, rgba(36, 38, 38, 0.1)); }

.hero .solid {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #242626;
  z-index: 10;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: all 0.2s cubic-bezier(0, 0, 0.58, 1);
  -moz-transition: all 0.2s cubic-bezier(0, 0, 0.58, 1);
  -ms-transition: all 0.2s cubic-bezier(0, 0, 0.58, 1);
  -o-transition: all 0.2s cubic-bezier(0, 0, 0.58, 1);
  transition: all 0.2s cubic-bezier(0, 0, 0.58, 1); }

.hero .bg {
  position: absolute;
  xxposition: fixed;
  top: 0;
  left: -20px;
  right: -20px;
  xxheight: 400px;
  bottom: -20px;
  xx-webkit-filter: blur(8px);
  overflow: hidden;
  -webkit-transition: opacity 1.5s cubic-bezier(0, 0, 0.58, 1) 0s, transform 1.5s cubic-bezier(0, 0, 0.58, 1) 0s; }

.hero .bg.has-blur {
  -webkit-filter: blur(10px); }

.hero:hover .bg {
  xx-webkit-filter: blur(4px);
  xx-webkit-transform: scale(1.1);
  xxopacity: 0.5;
  -webkit-transition-delay: 0s; }

.hero.no-bg .gradient {
  display: none; }
.hero.no-bg .bg {
  display: none; }

.hero .deviant {
  -webkit-transform: translateY(0);
  -webkit-transition: all 0.3s cubic-bezier(0, 0, 0.58, 1);
  -moz-transition: all 0.3s cubic-bezier(0, 0, 0.58, 1);
  -ms-transition: all 0.3s cubic-bezier(0, 0, 0.58, 1);
  -o-transition: all 0.3s cubic-bezier(0, 0, 0.58, 1);
  transition: all 0.3s cubic-bezier(0, 0, 0.58, 1); }
  .hero .deviant .actions {
    opacity: 1;
    pointer-events: auto;
    visibility: visible; }
.hero .change {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
  -webkit-transform: translateY(0);
  -webkit-transition: all 0.3s cubic-bezier(0, 0, 0.58, 1);
  -moz-transition: all 0.3s cubic-bezier(0, 0, 0.58, 1);
  -ms-transition: all 0.3s cubic-bezier(0, 0, 0.58, 1);
  -o-transition: all 0.3s cubic-bezier(0, 0, 0.58, 1);
  transition: all 0.3s cubic-bezier(0, 0, 0.58, 1); }

.hero.is_info .deviant {
  -webkit-transform: translateY(68px); }
  .hero.is_info .deviant .actions {
    opacity: 0;
    pointer-events: none;
    visibility: hidden; }
.hero.is_info .change {
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  -webkit-transform: translateY(-68px); }
.hero.is_info .bg {
  xx-webkit-filter: blur(4px);
  xx-webkit-transform: scale(1.1);
  xxopacity: 0.5;
  -webkit-transition-delay: 0s; }
.hero.is_info .solid {
  opacity: 0.80; }

.info {
  position: absolute;
  top: 60px;
  right: 25px;
  z-index: 20; }

.info {
  visibility: hidden;
  pointer-events: none;
  opacity: 0; }
  .info section,
  .info [class^='item'] {
    vertical-align: top;
    display: inline-block;
    visibility: hidden;
    pointer-events: none;
    opacity: 0;
    -webkit-transition: all 0.3s cubic-bezier(0, 0, 0.58, 1);
    -moz-transition: all 0.3s cubic-bezier(0, 0, 0.58, 1);
    -ms-transition: all 0.3s cubic-bezier(0, 0, 0.58, 1);
    -o-transition: all 0.3s cubic-bezier(0, 0, 0.58, 1);
    transition: all 0.3s cubic-bezier(0, 0, 0.58, 1);
    -webkit-transform: translateY(20px) scale(1);
    xx-webkit-transform-origin: 100% 0;
    -webkit-transition-timing-function: cubic-bezier(0.15, 0.8, 0.3, 1.2);
    -webkit-transition-timing-function: cubic-bezier(0.31, 0.44, 0.445, 1.65); }
  .info .item01 {
    -webkit-transition-delay: 0s; }
  .info .item02 {
    -webkit-transition-delay: 0s; }
  .info .item03 {
    -webkit-transition-delay: 0s; }
  .info .item04 {
    -webkit-transition-delay: 0s; }
  .info .item05 {
    -webkit-transition-delay: 0s; }
  .info.active {
    visibility: visible;
    pointer-events: auto;
    opacity: 1; }
    .info.active section,
    .info.active [class^='item'] {
      visibility: visible;
      pointer-events: auto;
      opacity: 1;
      -webkit-transform: translateY(0px);
      xx-webkit-transition-delay: 0.3s; }
    .info.active .item01 {
      -webkit-transition-delay: 0.0s; }
    .info.active .item02 {
      -webkit-transition-delay: 0.1s; }
    .info.active .item03 {
      -webkit-transition-delay: 0.2s; }
    .info.active .item04 {
      -webkit-transition-delay: 0.3s; }
    .info.active .item05 {
      -webkit-transition-delay: 0.4s; }
    .info.active .item06 {
      -webkit-transition-delay: 0.5s; }
    .info.active .item07 {
      -webkit-transition-delay: 0.6s; }
    .info.active .item08 {
      -webkit-transition-delay: 0.7s; }

.hero .change {
  position: absolute;
  top: 90px;
  right: 25px;
  z-index: 20; }
  .hero .change .btn {
    background-color: rgba(255, 255, 255, 0.75);
    margin-left: 15px;
    font-size: 14px;
    height: 38px;
    font-family: "Calibre-Medium"; }

#infobar-info.info ul {
  margin: 0;
  margin-top: 74px;
  margin-left: 50px;
  padding: 0;
  list-style: none; }

#infobar-info.info ul li {
  font-size: 20px;
  padding: 0;
  margin: 0;
  line-height: 1;
  font-family: "Calibre-Light"; }

#infobar-info.info ul.item01 {
  margin-top: 25px; }

#infobar-info.info ul li.fullname {
  font-size: 44px;
  font-family: "Calibre-Light"; }

#infobar-info.info ul li.fullname + li {
  position: relative;
  top: 5px;
  font-size: 26px;
  font-family: "Calibre-Semibold";
  text-transform: uppercase; }

#infobar-info.info .tagline {
  position: relative;
  top: 25px;
  font-size: 56px;
  font-family: "Calibre-Semibold"; }

#infobar-info.info ul.asl {
  position: relative;
  xxtop: 5px;
  xxtop: 84px;
  xxmargin-left: 50px; }

#infobar-info.info ul.asl li {
  font-size: 18px;
  margin-bottom: 5px; }

#infobar-info.info ul.asl li strong {
  font-weight: normal;
  font-size: 14px;
  font-family: "Calibre-Bold";
  font-family: "Calibre-Semibold";
  font-family: "Calibre-Light";
  text-transform: uppercase;
  opacity: 0.5;
  text-align: right;
  xxtext-rendering: optimizeLegibility;
  xx-webkit-font-smoothing: antialiased;
  xx-moz-osx-font-smoothing: grayscale;
  margin-right: 3px;
  margin-right: 5px;
  width: 30px;
  display: inline-block; }

#infobar-info.info ul.small {
  xxmargin-top: 40px; }

#infobar-info.info ul.small li {
  font-size: 18px;
  margin-bottom: 5px;
  font-family: "Calibre-Thin"; }

#infobar-info.info ul.small li strong {
  font-weight: normal;
  font-family: "Calibre-Bold";
  font-family: "Calibre-Semibold";
  text-transform: uppercase;
  xxtext-rendering: optimizeLegibility;
  xx-webkit-font-smoothing: antialiased;
  xx-moz-osx-font-smoothing: grayscale;
  display: inline-block; }

#infobar-info.info ul.small .username {
  font-family: "Calibre-Semibold"; }

#infobar-info.info ul.small i {
  font-size: 13px !important; }

#infobar-stats ul {
  margin: 0;
  margin-top: 20px;
  margin-right: 20px;
  padding: 0;
  list-style: none; }

#infobar-stats ul li {
  margin-bottom: -5px;
  font-size: 34px;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

#infobar-stats ul li a em {
  display: inline-block;
  width: 150px;
  text-align: right;
  font-style: normal;
  font-family: "Calibre-Thin";
  text-transform: uppercase; }

#infobar-stats ul li a strong {
  font-family: "Calibre-Bold";
  text-transform: uppercase; }

#infobar-stats ul li a {
  color: #fff; }
  #infobar-stats ul li a svg * {
    -webkit-transition: all 0.1s cubic-bezier(0, 0, 0.58, 1);
    -moz-transition: all 0.1s cubic-bezier(0, 0, 0.58, 1);
    -ms-transition: all 0.1s cubic-bezier(0, 0, 0.58, 1);
    -o-transition: all 0.1s cubic-bezier(0, 0, 0.58, 1);
    transition: all 0.1s cubic-bezier(0, 0, 0.58, 1);
    fill: #fff; }

#infobar-stats ul li a.active {
  color: #05cc47; }
  #infobar-stats ul li a.active svg * {
    fill: #05cc47; }

#infobar-stats ul li a:hover {
  color: #05cc47; }
  #infobar-stats ul li a:hover svg * {
    fill: #05cc47; }

.info .row {
  height: 220px;
  overflow: hidden;
  text-align: right;
  opacity: 0;
  pointer-events: none;
  visibility: hidden; }

.info.active .row {
  opacity: 1;
  pointer-events: auto;
  visibility: visible; }

#cumulitive-views {
  float: left;
  position: absolute;
  right: 350px;
  margin-top: 25px;
  margin-right: 50px; }
  #cumulitive-views h1 {
    position: absolute;
    top: 0px;
    left: 11px;
    font-size: 34px;
    margin-bottom: 12px; }
  #cumulitive-views #chart1 {
    xx-webkit-transform: scale(0.75);
    xx-webkit-transform-origin: 100% 0; }

#infobar-groups {
  margin-top: 50px; }
  #infobar-groups a {
    display: inline-block;
    text-align: left;
    margin-left: 50px; }
  #infobar-groups strong {
    display: block;
    font-size: 22px;
    font-family: "Calibre-Medium"; }
    #infobar-groups strong .icon-groups {
      font-family: 'deviantART-symbols-mobile'; }
  #infobar-groups small {
    display: block;
    font-size: 15px;
    font-family: "Calibre-Light";
    opacity: 0.5; }

.info .group {
  position: relative;
  xxmargin-top: -15px;
  margin-bottom: 5px;
  height: 100px;
  xximage-rendering: pixelated; }

.info .badge {
  position: relative;
  margin-top: 10px;
  width: 150px;
  width: 150px;
  image-rendering: pixelated; }

/* Use this selector to override the line style on a given series */
.ct-series-a .ct-line {
  /* Set the colour of this series line */
  stroke: #05CC47;
  /* Control the thikness of your lines */
  stroke-width: 1px;
  /* Create a dashed line with a pattern */
  xxstroke-dasharray: 10px 20px; }

/* This selector overrides the points style on line charts. Points on line charts are actually just very short strokes. This allows you to customize even the point size in CSS */
.ct-series-a .ct-point {
  /* Colour of your points */
  stroke: #05CC47;
  /* Size of your points */
  stroke-width: 3px;
  /* Make your points appear as squares */
  xxstroke-linecap: square; }

.ct-series-a .ct-point {
  -webkit-animation: exploding-stroke 2.6s ease-out infinite; }

/* Use this selector to override the line style on a given series */
.ct-series-b .ct-line {
  /* Set the colour of this series line */
  stroke: #05CC47;
  /* Control the thikness of your lines */
  stroke-width: 1px;
  /* Create a dashed line with a pattern */
  xxstroke-dasharray: 10px 20px; }

/* This selector overrides the points style on line charts. Points on line charts are actually just very short strokes. This allows you to customize even the point size in CSS */
.ct-series-b .ct-point {
  /* Colour of your points */
  stroke: #05CC47;
  /* Size of your points */
  stroke-width: 3px;
  /* Make your points appear as squares */
  xxstroke-linecap: square; }

.ct-series-b .ct-point {
  -webkit-animation: exploding-stroke 2.6s ease-out infinite; }

@-webkit-keyframes exploding-stroke {
  0% {
    stroke-width: 3px;
    opacity: 1; }

  30% {
    opacity: 1; }

  60% {
    stroke-width: 6px;
    opacity: 1; }

  100% {
    stroke-width: 3px;
    opacity: 1; } }
.ct-area {
  fill: #05CC47 !important; }

.ct-grid {
  stroke: transparent; }

.ct-label {
  color: #666;
  color: white;
  color: rgba(255, 255, 255, 0.25);
  font-family: "Calibre-Light";
  xxcolor: transparent;
  white-space: nowrap; }

#chart1::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 12px;
  bottom: 16px;
  right: 0;
  xxborder-bottom: 1px solid rgba(255, 255, 255, 0.25);
  xxborder-left: 1px solid rgba(255, 255, 255, 0.25); }

#chart1 svg {
  margin-left: -40px;
  margin-bottom: -20px; }
