/*
Theme Name: _rsplay
Theme URI: http://underscores.me/
Author: Robin Ramsell
Author URI: http://robinramsell.com/
Description: First version of Royal Streaming Player
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: _rsplay
Tags:

Resetting and rebuilding styles have been helped along thanks to the fine work of
Eric Meyer http://meyerweb.com/eric/tools/css/reset/index.html
along with Nicolas Gallagher and Jonathan Neal http://necolas.github.com/normalize.css/
and Blueprint http://www.blueprintcss.org/
*/
/*--------------------------------------------------------------
1.0 Mandatory for mixin and varables to work
--------------------------------------------------------------*/
@-webkit-keyframes dotsOne {
  0% {
    -webkit-transform: scale(1);
    opacity: 1; }
  50% {
    -webkit-transform: scale(0.98);
    opacity: 0.5; }
  100% {
    -webkit-transform: scale(1);
    opacity: 1; } }

@keyframes dotsOne {
  0% {
    transform: scale(1);
    opacity: 1; }
  50% {
    transform: scale(0.98);
    opacity: 0.5; }
  100% {
    transform: scale(1);
    opacity: 1; } }

@-webkit-keyframes dotsTwo {
  0% {
    -webkit-transform: scale(0.98);
    opacity: 0.5; }
  50% {
    -webkit-transform: scale(1);
    opacity: 1; }
  100% {
    -webkit-transform: scale(0.98);
    opacity: 0.5; } }

@keyframes dotsTwo {
  0% {
    transform: scale(0.98);
    opacity: 0.5; }
  50% {
    transform: scale(1);
    opacity: 1; }
  100% {
    transform: scale(0.98);
    opacity: 0.5; } }

@-webkit-keyframes equalizeOne {
  0% {
    -webkit-transform: scaleY(0.6); }
  9% {
    -webkit-transform: scaleY(0.4); }
  18% {
    -webkit-transform: scaleY(0.9); }
  27% {
    -webkit-transform: scaleY(0.5); }
  36% {
    -webkit-transform: scaleY(0.7); }
  45% {
    -webkit-transform: scaleY(0.3); }
  54% {
    -webkit-transform: scaleY(0.4); }
  63% {
    -webkit-transform: scaleY(0.9); }
  72% {
    -webkit-transform: scaleY(1); }
  81% {
    -webkit-transform: scaleY(0.6); }
  90% {
    -webkit-transform: scaleY(0.4); }
  100% {
    -webkit-transform: scaleY(0.6); } }

@keyframes equalizeOne {
  0% {
    transform: scaleY(0.6); }
  9% {
    transform: scaleY(0.4); }
  18% {
    transform: scaleY(0.9); }
  27% {
    transform: scaleY(0.5); }
  36% {
    transform: scaleY(0.7); }
  45% {
    transform: scaleY(0.3); }
  54% {
    transform: scaleY(0.4); }
  63% {
    transform: scaleY(0.9); }
  72% {
    transform: scaleY(1); }
  81% {
    transform: scaleY(0.6); }
  90% {
    transform: scaleY(0.4); }
  100% {
    transform: scaleY(0.6); } }

@-webkit-keyframes equalizeTwo {
  0% {
    -webkit-transform: scaleY(1); }
  9% {
    -webkit-transform: scaleY(0.6); }
  18% {
    -webkit-transform: scaleY(0.4); }
  27% {
    -webkit-transform: scaleY(0.1); }
  36% {
    -webkit-transform: scaleY(1); }
  45% {
    -webkit-transform: scaleY(0.5); }
  54% {
    -webkit-transform: scaleY(0.9); }
  63% {
    -webkit-transform: scaleY(0.4); }
  72% {
    -webkit-transform: scaleY(0.2); }
  81% {
    -webkit-transform: scaleY(0.3); }
  90% {
    -webkit-transform: scaleY(0.9); }
  100% {
    -webkit-transform: scaleY(1); } }

@keyframes equalizeTwo {
  0% {
    transform: scaleY(1); }
  9% {
    transform: scaleY(0.6); }
  18% {
    transform: scaleY(0.4); }
  27% {
    transform: scaleY(0.1); }
  36% {
    transform: scaleY(1); }
  45% {
    transform: scaleY(0.5); }
  54% {
    transform: scaleY(0.9); }
  63% {
    transform: scaleY(0.4); }
  72% {
    transform: scaleY(0.2); }
  81% {
    transform: scaleY(0.3); }
  90% {
    transform: scaleY(0.9); }
  100% {
    transform: scaleY(1); } }

/*--------------------------------------------------------------
1.0 Modules
--------------------------------------------------------------*/
html, body, div, span, applet, object, iframe, figure,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
  border: 0;
  font-family: inherit;
  font-size: 100%;
  font-style: inherit;
  font-weight: inherit;
  margin: 0;
  outline: 0;
  padding: 0;
  vertical-align: baseline; }

html {
  font-size: 62.5%;
  /* Corrects text resizing oddly in IE6/7 when body font-size is set using em units http://clagnut.com/blog/348/#c790 */
  overflow-y: scroll;
  /* Keeps page centered in all browsers regardless of content height */
  -webkit-text-size-adjust: 100%;
  /* Prevents iOS text size adjust after orientation change, without disabling user zoom */
  -ms-text-size-adjust: 100%;
  /* www.456bereastreet.com/archive/201012/controlling_text_size_in_safari_for_ios_without_disabling_user_zoom/ */
  box-sizing: border-box;
  /* Apply a natural box layout model to the document; see http://www.paulirish.com/2012/box-sizing-border-box-ftw/ */ }

*,
*:before,
*:after {
  /* Inherit box-sizing to make it easier to change the property for components that leverage other behavior; see http://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
  box-sizing: inherit; }

article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
nav,
section {
  display: block; }

button {
  background: none;
  border: none;
  margin: 0;
  padding: 0;
  font-size: 0;
  line-height: 0;
  width: auto;
  overflow: visible;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  box-shadow: none;
  outline: 0; }
  button:hover {
    cursor: pointer; }

:focus {
  outline: 0; }

ol, ul {
  list-style: none; }

table {
  /* tables still need 'cellspacing="0"' in the markup */
  border-collapse: separate;
  border-spacing: 0; }

caption, th, td {
  font-weight: normal;
  text-align: left; }

blockquote:before, blockquote:after,
q:before, q:after {
  content: ""; }

blockquote, q {
  quotes: "" ""; }

a:focus {
  outline: 0; }

a:hover,
a:active {
  outline: 0; }

a img {
  border: 0; }

/* Text meant only for screen readers */
.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden; }
  .screen-reader-text:hover, .screen-reader-text:active, .screen-reader-text:focus {
    background-color: #646464;
    border-radius: 3px;
    box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
    clip: auto !important;
    color: #646464;
    display: block;
    font-size: 14px;
    font-size: 1.4rem;
    font-weight: bold;
    height: auto;
    left: 5px;
    line-height: normal;
    padding: 15px 23px 14px;
    text-decoration: none;
    top: 5px;
    width: auto;
    z-index: 100000;
    /* Above WP toolbar */ }

.alignleft {
  display: inline;
  float: left;
  margin-right: 1.5em; }

.alignright {
  display: inline;
  float: right;
  margin-left: 1.5em; }

.aligncenter {
  display: block;
  margin: 0 auto; }

.clear:before,
.clear:after,
.entry-content:before,
.entry-content:after,
.comment-content:before,
.comment-content:after,
.site-header:before,
.site-header:after,
.site-content:before,
.site-content:after,
.site-footer:before,
.site-footer:after {
  content: "";
  display: table; }

.clear:after,
.entry-content:after,
.comment-content:after,
.site-header:after,
.site-content:after,
.site-footer:after {
  clear: both; }

.rp-share .rp-share-icons:before, .rp-share .rp-share-icons:after {
  content: "";
  display: table; }

.rp-share .rp-share-icons:after {
  clear: both; }

/*--------------------------------------------------------------
1.0 Layout
--------------------------------------------------------------*/
.row {
  width: 100%;
  height: auto; }

.row-center-content {
  text-align: center;
  margin: 0 auto; }

.small-1,
.small-2,
.small-3,
.small-4,
.small-5,
.small-6,
.small-7,
.small-8,
.small-9,
.small-10,
.small-11,
.small-12,
.medium-1,
.medium-2,
.medium-3,
.medium-4,
.medium-5,
.medium-6,
.medium-7,
.medium-8,
.medium-9,
.medium-10,
.medium-11,
.medium-12,
.large-1,
.large-2,
.large-3,
.large-4,
.large-5,
.large-6,
.large-7,
.large-8,
.large-9,
.large-10,
.large-11,
.large-12 {
  position: relative;
  display: inline-block;
  letter-spacing: normal;
  word-spacing: normal;
  vertical-align: top;
  text-rendering: auto;
  text-align: left; }

.small-1 {
  width: 8.33333%; }

.small-2 {
  width: 16.66667%; }

.small-3 {
  width: 25%; }

.small-4 {
  width: 33.33333%; }

.small-5 {
  width: 41.66667%; }

.small-6 {
  width: 50%; }

.small-7 {
  width: 58.33333%; }

.small-8 {
  width: 66.66667%; }

.small-9 {
  width: 75%; }

.small-10 {
  width: 83.33333%; }

.small-11 {
  width: 91.66667%; }

.small-12 {
  width: 100%; }

.small-offset-0 {
  margin-left: 0% !important; }

.small-offset-1 {
  margin-left: 8.33333% !important; }

.small-offset-2 {
  margin-left: 16.66667% !important; }

.small-offset-3 {
  margin-left: 25% !important; }

.small-offset-4 {
  margin-left: 33.33333% !important; }

.small-offset-5 {
  margin-left: 41.66667% !important; }

.small-offset-6 {
  margin-left: 50% !important; }

.small-offset-7 {
  margin-left: 58.33333% !important; }

.small-offset-8 {
  margin-left: 66.66667% !important; }

.small-offset-9 {
  margin-left: 75% !important; }

.small-offset-10 {
  margin-left: 83.33333% !important; }

.small-offset-11 {
  margin-left: 91.66667% !important; }

.column,
.columns {
  position: relative;
  padding-left: 0.9375rem;
  padding-right: 0.9375rem; }

@media only screen and (min-width: 678px) {
  .medium-1 {
    width: 8.33333%; }
  .medium-2 {
    width: 16.66667%; }
  .medium-3 {
    width: 25%; }
  .medium-4 {
    width: 33.33333%; }
  .medium-5 {
    width: 41.66667%; }
  .medium-6 {
    width: 50%; }
  .medium-7 {
    width: 58.33333%; }
  .medium-8 {
    width: 66.66667%; }
  .medium-9 {
    width: 75%; }
  .medium-10 {
    width: 83.33333%; }
  .medium-11 {
    width: 91.66667%; }
  .medium-12 {
    width: 100%; }
  .medium-offset-0 {
    margin-left: 0% !important; }
  .medium-offset-1 {
    margin-left: 8.33333% !important; }
  .medium-offset-2 {
    margin-left: 16.66667% !important; }
  .medium-offset-3 {
    margin-left: 25% !important; }
  .medium-offset-4 {
    margin-left: 33.33333% !important; }
  .medium-offset-5 {
    margin-left: 41.66667% !important; }
  .medium-offset-6 {
    margin-left: 50% !important; }
  .medium-offset-7 {
    margin-left: 58.33333% !important; }
  .medium-offset-8 {
    margin-left: 66.66667% !important; }
  .medium-offset-9 {
    margin-left: 75% !important; }
  .medium-offset-10 {
    margin-left: 83.33333% !important; }
  .medium-offset-11 {
    margin-left: 91.66667% !important; } }

@media only screen and (min-width: 940px) {
  .large-1 {
    width: 8.33333%; }
  .large-2 {
    width: 16.66667%; }
  .large-3 {
    width: 25%; }
  .large-4 {
    width: 33.33333%; }
  .large-5 {
    width: 41.66667%; }
  .large-6 {
    width: 50%; }
  .large-7 {
    width: 58.33333%; }
  .large-8 {
    width: 66.66667%; }
  .large-9 {
    width: 75%; }
  .large-10 {
    width: 83.33333%; }
  .large-11 {
    width: 91.66667%; }
  .large-12 {
    width: 100%; }
  .large-offset-0 {
    margin-left: 0% !important; }
  .large-offset-1 {
    margin-left: 8.33333% !important; }
  .large-offset-2 {
    margin-left: 16.66667% !important; }
  .large-offset-3 {
    margin-left: 25% !important; }
  .large-offset-4 {
    margin-left: 33.33333% !important; }
  .large-offset-5 {
    margin-left: 41.66667% !important; }
  .large-offset-6 {
    margin-left: 50% !important; }
  .large-offset-7 {
    margin-left: 58.33333% !important; }
  .large-offset-8 {
    margin-left: 66.66667% !important; }
  .large-offset-9 {
    margin-left: 75% !important; }
  .large-offset-10 {
    margin-left: 83.33333% !important; }
  .large-offset-11 {
    margin-left: 91.66667% !important; } }

html,
body,
.site {
  height: 100%; }

body {
  background-color: black; }

.site {
  position: relative;
  background-color: black; }

.site-content {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  z-index: 1; }

.container {
  display: block;
  position: relative; }
  @media only screen and (min-width: 678px) {
    .container {
      margin: 0 auto; } }
  .container .container {
    margin: auto;
    max-width: none; }

/*--------------------------------------------------------------
2.0 Typography
--------------------------------------------------------------*/
body,
button,
input,
select,
textarea {
  color: black;
  font-family: "Trebuchet MS", Arial, sans-serif;
  font-size: 13px;
  font-size: 1.3rem;
  line-height: 1.4;
  font-weight: normal; }

h1.hanging-quotes, h2.hanging-quotes, h3.hanging-quotes, h4.hanging-quotes, h5.hanging-quotes, h6.hanging-quotes,
.h1.hanging-quotes, .h2.hanging-quotes, .h3.hanging-quotes, .h4.hanging-quotes, .h5.hanging-quotes, .h6.hanging-quotes {
  text-indent: -.5em; }

p {
  margin-bottom: 1em; }
  p.hanging-quotes {
    text-indent: -.65em; }

strong, b {
  font-weight: bold; }

h1, .h1, h2, .h2 {
  font-family: "Trebuchet MS", Arial, sans-serif;
  color: white;
  font-weight: bold;
  line-height: 1.1; }

h1 {
  font-size: 21px;
  font-size: 2.1rem;
  margin-top: 1.0em; }
  @media only screen and (min-width: 940px) {
    h1 {
      font-size: 31px;
      font-size: 3.1rem; } }

h2 {
  font-size: 18px;
  font-size: 1.8rem;
  letter-spacing: 0.02em; }
  @media only screen and (min-width: 1194px) {
    h2 {
      font-size: 24px;
      font-size: 2.4rem; } }

h3 {
  font-family: "Trebuchet MS", Arial, sans-serif;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.1;
  letter-spacing: 0.02em;
  font-weight: bold;
  margin-bottom: 2px; }
  @media only screen and (min-width: 940px) {
    h3 {
      font-size: 18px;
      font-size: 1.8rem; } }

.expandable-list {
  margin-top: 1em;
  border-left: none;
  border-right: none; }
  .expandable-list > li {
    position: relative;
    padding: 1em 45px 1em 20px;
    border-color: #383838;
    border-style: solid;
    border-bottom-width: 1px; }
    .expandable-list > li:first-child {
      border-top-width: 1px; }
    .expandable-list > li:last-child {
      border-bottom: none; }
    .expandable-list > li.active {
      background-color: whitesmoke;
      cursor: pointer; }
    @media only screen and (min-width: 940px) {
      .expandable-list > li:hover {
        background-color: whitesmoke;
        cursor: pointer; } }
    .expandable-list > li.active ol.list-child {
      display: block; }
  .expandable-list ol.list-child {
    display: none; }
    @media only screen and (min-width: 678px) {
      .expandable-list ol.list-child {
        font-size: 14px;
        font-size: 1.4rem;
        line-height: 1.65;
        font-weight: 300; } }
    .expandable-list ol.list-child > li {
      margin-top: 1em;
      padding: 0 0.5em; }
      @media only screen and (min-width: 678px) {
        .expandable-list ol.list-child > li {
          padding: 0 1em; } }
  .expandable-list .list-expand {
    position: absolute;
    top: 0;
    right: 0;
    width: 40px;
    height: 40px; }
    @media only screen and (min-width: 678px) {
      .expandable-list .list-expand {
        top: 7px; } }
    .expandable-list .list-expand .symbol-expand:before, .expandable-list .list-expand .symbol-expand:after {
      content: '';
      position: absolute;
      display: block;
      background-color: black; }
    .expandable-list .list-expand .symbol-expand:before {
      top: 20px;
      left: 50%;
      margin-left: -7px;
      width: 15px;
      height: 1px; }
    .expandable-list .list-expand .symbol-expand:after {
      top: 13px;
      left: 50%;
      width: 1px;
      height: 15px; }
    .expandable-list .list-expand .symbol-expand.symbol-colapse:after {
      display: none; }
  .expandable-list .list-text-grey {
    color: #646464; }

form {
  margin-top: 0.5em; }

button,
input,
select,
textarea {
  font-size: 100%;
  /* Corrects font size not being inherited in all browsers */
  margin: 0;
  /* Addresses margins set differently in IE6/7, F3/4, S5, Chrome */
  vertical-align: baseline;
  /* Improves appearance and consistency in all browsers */ }

button::-moz-focus-inner,
input::-moz-focus-inner {
  /* Corrects inner padding and border displayed oddly in FF3/4 www.sitepen.com/blog/2008/05/14/the-devils-in-the-details-fixing-dojos-toolbar-buttons/ */
  border: 0;
  padding: 0; }

input,
textarea {
  padding: 10px 12px;
  background-color: white;
  letter-spacing: 0.05em;
  font-weight: 500;
  text-transform: none;
  color: #646464;
  border: 1px solid #c2c2c2;
  outline: none;
  -webkit-appearance: none;
  letter-spacing: normal;
  -webkit-border-radius: 3px;
  border-radius: 3px; }
  input:focus, input:active,
  textarea:focus,
  textarea:active {
    color: black;
    border-color: black; }

.input-wrap {
  position: relative;
  display: block;
  margin-bottom: 1em;
  padding: 0 12px 0 12px;
  background-color: white; }
  .input-wrap span {
    display: block;
    position: absolute;
    top: 7px;
    left: 12px;
    font-size: 8px;
    text-transform: uppercase;
    letter-spacing: 0.15em; }
  .input-wrap.error {
    background-color: #fae4eb; }
    .input-wrap.error span {
      color: #ff0033; }

.input-group {
  margin-bottom: 1em; }
  .input-group .input-wrap {
    margin-bottom: 0; }
    .input-group .input-wrap input,
    .input-group .input-wrap textarea {
      border-bottom: 1px solid whitesmoke; }
    .input-group .input-wrap:last-child input,
    .input-group .input-wrap:last-child textarea {
      border-bottom: 0; }

input {
  width: 100%; }

textarea {
  overflow: auto;
  /* Removes default vertical scrollbar in IE6/7/8/9 */
  vertical-align: top;
  /* Improves readability and alignment in all browsers */
  width: 100%;
  height: 100%;
  resize: none; }

/*--------------------------------------------------------------
5.0 Navigation
--------------------------------------------------------------*/
.rp-logo {
  position: fixed;
  top: 0.75em;
  left: 1.5em;
  height: auto;
  width: 99px;
  z-index: 1000; }
  .rp-logo img {
    width: 100%;
    height: 100%;
    opacity: 0.72; }
  .rp-logo:hover img {
    opacity: 1; }
  @media only screen and (min-width: 678px) {
    .rp-logo {
      top: 1em;
      left: 2em;
      width: 121px; } }
  @media only screen and (min-width: 940px) {
    .rp-logo {
      top: 1.5em;
      left: 3em; } }

.rp-time {
  position: fixed;
  top: 0.75em;
  right: 1.5em;
  color: #FFCC01;
  letter-spacing: 0.05rem;
  text-align: right;
  z-index: 1000;
  opacity: 0;
  -webkit-transition: opacity 0.2s 0s;
  -moz-transition: opacity 0.2s 0s;
  -ms-transition: opacity 0.2s 0s;
  -o-transition: opacity 0.2s 0s;
  transition: opacity 0.2s 0s; }
  @media only screen and (min-width: 678px) {
    .rp-time {
      top: 1em;
      right: 2em; } }
  @media only screen and (min-width: 940px) {
    .rp-time {
      top: 1.5em;
      right: 3em; } }
  .rp-time.loaded {
    opacity: 1; }

.royal-player {
  /* 	@include bp-large {
		margin-top: 2.0em;
	} */ }
  .royal-player .rp-container {
    width: auto;
    -webkit-transition: all 0.7s ease;
    -moz-transition: all 0.7s ease;
    -ms-transition: all 0.7s ease;
    -o-transition: all 0.7s ease;
    transition: all 0.7s ease; }
  .royal-player img {
    display: block; }

.rp-playlist-cover {
  width: 100%;
  height: 100%;
  background-color: black;
  overflow: hidden;
  z-index: 100; }
  .rp-playlist-cover .rp-cover {
    position: relative;
    height: 100%;
    background-size: 170% auto;
    background-repeat: no-repeat;
    background-position: center; }

@media only screen and (min-width: 678px) {
  .rp-playlist-cover .rp-cover {
    background-size: auto 100%;
    background-position: center top; } }

.rp-video-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.3s 0.3s, visibility 0s 0.3s;
  -moz-transition: opacity 0.3s 0.3s, visibility 0s 0.3s;
  -ms-transition: opacity 0.3s 0.3s, visibility 0s 0.3s;
  -o-transition: opacity 0.3s 0.3s, visibility 0s 0.3s;
  transition: opacity 0.3s 0.3s, visibility 0s 0.3s;
  z-index: 200; }
  .rp-video-wrap::before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: transparent;
    z-index: 10; }
  .rp-video-wrap .rp-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1; }
  .rp-video-wrap.active {
    opacity: 1;
    visibility: visible;
    -webkit-transition: opacity 0.3s 0s, visibility 0s 0s;
    -moz-transition: opacity 0.3s 0s, visibility 0s 0s;
    -ms-transition: opacity 0.3s 0s, visibility 0s 0s;
    -o-transition: opacity 0.3s 0s, visibility 0s 0s;
    transition: opacity 0.3s 0s, visibility 0s 0s; }

.rp-info {
  position: fixed;
  bottom: 4.35em;
  left: 1.5em;
  right: 1.5em;
  text-align: center;
  z-index: 1000;
  pointer-events: none; }
  .rp-info .rp-info-channel,
  .rp-info .rp-info-title {
    position: relative;
    color: whitesmoke; }
  .rp-info .rp-info-channel {
    position: fixed;
    bottom: 1.5em;
    left: 0;
    right: 0;
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    max-width: 200px;
    z-index: 1000; }
    .rp-info .rp-info-channel img {
      width: 100%;
      height: auto; }
  .rp-info .scroll-text {
    position: relative;
    display: inline-block;
    max-width: 600px;
    padding: 0.6em 1em 0.4em 1em;
    background-color: #202020;
    -webkit-border-radius: 4px;
    border-radius: 4px; }
    .rp-info .scroll-text::before, .rp-info .scroll-text::after {
      content: '';
      display: block;
      position: absolute;
      top: 50%;
      width: 999em;
      height: 1px;
      margin-top: -1px;
      background-color: #F0F0F0;
      opacity: 0.58; }
    .rp-info .scroll-text::before {
      left: 100%;
      margin-left: 1.5em; }
    .rp-info .scroll-text::after {
      right: 100%;
      margin-right: 1.5em; }
  .rp-info .rp-info-now-playing {
    position: absolute;
    top: -19px;
    left: 0;
    right: 0;
    display: block;
    width: 96px;
    margin-top: 0.33em;
    margin-left: auto;
    margin-right: auto;
    font-size: 10px;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #F0F0F0;
    opacity: 0.58; }
  .rp-info .rp-info-current-song {
    position: relative;
    color: #FFCC01;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    overflow: hidden; }
    .rp-info .rp-info-current-song::before, .rp-info .rp-info-current-song::after {
      content: '';
      position: absolute;
      display: block;
      left: 0;
      right: 0;
      height: 1px;
      background-color: #202020;
      opacity: 0.8;
      z-index: 10; }
    .rp-info .rp-info-current-song::before {
      top: 7px; }
    .rp-info .rp-info-current-song::after {
      top: 21px; }
  @media only screen and (min-width: 678px) {
    .rp-info {
      bottom: 2.85em;
      left: 2em;
      right: 2em;
      overflow: hidden; }
      .rp-info .rp-info-now-playing {
        position: relative;
        top: auto;
        left: auto;
        right: auto; }
      .rp-info .rp-info-channel {
        position: relative;
        bottom: auto;
        left: auto;
        right: auto;
        max-width: 280px;
        margin-bottom: 0.66em;
        margin-left: auto;
        margin-right: auto; }
      .rp-info .scroll-text::before {
        margin-left: 2em; }
      .rp-info .scroll-text::after {
        margin-right: 2em; } }
  @media only screen and (min-width: 940px) {
    .rp-info {
      bottom: 2.85em;
      left: 3em;
      right: 3em; }
      .rp-info .scroll-text::before {
        margin-left: 3em; }
      .rp-info .scroll-text::after {
        margin-right: 3em; }
      .rp-info .rp-info-current-song::before {
        top: 9px; }
      .rp-info .rp-info-current-song::after {
        top: 28px; } }

.rp-history-toggle {
  display: block;
  position: absolute;
  top: 27px;
  left: 0;
  right: 0;
  margin: 0;
  padding: 0;
  width: 100%;
  height: 41px;
  font-size: 0;
  text-indent: -9999px;
  -webkit-transition: background 0.2s;
  transition: background 0.2s;
  z-index: 100; }
  .rp-history-toggle:focus {
    outline: none; }
  .rp-history-toggle span {
    display: block;
    position: absolute;
    top: 20px;
    right: 15px;
    width: 17px;
    height: 1px;
    background-color: white; }
    .rp-history-toggle span:after, .rp-history-toggle span:before {
      position: absolute;
      display: block;
      left: 0;
      width: 100%;
      background-color: white;
      content: ""; }
    .rp-history-toggle span:before {
      top: -6px;
      height: 3px; }
    .rp-history-toggle span:after {
      bottom: -4px;
      height: 1px; }
  .rp-history-toggle.active {
    display: block; }
    .rp-history-toggle.active span {
      background: none !important; }
      .rp-history-toggle.active span:before {
        top: 0;
        height: 1px;
        -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        transform: rotate(45deg); }
      .rp-history-toggle.active span:after {
        bottom: 0;
        -webkit-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
        transform: rotate(-45deg); }
  .rp-history-toggle.place-in-bottom {
    display: none;
    top: auto;
    bottom: 0; }
    .rp-history-toggle.place-in-bottom.active {
      display: block; }

.rp-playlist-history {
  position: absolute;
  bottom: 1.5em;
  left: 1.5em;
  right: 4.5em;
  color: #c2c2c2;
  text-align: left;
  z-index: 100; }
  .rp-playlist-history.hidden {
    display: none; }
  .rp-playlist-history .rp-playlist-history-controls {
    float: left;
    margin-right: 1px;
    background-color: rgba(0, 0, 0, 0.73); }
    .rp-playlist-history .rp-playlist-history-controls .rp-controls {
      position: relative;
      width: auto;
      top: auto;
      left: auto;
      margin-top: 0;
      margin-left: 0; }
      .rp-playlist-history .rp-playlist-history-controls .rp-controls .button {
        width: 58px;
        height: 58px; }
  .rp-playlist-history .rp-history-list {
    display: block;
    padding-left: 20px;
    padding-right: 70px;
    min-height: 56px;
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
    margin-right: -20px; }
    .rp-playlist-history .rp-history-list .rp-history-list-item:first-child {
      display: list-item; }
    .rp-playlist-history .rp-history-list.active {
      max-height: 148px;
      overflow-y: scroll;
      -webkit-overflow-scrolling: touch; }
      .rp-playlist-history .rp-history-list.active .rp-history-list-item {
        display: list-item; }
  .rp-playlist-history .rp-history-list-item {
    display: none;
    position: relative;
    padding-top: 13px;
    padding-bottom: 13px;
    border-top: 1px solid rgba(255, 255, 255, 0.08); }
    .rp-playlist-history .rp-history-list-item:first-child {
      border-top: 0; }
    .rp-playlist-history .rp-history-list-item .rp-history-time,
    .rp-playlist-history .rp-history-list-item .rp-history-now {
      position: absolute;
      left: -37px;
      color: #646464; }
    .rp-playlist-history .rp-history-list-item .rp-history-now {
      letter-spacing: 0.02em; }

.rp-controls {
  position: fixed;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  bottom: 1.5em;
  left: 1.5em;
  z-index: 1000; }
  .rp-controls .button {
    position: relative;
    display: inline-block;
    width: 100px;
    height: 100px;
    border: 0;
    border: 2px solid;
    border-color: white;
    color: white;
    text-decoration: none;
    vertical-align: middle;
    z-index: 10;
    -webkit-border-radius: 100%;
    border-radius: 100%;
    text-align: center; }
  .rp-controls .rp-controls-play,
  .rp-controls .rp-controls-loader,
  .rp-controls .rp-controls-pause {
    display: block; }
  .rp-controls .rp-controls-loader {
    position: absolute;
    top: 12px;
    right: 5px;
    background-color: black; }
  .rp-controls .hidden {
    display: none; }
  @media only screen and (min-width: 678px) {
    .rp-controls {
      bottom: 1.5em;
      left: 2em; } }
  @media only screen and (min-width: 940px) {
    .rp-controls {
      bottom: 1.5em;
      left: 3em; } }

.icon-play,
.icon-paus {
  display: block;
  width: 83px;
  height: 32px;
  background-size: 83px 32px; }
  .icon-play::before,
  .icon-paus::before {
    content: '';
    display: block;
    position: absolute;
    top: 12px;
    right: 5px;
    width: 6px;
    height: 6px;
    -webkit-border-radius: 50%;
    border-radius: 50%; }

.icon-play {
  background-image: url("../images/retro-button-off.png"); }
  .icon-play::before {
    background-color: #ff0033; }

.icon-paus {
  background-image: url("../images/retro-button-on.png"); }
  .icon-paus::before {
    background-color: lime; }

.icon-eq {
  position: relative;
  display: block;
  width: 30px;
  height: 30px; }
  .icon-eq::before, .icon-eq::after {
    content: '';
    position: absolute;
    bottom: 0;
    height: 100%;
    width: 40%;
    background-color: white; }
  .icon-eq::before {
    left: 0;
    -webkit-transform-origin: 100% 100%;
    transform-origin: 100% 100%;
    -webkit-animation: equalizeOne 2s steps(25, end) 0s infinite;
    animation: equalizeOne 2s steps(25, end) 0s infinite; }
  .icon-eq::after {
    left: 60%;
    -webkit-transform-origin: 100% 100%;
    transform-origin: 100% 100%;
    -webkit-animation: equalizeTwo 1.2s linear 0s infinite;
    animation: equalizeTwo 1.2s linear 0s infinite; }

.icon-blink {
  position: relative;
  display: block;
  width: 6px;
  height: 6px; }
  .icon-blink .dot-one {
    content: '';
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    background-color: #FFCC01;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    -webkit-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    -webkit-animation: dotsOne 0.8s linear 0s infinite;
    animation: dotsOne 0.8s linear 0s infinite; }

.rp-controls-standard {
  position: absolute;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  top: 50%;
  left: 50%;
  margin-top: -40px;
  margin-left: -35px;
  opacity: 1;
  visibility: visible;
  z-index: 1100;
  text-shadow: .05em .05em .2em #000;
  -webkit-transition: opacity 0.4s 0s, visibility 0s 0s;
  -moz-transition: opacity 0.4s 0s, visibility 0s 0s;
  -ms-transition: opacity 0.4s 0s, visibility 0s 0s;
  -o-transition: opacity 0.4s 0s, visibility 0s 0s;
  transition: opacity 0.4s 0s, visibility 0s 0s; }
  .rp-controls-standard .button {
    position: relative;
    display: inline-block;
    width: 70px;
    height: 70px;
    border: 0;
    border: 5px solid;
    border-color: white;
    color: white;
    text-decoration: none;
    vertical-align: middle;
    z-index: 10;
    -webkit-border-radius: 100%;
    border-radius: 100%;
    text-align: center; }
  .rp-controls-standard:hover {
    opacity: 1; }
  .rp-controls-standard.active {
    opacity: 1; }
  .rp-controls-standard.active.invisible {
    visibility: hidden;
    opacity: 0;
    -webkit-transition: opacity 0.4s 0s, visibility 0s 0.4s;
    -moz-transition: opacity 0.4s 0s, visibility 0s 0.4s;
    -ms-transition: opacity 0.4s 0s, visibility 0s 0.4s;
    -o-transition: opacity 0.4s 0s, visibility 0s 0.4s;
    transition: opacity 0.4s 0s, visibility 0s 0.4s; }
  .rp-controls-standard .hidden {
    display: none; }
  @media only screen and (min-width: 678px) {
    .rp-controls-standard {
      margin-top: -60px;
      margin-left: -50px; }
      .rp-controls-standard .button {
        width: 100px;
        height: 100px;
        border: 5px solid; } }

.icon-play-standard {
  position: relative;
  display: inline-block;
  width: 0;
  height: 0;
  top: 2px;
  left: 3px;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
  border-left: 24px solid white; }
  @media only screen and (min-width: 678px) {
    .icon-play-standard {
      border-top-width: 15px;
      border-bottom-width: 15px;
      border-left-width: 28px; } }

.icon-paus-standard {
  position: relative;
  display: inline-block;
  width: 22px;
  height: 22px; }
  .icon-paus-standard::before, .icon-paus-standard::after {
    content: '';
    position: absolute;
    bottom: 0;
    height: 100%;
    width: 40%;
    background-color: white; }
  .icon-paus-standard::before {
    left: 0;
    -webkit-transform-origin: 100% 100%;
    transform-origin: 100% 100%;
    -webkit-animation: equalizeOne 2s steps(25, end) 0s infinite;
    animation: equalizeOne 2s steps(25, end) 0s infinite; }
  .icon-paus-standard::after {
    left: 60%;
    -webkit-transform-origin: 100% 100%;
    transform-origin: 100% 100%;
    -webkit-animation: equalizeTwo 1.2s linear 0s infinite;
    animation: equalizeTwo 1.2s linear 0s infinite; }
  @media only screen and (min-width: 678px) {
    .icon-paus-standard {
      width: 30px;
      height: 30px; } }

.icon-loading-standard {
  position: relative;
  display: inline-block;
  width: 24px;
  top: -2px; }
  .icon-loading-standard .dot-one,
  .icon-loading-standard .dot-two,
  .icon-loading-standard .dot-three {
    content: '';
    position: relative;
    display: inline-block;
    width: 25%;
    padding-top: 25%;
    background-color: white;
    margin-right: 12.5%;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    -webkit-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    -webkit-animation: dotsOne 0.8s linear 0s infinite;
    animation: dotsOne 0.8s linear 0s infinite; }
  .icon-loading-standard .dot-two {
    -webkit-animation-name: dotsTwo;
    animation-name: dotsTwo; }
  .icon-loading-standard .dot-three {
    margin-right: 0;
    -webkit-animation-name: dotsOne;
    animation-name: dotsOne; }
  @media only screen and (min-width: 678px) {
    .icon-loading-standard {
      width: 30px; } }

.rp-playlist {
  position: relative;
  z-index: 1; }
  .rp-playlist > .rp-playlist-list {
    list-style-type: none;
    margin: 0; }
    @media only screen and (min-width: 940px) {
      .rp-playlist > .rp-playlist-list {
        text-align: center;
        margin: 0 auto; } }
    .rp-playlist > .rp-playlist-list > .rp-playlist-list-item .rp-playlist-wrap {
      position: relative;
      width: 100%;
      height: 100vh;
      background-color: lime; }
    .rp-playlist > .rp-playlist-list > .rp-playlist-list-item .rp-playlist-content {
      position: relative;
      z-index: 200; }
    .rp-playlist > .rp-playlist-list > .rp-playlist-list-item.zoom {
      position: fixed;
      top: 0;
      bottom: 0;
      left: 0;
      right: 0;
      padding: 0;
      width: 100%;
      margin: 0;
      z-index: 10005; }
      .rp-playlist > .rp-playlist-list > .rp-playlist-list-item.zoom .rp-playlist-wrap {
        height: 100%; }
      .rp-playlist > .rp-playlist-list > .rp-playlist-list-item.zoom .rp-playlist-content {
        height: 100%;
        padding-bottom: 0; }
      .rp-playlist > .rp-playlist-list > .rp-playlist-list-item.zoom .rp-cover {
        height: 100%; }
        .rp-playlist > .rp-playlist-list > .rp-playlist-list-item.zoom .rp-cover .rp-cover-image {
          height: 100%;
          padding-bottom: 0; }
      @media only screen and (min-width: 678px) {
        .rp-playlist > .rp-playlist-list > .rp-playlist-list-item.zoom .rp-cover-clip-path {
          -webkit-clip-path: circle(130px at 50% 43%);
          clip-path: circle(130px at 50% 43%); }
        .rp-playlist > .rp-playlist-list > .rp-playlist-list-item.zoom .rp-controls {
          top: 43%;
          margin-top: -135px;
          margin-left: -130px; }
          .rp-playlist > .rp-playlist-list > .rp-playlist-list-item.zoom .rp-controls .button {
            width: 260px;
            height: 260px;
            -webkit-border-radius: 130px;
            border-radius: 130px; }
          .rp-playlist > .rp-playlist-list > .rp-playlist-list-item.zoom .rp-controls .icon-play {
            top: 2px;
            left: 3px;
            border-top-width: 29px;
            border-bottom-width: 29px;
            border-left-width: 50px; }
          .rp-playlist > .rp-playlist-list > .rp-playlist-list-item.zoom .rp-controls .icon-loading {
            top: 0;
            width: 56px; }
          .rp-playlist > .rp-playlist-list > .rp-playlist-list-item.zoom .rp-controls .icon-paus {
            width: 50px;
            height: 60px; } }

.rp-zoom {
  position: absolute;
  top: 0.5em;
  right: 0.5em;
  z-index: 1000; }
  .rp-zoom .button {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
    display: block;
    width: 50px;
    height: 50px; }
    .rp-zoom .button:before {
      content: '';
      display: block;
      position: absolute;
      top: 15px;
      right: 15px;
      width: 5px;
      height: 5px;
      border: 2px solid;
      border-color: white; }
  .rp-zoom .rp-zoom-in:before {
    border-bottom-width: 0;
    border-left-width: 0; }
  .rp-zoom .rp-zoom-in.hidden {
    display: none; }
  .rp-zoom .rp-zoom-out:before {
    border-top-width: 0;
    border-right-width: 0; }
  .rp-zoom .rp-zoom-out.hidden {
    display: none; }

.royal-player-offline {
  display: none;
  color: white; }
  .royal-player-offline .rp-offline-info {
    padding: 1em 2em;
    text-align: center; }
  .royal-player-offline .rp-offline-controls {
    position: relative;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
    text-align: center;
    margin-top: 2em; }
    .royal-player-offline .rp-offline-controls .button {
      position: relative;
      display: inline-block;
      width: 130px;
      height: 130px;
      border: 0;
      padding: 0;
      border: 3px solid;
      border-color: white;
      color: white;
      text-decoration: none;
      vertical-align: middle;
      z-index: 10;
      -webkit-border-radius: 65px;
      border-radius: 65px;
      text-align: center; }
    .royal-player-offline .rp-offline-controls .hidden {
      display: none; }
  .royal-player-offline .rp-offline-playlist {
    display: none; }

#rp-modal {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.68);
  z-index: 1010;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.2s 0s, visibility 0s 0.2s;
  -moz-transition: opacity 0.2s 0s, visibility 0s 0.2s;
  -ms-transition: opacity 0.2s 0s, visibility 0s 0.2s;
  -o-transition: opacity 0.2s 0s, visibility 0s 0.2s;
  transition: opacity 0.2s 0s, visibility 0s 0.2s; }
  #rp-modal.active {
    opacity: 1;
    visibility: visible;
    -webkit-transition: opacity 0.2s 0s, visibility 0s 0s;
    -moz-transition: opacity 0.2s 0s, visibility 0s 0s;
    -ms-transition: opacity 0.2s 0s, visibility 0s 0s;
    -o-transition: opacity 0.2s 0s, visibility 0s 0s;
    transition: opacity 0.2s 0s, visibility 0s 0s; }

.rp-share {
  position: fixed;
  bottom: 1.5em;
  right: 1.5em;
  font-family: "Trebuchet MS", Arial, sans-serif;
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.4;
  z-index: 1200; }
  .rp-share .rp-share-mobile-toggle {
    width: 24px;
    height: 24px;
    opacity: 0.58; }
    .rp-share .rp-share-mobile-toggle:hover, .rp-share .rp-share-mobile-toggle.active {
      opacity: 1;
      cursor: pointer; }
  .rp-share .rp-share-icons {
    display: block; }
    .rp-share .rp-share-icons .rp-share-icon {
      display: block;
      float: left;
      margin-right: 1em;
      opacity: 0.58; }
      .rp-share .rp-share-icons .rp-share-icon:last-child {
        margin-right: 0; }
      .rp-share .rp-share-icons .rp-share-icon:hover {
        opacity: 1;
        cursor: pointer; }
  .rp-share .rp-share-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    width: 280px;
    height: 200px;
    margin-top: -100px;
    margin-left: -140px;
    background-color: white;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: opacity 0.2s 0s, visibility 0s 0.2s;
    -moz-transition: opacity 0.2s 0s, visibility 0s 0.2s;
    -ms-transition: opacity 0.2s 0s, visibility 0s 0.2s;
    -o-transition: opacity 0.2s 0s, visibility 0s 0.2s;
    transition: opacity 0.2s 0s, visibility 0s 0.2s;
    z-index: 100; }
    .rp-share .rp-share-popup .rp-share-container {
      position: relative;
      padding: 20px; }
    .rp-share .rp-share-popup .rp-share-header {
      background-color: #f0f0f0; }
    .rp-share .rp-share-popup .rp-share-button-close {
      position: absolute;
      top: 50%;
      right: 10px;
      width: 12px;
      height: 12px;
      margin-top: -17px;
      padding: 16px;
      text-indent: -999em;
      -webkit-transform: rotate(45deg);
      -moz-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
      -o-transform: rotate(45deg);
      transform: rotate(45deg); }
      .rp-share .rp-share-popup .rp-share-button-close::before, .rp-share .rp-share-popup .rp-share-button-close::after {
        content: '';
        position: absolute;
        background-color: black; }
      .rp-share .rp-share-popup .rp-share-button-close::before {
        top: 50%;
        left: 8px;
        right: 8px;
        height: 2px;
        margin-top: -1px; }
      .rp-share .rp-share-popup .rp-share-button-close::after {
        top: 8px;
        bottom: 8px;
        left: 50%;
        width: 2px;
        margin-left: -1px; }
    .rp-share .rp-share-popup.active {
      opacity: 1;
      visibility: visible;
      -webkit-transition: opacity 0.2s 0s, visibility 0s 0s;
      -moz-transition: opacity 0.2s 0s, visibility 0s 0s;
      -ms-transition: opacity 0.2s 0s, visibility 0s 0s;
      -o-transition: opacity 0.2s 0s, visibility 0s 0s;
      transition: opacity 0.2s 0s, visibility 0s 0s; }
  @media only screen and (min-width: 678px) {
    .rp-share {
      bottom: 1.5em;
      right: 2em; } }
  @media only screen and (min-width: 940px) {
    .rp-share {
      bottom: 1.5em;
      right: 3em; } }

.icon-facebook,
.icon-twitter,
.icon-instagram,
.icon-mail,
.icon-code,
.icon-link,
.icon-share {
  display: block;
  width: 24px;
  height: 24px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% auto; }

.icon-facebook {
  background-image: url("../images/icons/icon-facebook-24px.svg"); }
  .icon-facebook.icon-black {
    background-image: url("../images/icons/icon-facebook-24px-black.svg"); }

.icon-twitter {
  background-image: url("../images/icons/icon-twitter-24px.svg"); }
  .icon-twitter.icon-black {
    background-image: url("../images/icons/icon-twitter-24px-black.svg"); }

.icon-instagram {
  background-image: url("../images/icons/icon-instagram-24px.svg"); }
  .icon-instagram.icon-black {
    background-image: url("../images/icons/icon-instagram-24px-black.svg"); }

.icon-mail {
  background-image: url("../images/icons/icon-mail-24px.svg"); }
  .icon-mail.icon-black {
    background-image: url("../images/icons/icon-mail-24px-black.svg"); }

.icon-code {
  background-image: url("../images/icons/icon-code-24px.svg"); }
  .icon-code.icon-black {
    background-image: url("../images/icons/icon-code-24px-black.svg"); }

.icon-link {
  background-image: url("../images/icons/icon-link-24px.svg"); }
  .icon-link.icon-black {
    background-image: url("../images/icons/icon-link-24px-black.svg"); }

.icon-share {
  background-image: url("../images/icons/icon-share-24px.svg"); }
  .icon-share.icon-black {
    background-image: url("../images/icons/icon-share-24px-black.svg"); }

/*--------------------------------------------------------------
5.0 Navigation
--------------------------------------------------------------*/
.play-footer {
  position: relative;
  width: 100%;
  padding: 1.5em;
  background-color: #646464; }
  .play-footer .footer-powered-by {
    color: white;
    font-size: 12px;
    font-size: 1.2rem;
    text-align: center; }
    .play-footer .footer-powered-by a {
      color: white;
      text-decoration: none; }
      .play-footer .footer-powered-by a:hover {
        text-decoration: underline; }

.footer-navigation .second-navigation {
  list-style: none;
  margin: 0;
  padding: 0;
  padding-bottom: 1.5em; }
  .footer-navigation .second-navigation li {
    display: block;
    width: 100%;
    text-align: center;
    margin-top: 3em; }
  .footer-navigation .second-navigation a {
    display: inline-block;
    text-decoration: none;
    letter-spacing: 0.1em; }
  .footer-navigation .second-navigation .nav-logo a {
    width: 86px;
    height: 92px;
    text-indent: -999em;
    background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHg9IjAiIHk9IjAiIHZpZXdCb3g9IjAgMCA0MyA0NiI+PHBhdGggZmlsbD0iI0ZFQzgxRSIgZD0iTTEyLjIgNS4zYzAgMC45LTAuNyAxLjctMS43IDEuNyAtMC45IDAtMS43LTAuNy0xLjctMS43IDAtMC45IDAuNy0xLjcgMS43LTEuN0MxMS41IDMuNiAxMi4yIDQuMyAxMi4yIDUuM00yMS41IDBjLTAuOSAwLTEuNyAwLjctMS43IDEuNyAwIDAuOSAwLjcgMS43IDEuNyAxLjcgMC45IDAgMS43LTAuNyAxLjctMS43QzIzLjEgMC43IDIyLjQgMCAyMS41IDBNMzIuNSAzLjZjLTAuOSAwLTEuNyAwLjctMS43IDEuNyAwIDAuOSAwLjcgMS43IDEuNyAxLjcgMC45IDAgMS43LTAuNyAxLjctMS43QzM0LjIgNC4zIDMzLjQgMy42IDMyLjUgMy42TTIxLjUgOC44Yy0wLjUgMC0xIDAuNC0xIDEgMCAwLjUgMC40IDEgMSAxIDAuNSAwIDEtMC40IDEtMUMyMi41IDkuMiAyMiA4LjggMjEuNSA4LjhNMjEuNSA0LjhjLTAuNSAwLTEgMC40LTEgMSAwIDAuNSAwLjQgMSAxIDEgMC41IDAgMS0wLjQgMS0xQzIyLjUgNS4zIDIyIDQuOCAyMS41IDQuOE0xNy42IDUuNGMtMC41IDAtMSAwLjQtMSAxIDAgMC41IDAuNCAxIDEgMSAwLjUgMCAxLTAuNCAxLTFDMTguNiA1LjggMTguMSA1LjQgMTcuNiA1LjRNMTMuOSA2LjljLTAuNSAwLTEgMC40LTEgMSAwIDAuNSAwLjQgMSAxIDEgMC41IDAgMS0wLjQgMS0xQzE0LjkgNy4zIDE0LjUgNi45IDEzLjkgNi45TTE3LjYgOS41Yy0wLjUgMC0xIDAuNC0xIDEgMCAwLjUgMC40IDEgMSAxIDAuNSAwIDEtMC40IDEtMUMxOC42IDkuOSAxOC4yIDkuNSAxNy42IDkuNU0yNS40IDkuNWMtMC41IDAtMSAwLjQtMSAxIDAgMC41IDAuNCAxIDEgMSAwLjUgMCAxLTAuNCAxLTFDMjYuNCA5LjkgMjUuOSA5LjUgMjUuNCA5LjVNMjUuNCA1LjNjLTAuNSAwLTEgMC40LTEgMSAwIDAuNSAwLjQgMSAxIDEgMC41IDAgMS0wLjQgMS0xQzI2LjQgNS44IDI2IDUuMyAyNS40IDUuM00yOS4xIDYuOGMtMC41IDAtMSAwLjQtMSAxIDAgMC41IDAuNCAxIDEgMSAwLjUgMCAxLTAuNCAxLTFDMzAuMSA3LjMgMjkuNiA2LjggMjkuMSA2LjgiLz48cGF0aCBmaWxsPSIjRkZGIiBkPSJNMjIuNCAyMWMwIDAuNS0wLjQgMC45LTAuOSAwLjkgLTAuNSAwLTAuOS0wLjQtMC45LTAuOSAwLTAuNSAwLjQtMC45IDAuOS0wLjlDMjIgMjAuMSAyMi40IDIwLjUgMjIuNCAyMU0yMS41IDI0Yy0wLjUgMC0wLjkgMC40LTAuOSAwLjkgMCAwLjUgMC40IDAuOSAwLjkgMC45IDAuNSAwIDAuOS0wLjQgMC45LTAuOUMyMi40IDI0LjQgMjIgMjQgMjEuNSAyNE0yNS4zIDI2LjZjLTAuNSAwLTAuOSAwLjQtMC45IDAuOSAwIDAuNSAwLjQgMC45IDAuOSAwLjkgMC41IDAgMC45LTAuNCAwLjktMC45QzI2LjIgMjcgMjUuOCAyNi42IDI1LjMgMjYuNk0yNS40IDMwLjhjLTAuNSAwLTAuOSAwLjQtMC45IDAuOSAwIDAuNSAwLjQgMC45IDAuOSAwLjkgMC41IDAgMC45LTAuNCAwLjktMC45QzI2LjMgMzEuMiAyNS45IDMwLjggMjUuNCAzMC44TTI4LjggMjguOGMtMC41IDAtMC45IDAuNC0wLjkgMC45IDAgMC41IDAuNCAwLjkgMC45IDAuOSAwLjUgMCAwLjktMC40IDAuOS0wLjlDMjkuNyAyOS4yIDI5LjMgMjguOCAyOC44IDI4LjhNMzIuMyAzMC43Yy0wLjUgMC0wLjkgMC40LTAuOSAwLjkgMCAwLjUgMC40IDAuOSAwLjkgMC45IDAuNSAwIDAuOS0wLjQgMC45LTAuOUMzMy4yIDMxLjEgMzIuOCAzMC43IDMyLjMgMzAuN00yOS4xIDMzLjFjLTAuNSAwLTAuOSAwLjQtMC45IDAuOSAwIDAuNSAwLjQgMC45IDAuOSAwLjkgMC41IDAgMC45LTAuNCAwLjktMC45QzMwLjEgMzMuNSAyOS42IDMzLjEgMjkuMSAzMy4xTTI1LjUgMzQuN2MtMC41IDAtMC45IDAuNC0wLjkgMC45IDAgMC41IDAuNCAwLjkgMC45IDAuOSAwLjUgMCAwLjktMC40IDAuOS0wLjlDMjYuNCAzNS4xIDI2IDM0LjcgMjUuNSAzNC43TTI4IDIzLjhjLTAuNSAwLTAuOSAwLjQtMC45IDAuOSAwIDAuNSAwLjQgMC45IDAuOSAwLjkgMC41IDAgMC45LTAuNCAwLjktMC45QzI4LjkgMjQuMiAyOC41IDIzLjggMjggMjMuOE0yNC44IDIxLjljLTAuNSAwLTAuOSAwLjQtMC45IDAuOSAwIDAuNSAwLjQgMC45IDAuOSAwLjkgMC41IDAgMC45LTAuNCAwLjktMC45QzI1LjcgMjIuNCAyNS4zIDIxLjkgMjQuOCAyMS45TTIxLjUgMjcuN2MtMC41IDAtMC45IDAuNC0wLjkgMC45IDAgMC41IDAuNCAwLjkgMC45IDAuOSAwLjUgMCAwLjktMC40IDAuOS0wLjlDMjIuNSAyOC4xIDIyIDI3LjcgMjEuNSAyNy43TTIxLjYgMzEuNWMtMC41IDAtMC45IDAuNC0wLjkgMC45IDAgMC41IDAuNCAwLjkgMC45IDAuOSAwLjUgMCAwLjktMC40IDAuOS0wLjlDMjIuNSAzMS45IDIyLjEgMzEuNSAyMS42IDMxLjVNMjEuNiAzNS4yYy0wLjUgMC0wLjkgMC40LTAuOSAwLjkgMCAwLjUgMC40IDAuOSAwLjkgMC45IDAuNSAwIDAuOS0wLjQgMC45LTAuOUMyMi41IDM1LjYgMjIuMSAzNS4yIDIxLjYgMzUuMk0xNy42IDM0LjdjLTAuNSAwLTAuOSAwLjQtMC45IDAuOSAwIDAuNSAwLjQgMC45IDAuOSAwLjkgMC41IDAgMC45LTAuNCAwLjktMC45QzE4LjUgMzUuMSAxOC4xIDM0LjcgMTcuNiAzNC43TTE3LjcgMzAuOGMtMC41IDAtMC45IDAuNC0wLjkgMC45IDAgMC41IDAuNCAwLjkgMC45IDAuOSAwLjUgMCAwLjktMC40IDAuOS0wLjlDMTguNiAzMS4yIDE4LjIgMzAuOCAxNy43IDMwLjhNMTQuMyAyOC44Yy0wLjUgMC0wLjkgMC40LTAuOSAwLjkgMCAwLjUgMC40IDAuOSAwLjkgMC45IDAuNSAwIDAuOS0wLjQgMC45LTAuOUMxNS4yIDI5LjIgMTQuOCAyOC44IDE0LjMgMjguOE0xNy44IDI2LjdjLTAuNSAwLTAuOSAwLjQtMC45IDAuOSAwIDAuNSAwLjQgMC45IDAuOSAwLjkgMC41IDAgMC45LTAuNCAwLjktMC45QzE4LjcgMjcuMSAxOC4zIDI2LjcgMTcuOCAyNi43TTExLjcgMjUuOGMtMC41IDAtMC45IDAuNC0wLjkgMC45IDAgMC41IDAuNCAwLjkgMC45IDAuOSAwLjUgMCAwLjktMC40IDAuOS0wLjlDMTIuNiAyNi4yIDEyLjIgMjUuOCAxMS43IDI1LjhNMTAuOCAzMC45Yy0wLjUgMC0wLjkgMC40LTAuOSAwLjkgMCAwLjUgMC40IDAuOSAwLjkgMC45IDAuNSAwIDAuOS0wLjQgMC45LTAuOUMxMS43IDMxLjMgMTEuMyAzMC45IDEwLjggMzAuOU04LjQgMjcuOGMtMC41IDAtMC45IDAuNC0wLjkgMC45IDAgMC41IDAuNCAwLjkgMC45IDAuOSAwLjUgMCAwLjktMC40IDAuOS0wLjlDOS4zIDI4LjIgOC45IDI3LjggOC40IDI3LjhNNi45IDI0LjFDNi40IDI0LjEgNiAyNC41IDYgMjVjMCAwLjUgMC40IDAuOSAwLjkgMC45IDAuNSAwIDAuOS0wLjQgMC45LTAuOUM3LjggMjQuNSA3LjQgMjQuMSA2LjkgMjQuMU0xMC40IDIyLjFjLTAuNSAwLTAuOSAwLjQtMC45IDAuOSAwIDAuNSAwLjQgMC45IDAuOSAwLjkgMC41IDAgMC45LTAuNCAwLjktMC45QzExLjMgMjIuNiAxMC45IDIyLjEgMTAuNCAyMi4xTTE1IDIzLjljLTAuNSAwLTAuOSAwLjQtMC45IDAuOSAwIDAuNSAwLjQgMC45IDAuOSAwLjkgMC41IDAgMC45LTAuNCAwLjktMC45QzE2IDI0LjMgMTUuNiAyMy45IDE1IDIzLjlNMTguMiAyMi4xYy0wLjUgMC0wLjkgMC40LTAuOSAwLjkgMCAwLjUgMC40IDAuOSAwLjkgMC45IDAuNSAwIDAuOS0wLjQgMC45LTAuOUMxOS4xIDIyLjUgMTguNyAyMi4xIDE4LjIgMjIuMU0xOC4yIDE4LjJjLTAuNSAwLTAuOSAwLjQtMC45IDAuOSAwIDAuNSAwLjQgMC45IDAuOSAwLjkgMC41IDAgMC45LTAuNCAwLjktMC45QzE5LjEgMTguNiAxOC43IDE4LjIgMTguMiAxOC4yTTE0IDIwLjJjLTAuNSAwLTAuOSAwLjQtMC45IDAuOSAwIDAuNSAwLjQgMC45IDAuOSAwLjkgMC41IDAgMC45LTAuNCAwLjktMC45QzE1IDIwLjYgMTQuNSAyMC4yIDE0IDIwLjJNMTAuNCAxOC4yYy0wLjUgMC0wLjkgMC40LTAuOSAwLjkgMCAwLjUgMC40IDAuOSAwLjkgMC45IDAuNSAwIDAuOS0wLjQgMC45LTAuOUMxMS4zIDE4LjYgMTAuOSAxOC4yIDEwLjQgMTguMk02LjkgMTYuM2MtMC41IDAtMC45IDAuNC0wLjkgMC45IDAgMC41IDAuNCAwLjkgMC45IDAuOSAwLjUgMCAwLjktMC40IDAuOS0wLjlDNy44IDE2LjcgNy40IDE2LjMgNi45IDE2LjNNMTEuNyAxNC40Yy0wLjUgMC0wLjkgMC40LTAuOSAwLjkgMCAwLjUgMC40IDAuOSAwLjkgMC45IDAuNSAwIDAuOS0wLjQgMC45LTAuOUMxMi42IDE0LjggMTIuMiAxNC40IDExLjcgMTQuNE04LjQgMTIuNWMtMC41IDAtMC45IDAuNC0wLjkgMC45IDAgMC41IDAuNCAwLjkgMC45IDAuOSAwLjUgMCAwLjktMC40IDAuOS0wLjlDOS4zIDEyLjkgOC45IDEyLjUgOC40IDEyLjVNMTAuOCA5LjRjLTAuNSAwLTAuOSAwLjQtMC45IDAuOSAwIDAuNSAwLjQgMC45IDAuOSAwLjkgMC41IDAgMC45LTAuNCAwLjktMC45QzExLjcgOS44IDExLjMgOS40IDEwLjggOS40TTE0LjIgMTEuNWMtMC41IDAtMC45IDAuNC0wLjkgMC45IDAgMC41IDAuNCAwLjkgMC45IDAuOSAwLjUgMCAwLjktMC40IDAuOS0wLjlDMTUuMiAxMS45IDE0LjcgMTEuNSAxNC4yIDExLjVNMTcuOCAxMy43Yy0wLjUgMC0wLjkgMC40LTAuOSAwLjkgMCAwLjUgMC40IDAuOSAwLjkgMC45IDAuNSAwIDAuOS0wLjQgMC45LTAuOUMxOC43IDE0LjEgMTguMyAxMy43IDE3LjggMTMuN00xNSAxNi4zYy0wLjUgMC0wLjkgMC40LTAuOSAwLjkgMCAwLjUgMC40IDAuOSAwLjkgMC45IDAuNSAwIDAuOS0wLjQgMC45LTAuOUMxNS45IDE2LjcgMTUuNSAxNi4zIDE1IDE2LjNNNi40IDIwLjJjLTAuNSAwLTAuOSAwLjQtMC45IDAuOSAwIDAuNSAwLjQgMC45IDAuOSAwLjkgMC41IDAgMC45LTAuNCAwLjktMC45QzcuMyAyMC42IDYuOSAyMC4yIDYuNCAyMC4yTTE0IDMzLjJjLTAuNSAwLTAuOSAwLjQtMC45IDAuOSAwIDAuNSAwLjQgMC45IDAuOSAwLjkgMC41IDAgMC45LTAuNCAwLjktMC45QzE0LjkgMzMuNiAxNC41IDMzLjIgMTQgMzMuMk0yMS41IDE2LjRjLTAuNSAwLTAuOSAwLjQtMC45IDAuOXMwLjQgMC45IDAuOSAwLjljMC41IDAgMC45LTAuNCAwLjktMC45UzIyIDE2LjQgMjEuNSAxNi40TTIxLjUgMTIuN2MtMC41IDAtMC45IDAuNC0wLjkgMC45IDAgMC41IDAuNCAwLjkgMC45IDAuOSAwLjUgMCAwLjktMC40IDAuOS0wLjlDMjIuNCAxMy4xIDIyIDEyLjcgMjEuNSAxMi43TTI1LjIgMTMuN2MtMC41IDAtMC45IDAuNC0wLjkgMC45IDAgMC41IDAuNCAwLjkgMC45IDAuOSAwLjUgMCAwLjktMC40IDAuOS0wLjlDMjYuMiAxNC4xIDI1LjcgMTMuNyAyNS4yIDEzLjdNMjguOCAxMS41Yy0wLjUgMC0wLjkgMC40LTAuOSAwLjkgMCAwLjUgMC40IDAuOSAwLjkgMC45IDAuNSAwIDAuOS0wLjQgMC45LTAuOUMyOS43IDExLjkgMjkuMyAxMS41IDI4LjggMTEuNU0zMi4yIDkuM2MtMC41IDAtMC45IDAuNC0wLjkgMC45IDAgMC41IDAuNCAwLjkgMC45IDAuOSAwLjUgMCAwLjktMC40IDAuOS0wLjlDMzMuMSA5LjcgMzIuNyA5LjMgMzIuMiA5LjNNMzQuNiAxMi40Yy0wLjUgMC0wLjkgMC40LTAuOSAwLjkgMCAwLjUgMC40IDAuOSAwLjkgMC45IDAuNSAwIDAuOS0wLjQgMC45LTAuOUMzNS41IDEyLjkgMzUuMSAxMi40IDM0LjYgMTIuNE0zMS4zIDE0LjVjLTAuNSAwLTAuOSAwLjQtMC45IDAuOSAwIDAuNSAwLjQgMC45IDAuOSAwLjkgMC41IDAgMC45LTAuNCAwLjktMC45QzMyLjIgMTQuOSAzMS44IDE0LjUgMzEuMyAxNC41TTI4IDE2LjRjLTAuNSAwLTAuOSAwLjQtMC45IDAuOSAwIDAuNSAwLjQgMC45IDAuOSAwLjkgMC41IDAgMC45LTAuNCAwLjktMC45QzI4LjkgMTYuOCAyOC41IDE2LjQgMjggMTYuNE0yNC44IDE4LjNjLTAuNSAwLTAuOSAwLjQtMC45IDAuOSAwIDAuNSAwLjQgMC45IDAuOSAwLjkgMC41IDAgMC45LTAuNCAwLjktMC45QzI1LjcgMTguNyAyNS4zIDE4LjMgMjQuOCAxOC4zTTI5IDIwLjFjLTAuNSAwLTAuOSAwLjQtMC45IDAuOSAwIDAuNSAwLjQgMC45IDAuOSAwLjkgMC41IDAgMC45LTAuNCAwLjktMC45QzI5LjkgMjAuNiAyOS41IDIwLjEgMjkgMjAuMU0zMi43IDE4LjJjLTAuNSAwLTAuOSAwLjQtMC45IDAuOSAwIDAuNSAwLjQgMC45IDAuOSAwLjkgMC41IDAgMC45LTAuNCAwLjktMC45QzMzLjYgMTguNiAzMy4yIDE4LjIgMzIuNyAxOC4yTTM2LjEgMTYuMmMtMC41IDAtMC45IDAuNC0wLjkgMC45IDAgMC41IDAuNCAwLjkgMC45IDAuOSAwLjUgMCAwLjktMC40IDAuOS0wLjlDMzcgMTYuNiAzNi42IDE2LjIgMzYuMSAxNi4yTTM2LjcgMjAuMWMtMC41IDAtMC45IDAuNC0wLjkgMC45IDAgMC41IDAuNCAwLjkgMC45IDAuOSAwLjUgMCAwLjktMC40IDAuOS0wLjlDMzcuNiAyMC41IDM3LjIgMjAuMSAzNi43IDIwLjFNMzIuNyAyMi4xYy0wLjUgMC0wLjkgMC40LTAuOSAwLjkgMCAwLjUgMC40IDAuOSAwLjkgMC45IDAuNSAwIDAuOS0wLjQgMC45LTAuOUMzMy42IDIyLjUgMzMuMiAyMi4xIDMyLjcgMjIuMU0zNi4yIDI0Yy0wLjUgMC0wLjkgMC40LTAuOSAwLjkgMCAwLjUgMC40IDAuOSAwLjkgMC45IDAuNSAwIDAuOS0wLjQgMC45LTAuOUMzNy4xIDI0LjUgMzYuNyAyNCAzNi4yIDI0TTM0LjcgMjcuNmMtMC41IDAtMC45IDAuNC0wLjkgMC45IDAgMC41IDAuNCAwLjkgMC45IDAuOSAwLjUgMCAwLjktMC40IDAuOS0wLjlDMzUuNiAyOCAzNS4yIDI3LjYgMzQuNyAyNy42TTMxLjMgMjUuN2MtMC41IDAtMC45IDAuNC0wLjkgMC45IDAgMC41IDAuNCAwLjkgMC45IDAuOSAwLjUgMCAwLjktMC40IDAuOS0wLjlDMzIuMiAyNi4xIDMxLjggMjUuNyAzMS4zIDI1LjdNMCA0MS45aDEuOGMwLjUgMCAwLjkgMC4xIDEuMiAwLjQgMC4yIDAuMiAwLjMgMC41IDAuMyAwLjl2MGMwIDAuNi0wLjQgMS4xLTAuOSAxLjJsMSAxLjRoLTFsLTAuOS0xLjNIMC45djEuM0gwVjQxLjl6TTEuOCA0My45YzAuNCAwIDAuNy0wLjIgMC43LTAuNnYwYzAtMC40LTAuMy0wLjYtMC43LTAuNkgwLjl2MS4ySDEuOHpNNC44IDQzLjlMNC44IDQzLjljMC0xLjIgMC45LTIuMSAyLjEtMi4xczIuMSAwLjkgMi4xIDIuMXYwQzkuMSA0NS4xIDguMiA0NiA3IDQ2IDUuNyA0NiA0LjggNDUuMSA0LjggNDMuOXpNOC4yIDQzLjlMOC4yIDQzLjljMC0wLjctMC41LTEuMy0xLjItMS4zcy0xLjIgMC42LTEuMiAxLjN2MGMwIDAuNyAwLjUgMS4zIDEuMiAxLjNTOC4yIDQ0LjYgOC4yIDQzLjl6TTExLjcgNDQuM2wtMS41LTIuNGgxbDEgMS42IDEtMS42aDFsLTEuNSAyLjR2MS42aC0wLjlWNDQuM3pNMTYuNCA0MS45aDAuOGwxLjcgNEgxOEwxNy42IDQ1aC0xLjdsLTAuNCAwLjloLTAuOUwxNi40IDQxLjl6TTE3LjMgNDQuMmwtMC41LTEuMyAtMC41IDEuM0gxNy4zek0yMC42IDQxLjloMC45djMuMmgydjAuOGgtMi45VjQxLjl6TTI1LjUgNDEuOUgyN2MwLjkgMCAxLjUgMC41IDEuNSAxLjJ2MGMwIDAuOC0wLjcgMS4zLTEuNiAxLjNoLTEuMXYxLjVoLTAuM1Y0MS45ek0yNi45IDQ0LjJjMC43IDAgMS4zLTAuNCAxLjMtMXYwYzAtMC42LTAuNS0xLTEuMi0xaC0xLjF2MkgyNi45ek0zMC40IDQxLjloMC4zdjMuN2gyLjR2MC4zaC0yLjdWNDEuOXpNMzYuMyA0MS45aDAuM2wxLjkgNGgtMC4zbC0wLjUtMS4xaC0yLjRsLTAuNSAxLjFoLTAuM0wzNi4zIDQxLjl6TTM3LjUgNDQuNWwtMS4xLTIuMyAtMS4xIDIuM0gzNy41ek00MSA0NC4zbC0xLjctMi40aDAuNGwxLjUgMi4yIDEuNS0yLjJINDNsLTEuNyAyLjR2MS42SDQxVjQ0LjN6Ii8+PC9zdmc+");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 86px 92px; }
  .footer-navigation .second-navigation .nav-support-btn {
    padding: 1em;
    color: white; }

/*--------------------------------------------------------------
5.0 Offline
--------------------------------------------------------------*/
.offline-dev .royal-player-offline {
  display: block; }

.offline-dev .rp-offline-playlist {
  display: none; }

.offline {
  text-align: center; }
  .offline .royal-player,
  .offline .site-bg {
    display: none; }
  .offline .royal-player-offline {
    display: block; }
  .offline .site-content {
    margin-top: 100px; }
  .offline .play-header {
    top: 50px; }

#cache-info {
  position: fixed;
  display: none;
  height: 100%;
  width: 100%;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.98);
  color: white;
  font-size: 12px;
  font-size: 1.2rem;
  text-align: center;
  vertical-align: middle;
  z-index: 10000; }
  #cache-info.update-cache, #cache-info.splash-screen {
    display: table; }
  #cache-info.splash-screen .cache-info-container {
    padding-bottom: 58px; }
  #cache-info.splash-screen .cache-info-loader {
    display: none; }
  #cache-info .cache-info-container {
    position: relative;
    display: table-cell;
    vertical-align: middle;
    padding-bottom: 55px; }
  #cache-info .cache-info-logo {
    display: block;
    vertical-align: middle;
    width: 86px;
    height: 92px;
    margin: 0 auto 3em auto;
    background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHg9IjAiIHk9IjAiIHZpZXdCb3g9IjAgMCA0MyA0NiI+PHBhdGggZmlsbD0iI0ZFQzgxRSIgZD0iTTEyLjIgNS4zYzAgMC45LTAuNyAxLjctMS43IDEuNyAtMC45IDAtMS43LTAuNy0xLjctMS43IDAtMC45IDAuNy0xLjcgMS43LTEuN0MxMS41IDMuNiAxMi4yIDQuMyAxMi4yIDUuM00yMS41IDBjLTAuOSAwLTEuNyAwLjctMS43IDEuNyAwIDAuOSAwLjcgMS43IDEuNyAxLjcgMC45IDAgMS43LTAuNyAxLjctMS43QzIzLjEgMC43IDIyLjQgMCAyMS41IDBNMzIuNSAzLjZjLTAuOSAwLTEuNyAwLjctMS43IDEuNyAwIDAuOSAwLjcgMS43IDEuNyAxLjcgMC45IDAgMS43LTAuNyAxLjctMS43QzM0LjIgNC4zIDMzLjQgMy42IDMyLjUgMy42TTIxLjUgOC44Yy0wLjUgMC0xIDAuNC0xIDEgMCAwLjUgMC40IDEgMSAxIDAuNSAwIDEtMC40IDEtMUMyMi41IDkuMiAyMiA4LjggMjEuNSA4LjhNMjEuNSA0LjhjLTAuNSAwLTEgMC40LTEgMSAwIDAuNSAwLjQgMSAxIDEgMC41IDAgMS0wLjQgMS0xQzIyLjUgNS4zIDIyIDQuOCAyMS41IDQuOE0xNy42IDUuNGMtMC41IDAtMSAwLjQtMSAxIDAgMC41IDAuNCAxIDEgMSAwLjUgMCAxLTAuNCAxLTFDMTguNiA1LjggMTguMSA1LjQgMTcuNiA1LjRNMTMuOSA2LjljLTAuNSAwLTEgMC40LTEgMSAwIDAuNSAwLjQgMSAxIDEgMC41IDAgMS0wLjQgMS0xQzE0LjkgNy4zIDE0LjUgNi45IDEzLjkgNi45TTE3LjYgOS41Yy0wLjUgMC0xIDAuNC0xIDEgMCAwLjUgMC40IDEgMSAxIDAuNSAwIDEtMC40IDEtMUMxOC42IDkuOSAxOC4yIDkuNSAxNy42IDkuNU0yNS40IDkuNWMtMC41IDAtMSAwLjQtMSAxIDAgMC41IDAuNCAxIDEgMSAwLjUgMCAxLTAuNCAxLTFDMjYuNCA5LjkgMjUuOSA5LjUgMjUuNCA5LjVNMjUuNCA1LjNjLTAuNSAwLTEgMC40LTEgMSAwIDAuNSAwLjQgMSAxIDEgMC41IDAgMS0wLjQgMS0xQzI2LjQgNS44IDI2IDUuMyAyNS40IDUuM00yOS4xIDYuOGMtMC41IDAtMSAwLjQtMSAxIDAgMC41IDAuNCAxIDEgMSAwLjUgMCAxLTAuNCAxLTFDMzAuMSA3LjMgMjkuNiA2LjggMjkuMSA2LjgiLz48cGF0aCBmaWxsPSIjRkZGIiBkPSJNMjIuNCAyMWMwIDAuNS0wLjQgMC45LTAuOSAwLjkgLTAuNSAwLTAuOS0wLjQtMC45LTAuOSAwLTAuNSAwLjQtMC45IDAuOS0wLjlDMjIgMjAuMSAyMi40IDIwLjUgMjIuNCAyMU0yMS41IDI0Yy0wLjUgMC0wLjkgMC40LTAuOSAwLjkgMCAwLjUgMC40IDAuOSAwLjkgMC45IDAuNSAwIDAuOS0wLjQgMC45LTAuOUMyMi40IDI0LjQgMjIgMjQgMjEuNSAyNE0yNS4zIDI2LjZjLTAuNSAwLTAuOSAwLjQtMC45IDAuOSAwIDAuNSAwLjQgMC45IDAuOSAwLjkgMC41IDAgMC45LTAuNCAwLjktMC45QzI2LjIgMjcgMjUuOCAyNi42IDI1LjMgMjYuNk0yNS40IDMwLjhjLTAuNSAwLTAuOSAwLjQtMC45IDAuOSAwIDAuNSAwLjQgMC45IDAuOSAwLjkgMC41IDAgMC45LTAuNCAwLjktMC45QzI2LjMgMzEuMiAyNS45IDMwLjggMjUuNCAzMC44TTI4LjggMjguOGMtMC41IDAtMC45IDAuNC0wLjkgMC45IDAgMC41IDAuNCAwLjkgMC45IDAuOSAwLjUgMCAwLjktMC40IDAuOS0wLjlDMjkuNyAyOS4yIDI5LjMgMjguOCAyOC44IDI4LjhNMzIuMyAzMC43Yy0wLjUgMC0wLjkgMC40LTAuOSAwLjkgMCAwLjUgMC40IDAuOSAwLjkgMC45IDAuNSAwIDAuOS0wLjQgMC45LTAuOUMzMy4yIDMxLjEgMzIuOCAzMC43IDMyLjMgMzAuN00yOS4xIDMzLjFjLTAuNSAwLTAuOSAwLjQtMC45IDAuOSAwIDAuNSAwLjQgMC45IDAuOSAwLjkgMC41IDAgMC45LTAuNCAwLjktMC45QzMwLjEgMzMuNSAyOS42IDMzLjEgMjkuMSAzMy4xTTI1LjUgMzQuN2MtMC41IDAtMC45IDAuNC0wLjkgMC45IDAgMC41IDAuNCAwLjkgMC45IDAuOSAwLjUgMCAwLjktMC40IDAuOS0wLjlDMjYuNCAzNS4xIDI2IDM0LjcgMjUuNSAzNC43TTI4IDIzLjhjLTAuNSAwLTAuOSAwLjQtMC45IDAuOSAwIDAuNSAwLjQgMC45IDAuOSAwLjkgMC41IDAgMC45LTAuNCAwLjktMC45QzI4LjkgMjQuMiAyOC41IDIzLjggMjggMjMuOE0yNC44IDIxLjljLTAuNSAwLTAuOSAwLjQtMC45IDAuOSAwIDAuNSAwLjQgMC45IDAuOSAwLjkgMC41IDAgMC45LTAuNCAwLjktMC45QzI1LjcgMjIuNCAyNS4zIDIxLjkgMjQuOCAyMS45TTIxLjUgMjcuN2MtMC41IDAtMC45IDAuNC0wLjkgMC45IDAgMC41IDAuNCAwLjkgMC45IDAuOSAwLjUgMCAwLjktMC40IDAuOS0wLjlDMjIuNSAyOC4xIDIyIDI3LjcgMjEuNSAyNy43TTIxLjYgMzEuNWMtMC41IDAtMC45IDAuNC0wLjkgMC45IDAgMC41IDAuNCAwLjkgMC45IDAuOSAwLjUgMCAwLjktMC40IDAuOS0wLjlDMjIuNSAzMS45IDIyLjEgMzEuNSAyMS42IDMxLjVNMjEuNiAzNS4yYy0wLjUgMC0wLjkgMC40LTAuOSAwLjkgMCAwLjUgMC40IDAuOSAwLjkgMC45IDAuNSAwIDAuOS0wLjQgMC45LTAuOUMyMi41IDM1LjYgMjIuMSAzNS4yIDIxLjYgMzUuMk0xNy42IDM0LjdjLTAuNSAwLTAuOSAwLjQtMC45IDAuOSAwIDAuNSAwLjQgMC45IDAuOSAwLjkgMC41IDAgMC45LTAuNCAwLjktMC45QzE4LjUgMzUuMSAxOC4xIDM0LjcgMTcuNiAzNC43TTE3LjcgMzAuOGMtMC41IDAtMC45IDAuNC0wLjkgMC45IDAgMC41IDAuNCAwLjkgMC45IDAuOSAwLjUgMCAwLjktMC40IDAuOS0wLjlDMTguNiAzMS4yIDE4LjIgMzAuOCAxNy43IDMwLjhNMTQuMyAyOC44Yy0wLjUgMC0wLjkgMC40LTAuOSAwLjkgMCAwLjUgMC40IDAuOSAwLjkgMC45IDAuNSAwIDAuOS0wLjQgMC45LTAuOUMxNS4yIDI5LjIgMTQuOCAyOC44IDE0LjMgMjguOE0xNy44IDI2LjdjLTAuNSAwLTAuOSAwLjQtMC45IDAuOSAwIDAuNSAwLjQgMC45IDAuOSAwLjkgMC41IDAgMC45LTAuNCAwLjktMC45QzE4LjcgMjcuMSAxOC4zIDI2LjcgMTcuOCAyNi43TTExLjcgMjUuOGMtMC41IDAtMC45IDAuNC0wLjkgMC45IDAgMC41IDAuNCAwLjkgMC45IDAuOSAwLjUgMCAwLjktMC40IDAuOS0wLjlDMTIuNiAyNi4yIDEyLjIgMjUuOCAxMS43IDI1LjhNMTAuOCAzMC45Yy0wLjUgMC0wLjkgMC40LTAuOSAwLjkgMCAwLjUgMC40IDAuOSAwLjkgMC45IDAuNSAwIDAuOS0wLjQgMC45LTAuOUMxMS43IDMxLjMgMTEuMyAzMC45IDEwLjggMzAuOU04LjQgMjcuOGMtMC41IDAtMC45IDAuNC0wLjkgMC45IDAgMC41IDAuNCAwLjkgMC45IDAuOSAwLjUgMCAwLjktMC40IDAuOS0wLjlDOS4zIDI4LjIgOC45IDI3LjggOC40IDI3LjhNNi45IDI0LjFDNi40IDI0LjEgNiAyNC41IDYgMjVjMCAwLjUgMC40IDAuOSAwLjkgMC45IDAuNSAwIDAuOS0wLjQgMC45LTAuOUM3LjggMjQuNSA3LjQgMjQuMSA2LjkgMjQuMU0xMC40IDIyLjFjLTAuNSAwLTAuOSAwLjQtMC45IDAuOSAwIDAuNSAwLjQgMC45IDAuOSAwLjkgMC41IDAgMC45LTAuNCAwLjktMC45QzExLjMgMjIuNiAxMC45IDIyLjEgMTAuNCAyMi4xTTE1IDIzLjljLTAuNSAwLTAuOSAwLjQtMC45IDAuOSAwIDAuNSAwLjQgMC45IDAuOSAwLjkgMC41IDAgMC45LTAuNCAwLjktMC45QzE2IDI0LjMgMTUuNiAyMy45IDE1IDIzLjlNMTguMiAyMi4xYy0wLjUgMC0wLjkgMC40LTAuOSAwLjkgMCAwLjUgMC40IDAuOSAwLjkgMC45IDAuNSAwIDAuOS0wLjQgMC45LTAuOUMxOS4xIDIyLjUgMTguNyAyMi4xIDE4LjIgMjIuMU0xOC4yIDE4LjJjLTAuNSAwLTAuOSAwLjQtMC45IDAuOSAwIDAuNSAwLjQgMC45IDAuOSAwLjkgMC41IDAgMC45LTAuNCAwLjktMC45QzE5LjEgMTguNiAxOC43IDE4LjIgMTguMiAxOC4yTTE0IDIwLjJjLTAuNSAwLTAuOSAwLjQtMC45IDAuOSAwIDAuNSAwLjQgMC45IDAuOSAwLjkgMC41IDAgMC45LTAuNCAwLjktMC45QzE1IDIwLjYgMTQuNSAyMC4yIDE0IDIwLjJNMTAuNCAxOC4yYy0wLjUgMC0wLjkgMC40LTAuOSAwLjkgMCAwLjUgMC40IDAuOSAwLjkgMC45IDAuNSAwIDAuOS0wLjQgMC45LTAuOUMxMS4zIDE4LjYgMTAuOSAxOC4yIDEwLjQgMTguMk02LjkgMTYuM2MtMC41IDAtMC45IDAuNC0wLjkgMC45IDAgMC41IDAuNCAwLjkgMC45IDAuOSAwLjUgMCAwLjktMC40IDAuOS0wLjlDNy44IDE2LjcgNy40IDE2LjMgNi45IDE2LjNNMTEuNyAxNC40Yy0wLjUgMC0wLjkgMC40LTAuOSAwLjkgMCAwLjUgMC40IDAuOSAwLjkgMC45IDAuNSAwIDAuOS0wLjQgMC45LTAuOUMxMi42IDE0LjggMTIuMiAxNC40IDExLjcgMTQuNE04LjQgMTIuNWMtMC41IDAtMC45IDAuNC0wLjkgMC45IDAgMC41IDAuNCAwLjkgMC45IDAuOSAwLjUgMCAwLjktMC40IDAuOS0wLjlDOS4zIDEyLjkgOC45IDEyLjUgOC40IDEyLjVNMTAuOCA5LjRjLTAuNSAwLTAuOSAwLjQtMC45IDAuOSAwIDAuNSAwLjQgMC45IDAuOSAwLjkgMC41IDAgMC45LTAuNCAwLjktMC45QzExLjcgOS44IDExLjMgOS40IDEwLjggOS40TTE0LjIgMTEuNWMtMC41IDAtMC45IDAuNC0wLjkgMC45IDAgMC41IDAuNCAwLjkgMC45IDAuOSAwLjUgMCAwLjktMC40IDAuOS0wLjlDMTUuMiAxMS45IDE0LjcgMTEuNSAxNC4yIDExLjVNMTcuOCAxMy43Yy0wLjUgMC0wLjkgMC40LTAuOSAwLjkgMCAwLjUgMC40IDAuOSAwLjkgMC45IDAuNSAwIDAuOS0wLjQgMC45LTAuOUMxOC43IDE0LjEgMTguMyAxMy43IDE3LjggMTMuN00xNSAxNi4zYy0wLjUgMC0wLjkgMC40LTAuOSAwLjkgMCAwLjUgMC40IDAuOSAwLjkgMC45IDAuNSAwIDAuOS0wLjQgMC45LTAuOUMxNS45IDE2LjcgMTUuNSAxNi4zIDE1IDE2LjNNNi40IDIwLjJjLTAuNSAwLTAuOSAwLjQtMC45IDAuOSAwIDAuNSAwLjQgMC45IDAuOSAwLjkgMC41IDAgMC45LTAuNCAwLjktMC45QzcuMyAyMC42IDYuOSAyMC4yIDYuNCAyMC4yTTE0IDMzLjJjLTAuNSAwLTAuOSAwLjQtMC45IDAuOSAwIDAuNSAwLjQgMC45IDAuOSAwLjkgMC41IDAgMC45LTAuNCAwLjktMC45QzE0LjkgMzMuNiAxNC41IDMzLjIgMTQgMzMuMk0yMS41IDE2LjRjLTAuNSAwLTAuOSAwLjQtMC45IDAuOXMwLjQgMC45IDAuOSAwLjljMC41IDAgMC45LTAuNCAwLjktMC45UzIyIDE2LjQgMjEuNSAxNi40TTIxLjUgMTIuN2MtMC41IDAtMC45IDAuNC0wLjkgMC45IDAgMC41IDAuNCAwLjkgMC45IDAuOSAwLjUgMCAwLjktMC40IDAuOS0wLjlDMjIuNCAxMy4xIDIyIDEyLjcgMjEuNSAxMi43TTI1LjIgMTMuN2MtMC41IDAtMC45IDAuNC0wLjkgMC45IDAgMC41IDAuNCAwLjkgMC45IDAuOSAwLjUgMCAwLjktMC40IDAuOS0wLjlDMjYuMiAxNC4xIDI1LjcgMTMuNyAyNS4yIDEzLjdNMjguOCAxMS41Yy0wLjUgMC0wLjkgMC40LTAuOSAwLjkgMCAwLjUgMC40IDAuOSAwLjkgMC45IDAuNSAwIDAuOS0wLjQgMC45LTAuOUMyOS43IDExLjkgMjkuMyAxMS41IDI4LjggMTEuNU0zMi4yIDkuM2MtMC41IDAtMC45IDAuNC0wLjkgMC45IDAgMC41IDAuNCAwLjkgMC45IDAuOSAwLjUgMCAwLjktMC40IDAuOS0wLjlDMzMuMSA5LjcgMzIuNyA5LjMgMzIuMiA5LjNNMzQuNiAxMi40Yy0wLjUgMC0wLjkgMC40LTAuOSAwLjkgMCAwLjUgMC40IDAuOSAwLjkgMC45IDAuNSAwIDAuOS0wLjQgMC45LTAuOUMzNS41IDEyLjkgMzUuMSAxMi40IDM0LjYgMTIuNE0zMS4zIDE0LjVjLTAuNSAwLTAuOSAwLjQtMC45IDAuOSAwIDAuNSAwLjQgMC45IDAuOSAwLjkgMC41IDAgMC45LTAuNCAwLjktMC45QzMyLjIgMTQuOSAzMS44IDE0LjUgMzEuMyAxNC41TTI4IDE2LjRjLTAuNSAwLTAuOSAwLjQtMC45IDAuOSAwIDAuNSAwLjQgMC45IDAuOSAwLjkgMC41IDAgMC45LTAuNCAwLjktMC45QzI4LjkgMTYuOCAyOC41IDE2LjQgMjggMTYuNE0yNC44IDE4LjNjLTAuNSAwLTAuOSAwLjQtMC45IDAuOSAwIDAuNSAwLjQgMC45IDAuOSAwLjkgMC41IDAgMC45LTAuNCAwLjktMC45QzI1LjcgMTguNyAyNS4zIDE4LjMgMjQuOCAxOC4zTTI5IDIwLjFjLTAuNSAwLTAuOSAwLjQtMC45IDAuOSAwIDAuNSAwLjQgMC45IDAuOSAwLjkgMC41IDAgMC45LTAuNCAwLjktMC45QzI5LjkgMjAuNiAyOS41IDIwLjEgMjkgMjAuMU0zMi43IDE4LjJjLTAuNSAwLTAuOSAwLjQtMC45IDAuOSAwIDAuNSAwLjQgMC45IDAuOSAwLjkgMC41IDAgMC45LTAuNCAwLjktMC45QzMzLjYgMTguNiAzMy4yIDE4LjIgMzIuNyAxOC4yTTM2LjEgMTYuMmMtMC41IDAtMC45IDAuNC0wLjkgMC45IDAgMC41IDAuNCAwLjkgMC45IDAuOSAwLjUgMCAwLjktMC40IDAuOS0wLjlDMzcgMTYuNiAzNi42IDE2LjIgMzYuMSAxNi4yTTM2LjcgMjAuMWMtMC41IDAtMC45IDAuNC0wLjkgMC45IDAgMC41IDAuNCAwLjkgMC45IDAuOSAwLjUgMCAwLjktMC40IDAuOS0wLjlDMzcuNiAyMC41IDM3LjIgMjAuMSAzNi43IDIwLjFNMzIuNyAyMi4xYy0wLjUgMC0wLjkgMC40LTAuOSAwLjkgMCAwLjUgMC40IDAuOSAwLjkgMC45IDAuNSAwIDAuOS0wLjQgMC45LTAuOUMzMy42IDIyLjUgMzMuMiAyMi4xIDMyLjcgMjIuMU0zNi4yIDI0Yy0wLjUgMC0wLjkgMC40LTAuOSAwLjkgMCAwLjUgMC40IDAuOSAwLjkgMC45IDAuNSAwIDAuOS0wLjQgMC45LTAuOUMzNy4xIDI0LjUgMzYuNyAyNCAzNi4yIDI0TTM0LjcgMjcuNmMtMC41IDAtMC45IDAuNC0wLjkgMC45IDAgMC41IDAuNCAwLjkgMC45IDAuOSAwLjUgMCAwLjktMC40IDAuOS0wLjlDMzUuNiAyOCAzNS4yIDI3LjYgMzQuNyAyNy42TTMxLjMgMjUuN2MtMC41IDAtMC45IDAuNC0wLjkgMC45IDAgMC41IDAuNCAwLjkgMC45IDAuOSAwLjUgMCAwLjktMC40IDAuOS0wLjlDMzIuMiAyNi4xIDMxLjggMjUuNyAzMS4zIDI1LjdNMCA0MS45aDEuOGMwLjUgMCAwLjkgMC4xIDEuMiAwLjQgMC4yIDAuMiAwLjMgMC41IDAuMyAwLjl2MGMwIDAuNi0wLjQgMS4xLTAuOSAxLjJsMSAxLjRoLTFsLTAuOS0xLjNIMC45djEuM0gwVjQxLjl6TTEuOCA0My45YzAuNCAwIDAuNy0wLjIgMC43LTAuNnYwYzAtMC40LTAuMy0wLjYtMC43LTAuNkgwLjl2MS4ySDEuOHpNNC44IDQzLjlMNC44IDQzLjljMC0xLjIgMC45LTIuMSAyLjEtMi4xczIuMSAwLjkgMi4xIDIuMXYwQzkuMSA0NS4xIDguMiA0NiA3IDQ2IDUuNyA0NiA0LjggNDUuMSA0LjggNDMuOXpNOC4yIDQzLjlMOC4yIDQzLjljMC0wLjctMC41LTEuMy0xLjItMS4zcy0xLjIgMC42LTEuMiAxLjN2MGMwIDAuNyAwLjUgMS4zIDEuMiAxLjNTOC4yIDQ0LjYgOC4yIDQzLjl6TTExLjcgNDQuM2wtMS41LTIuNGgxbDEgMS42IDEtMS42aDFsLTEuNSAyLjR2MS42aC0wLjlWNDQuM3pNMTYuNCA0MS45aDAuOGwxLjcgNEgxOEwxNy42IDQ1aC0xLjdsLTAuNCAwLjloLTAuOUwxNi40IDQxLjl6TTE3LjMgNDQuMmwtMC41LTEuMyAtMC41IDEuM0gxNy4zek0yMC42IDQxLjloMC45djMuMmgydjAuOGgtMi45VjQxLjl6TTI1LjUgNDEuOUgyN2MwLjkgMCAxLjUgMC41IDEuNSAxLjJ2MGMwIDAuOC0wLjcgMS4zLTEuNiAxLjNoLTEuMXYxLjVoLTAuM1Y0MS45ek0yNi45IDQ0LjJjMC43IDAgMS4zLTAuNCAxLjMtMXYwYzAtMC42LTAuNS0xLTEuMi0xaC0xLjF2MkgyNi45ek0zMC40IDQxLjloMC4zdjMuN2gyLjR2MC4zaC0yLjdWNDEuOXpNMzYuMyA0MS45aDAuM2wxLjkgNGgtMC4zbC0wLjUtMS4xaC0yLjRsLTAuNSAxLjFoLTAuM0wzNi4zIDQxLjl6TTM3LjUgNDQuNWwtMS4xLTIuMyAtMS4xIDIuM0gzNy41ek00MSA0NC4zbC0xLjctMi40aDAuNGwxLjUgMi4yIDEuNS0yLjJINDNsLTEuNyAyLjR2MS42SDQxVjQ0LjN6Ii8+PC9zdmc+");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 86px 92px; }
  #cache-info .cache-info-loader {
    position: relative;
    display: block;
    width: 200px;
    height: 3px;
    margin: 0 auto;
    overflow: hidden; }
    #cache-info .cache-info-loader .loader-background,
    #cache-info .cache-info-loader .loader-progress {
      position: absolute;
      top: 0;
      left: 0;
      height: 3px; }
    #cache-info .cache-info-loader .loader-background {
      width: 100%;
      background-color: black;
      -webkit-transform: translate(0%, 0);
      -moz-transform: translate(0%, 0);
      -ms-transform: translate(0%, 0);
      -o-transform: translate(0%, 0);
      transform: translate(0%, 0);
      -webkit-transition: all 0.2s linear;
      -moz-transition: all 0.2s linear;
      -ms-transition: all 0.2s linear;
      -o-transition: all 0.2s linear;
      transition: all 0.2s linear; }
    #cache-info .cache-info-loader .loader-progress {
      width: 100%;
      background-color: white; }
  #cache-info .cache-info-text {
    display: inline-block;
    margin: 0 auto 2em auto; }
  #cache-info #cache-info-reload {
    position: absolute;
    left: 50%;
    margin-top: -3px;
    margin-left: -100px;
    display: block;
    width: 200px;
    overflow: hidden; }
    #cache-info #cache-info-reload #cache-info-reload-button {
      height: 100%;
      width: 100%;
      padding: 10px;
      text-transform: uppercase;
      cursor: pointer;
      border: 3px solid white;
      -webkit-transform: translate(0%, -100%);
      -moz-transform: translate(0%, -100%);
      -ms-transform: translate(0%, -100%);
      -o-transform: translate(0%, -100%);
      transform: translate(0%, -100%); }
      #cache-info #cache-info-reload #cache-info-reload-button.animate {
        -webkit-animation: buttonDown 0.35s ease 0.5s forwards;
        -moz-animation: buttonDown 0.35s ease 0.5s forwards;
        -ms-animation: buttonDown 0.35s ease 0.5s forwards;
        -o-animation: buttonDown 0.35s ease 0.5s forwards;
        animation: buttonDown 0.35s ease 0.5s forwards; }

@-webkit-keyframes buttonDown {
  0% {
    -webkit-transform: translate(0%, -100%); }
  100% {
    -webkit-transform: translate(0%, 0%); } }

@keyframes buttonDown {
  0% {
    transform: translate(0%, -100%); }
  100% {
    transform: translate(0%, 0%); } }

.offline-ui,
.offline-ui *,
.offline-ui:before,
.offline-ui:after,
.offline-ui *:before,
.offline-ui *:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box; }

.offline-ui {
  display: none;
  position: fixed;
  background: white;
  z-index: 2000;
  margin: auto;
  top: 0;
  left: 0;
  right: 0;
  padding: 13px;
  height: 50px;
  width: 100%;
  max-width: 100%; }
  .offline-ui .offline-ui-content {
    text-align: left; }
    .offline-ui .offline-ui-content:before {
      display: inline-block; }
  .offline-ui .offline-ui-retry {
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    display: none;
    position: absolute;
    right: 50px;
    top: 5px;
    bottom: 5px;
    height: 40px;
    background: #FFCC01;
    text-decoration: none;
    color: white;
    margin: auto;
    padding: 0.75em 1em;
    -webkit-border-radius: 2px;
    border-radius: 2px; }
    @media only screen and (min-width: 678px) {
      .offline-ui .offline-ui-retry {
        padding: 0.45em 1em; } }
  .offline-ui .offline-ui-retry:before {
    display: inline; }
  .offline-ui.offline-ui-up {
    background: #ccffcc;
    color: lime; }
    .offline-ui.offline-ui-up.offline-ui-up-5s {
      display: block; }
  .offline-ui.offline-ui-down {
    display: block;
    background: #fae4eb;
    color: #e8799a; }
    .offline-ui.offline-ui-down.offline-ui-connecting, .offline-ui.offline-ui-down.offline-ui-waiting {
      background: #fff5cc;
      color: #FFCC01;
      padding-right: 3em; }
    .offline-ui.offline-ui-down.offline-ui-waiting {
      padding-right: 11em; }
      .offline-ui.offline-ui-down.offline-ui-waiting .offline-ui-retry {
        display: block; }
    .offline-ui.offline-ui-down.offline-ui-reconnect-failed-2s {
      padding-right: 0; }
      .offline-ui.offline-ui-down.offline-ui-reconnect-failed-2s.offline-ui-waiting .offline-ui-retry {
        display: none; }

.offline-ui .offline-ui-retry:before {
  content: "Reconnect"; }

.offline-ui.offline-ui-up .offline-ui-content:before {
  content: "Your device is connected to the internet."; }
  @media only screen and (min-width: 678px) {
    .offline-ui.offline-ui-up .offline-ui-content:before {
      content: "Your device is connected to the internet."; } }
  @media only screen and (min-width: 940px) {
    .offline-ui.offline-ui-up .offline-ui-content:before {
      content: "Your device is connected to the internet."; } }

.offline-ui.offline-ui-down .offline-ui-content:before {
  content: "Your device lost its internet connection."; }
  @media only screen and (min-width: 678px) {
    .offline-ui.offline-ui-down .offline-ui-content:before {
      content: "Your device lost its internet connection."; } }
  @media only screen and (min-width: 940px) {
    .offline-ui.offline-ui-down .offline-ui-content:before {
      content: "Your device lost its internet connection."; } }

.offline-ui.offline-ui-connecting .offline-ui-content:before, .offline-ui.offline-ui-connecting-2s .offline-ui-content:before {
  content: "Attempting to reconnect..."; }

.offline-ui.offline-ui-waiting .offline-ui-content[data-retry-in-unit="second"]:before {
  content: "Reconnecting in " attr(data-retry-in-value) "s..."; }
  @media only screen and (min-width: 678px) {
    .offline-ui.offline-ui-waiting .offline-ui-content[data-retry-in-unit="second"]:before {
      content: "Connection lost. Reconnecting in " attr(data-retry-in-value) " seconds..."; } }

.offline-ui.offline-ui-waiting .offline-ui-content[data-retry-in-unit="second"][data-retry-in-value="1"]:before {
  content: "Reconnecting in " attr(data-retry-in-value) "s..."; }
  @media only screen and (min-width: 678px) {
    .offline-ui.offline-ui-waiting .offline-ui-content[data-retry-in-unit="second"][data-retry-in-value="1"]:before {
      content: "Connection lost. Reconnecting in " attr(data-retry-in-value) " second..."; } }

.offline-ui.offline-ui-waiting .offline-ui-content[data-retry-in-unit="minute"]:before {
  content: "Reconnecting in " attr(data-retry-in-value) "m..."; }
  @media only screen and (min-width: 678px) {
    .offline-ui.offline-ui-waiting .offline-ui-content[data-retry-in-unit="minute"]:before {
      content: "Connection lost. Reconnecting in " attr(data-retry-in-value) " minutes..."; } }

.offline-ui.offline-ui-waiting .offline-ui-content[data-retry-in-unit="minute"][data-retry-in-value="1"]:before {
  content: "Reconnecting in " attr(data-retry-in-value) "m..."; }
  @media only screen and (min-width: 678px) {
    .offline-ui.offline-ui-waiting .offline-ui-content[data-retry-in-unit="minute"][data-retry-in-value="1"]:before {
      content: "Connection lost. Reconnecting in " attr(data-retry-in-value) " minute..."; } }

.offline-ui.offline-ui-waiting .offline-ui-content[data-retry-in-unit="hour"]:before {
  content: "Reconnecting in " attr(data-retry-in-value) "h..."; }
  @media only screen and (min-width: 678px) {
    .offline-ui.offline-ui-waiting .offline-ui-content[data-retry-in-unit="hour"]:before {
      content: "Connection lost. Reconnecting in " attr(data-retry-in-value) " hours..."; } }

.offline-ui.offline-ui-waiting .offline-ui-content[data-retry-in-unit="hour"][data-retry-in-value="1"]:before {
  content: "Reconnecting in " attr(data-retry-in-value) "h..."; }
  @media only screen and (min-width: 678px) {
    .offline-ui.offline-ui-waiting .offline-ui-content[data-retry-in-unit="hour"][data-retry-in-value="1"]:before {
      content: "Connection lost. Reconnecting in " attr(data-retry-in-value) " hour..."; } }

.offline-ui.offline-ui-reconnect-failed-2s.offline-ui-waiting .offline-ui-retry {
  display: none; }

.offline-ui.offline-ui-reconnect-failed-2s .offline-ui-content:before {
  content: "Connection attempt failed."; }

/*--------------------------------------------------------------
5.0 Admin
--------------------------------------------------------------*/
.popup-active {
  overflow: hidden;
  position: relative;
  left: 0;
  right: 0; }

#royal-popup {
  display: none;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.74);
  font-size: 12px;
  font-size: 1.2rem;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  z-index: 9000; }
  #royal-popup.active {
    display: block; }
  #royal-popup .royal-popup-table {
    display: table;
    width: 100%;
    height: 100%;
    vertical-align: middle;
    text-align: center; }
  #royal-popup .royal-popup-tr {
    display: table-cell;
    vertical-align: middle; }
  #royal-popup .royal-popup-email {
    position: relative;
    display: inline-block;
    width: 100%;
    max-width: 680px;
    padding: 0 20px 60px 20px;
    margin-top: 60px;
    text-align: left; }
  #royal-popup #popup-close {
    position: absolute;
    top: -44px;
    right: 7px;
    width: 40px;
    height: 40px;
    padding: 10px;
    z-index: 100; }
    #royal-popup #popup-close span {
      position: relative;
      display: block;
      width: 20px;
      height: 1px;
      text-indent: -9999em; }
      #royal-popup #popup-close span:after, #royal-popup #popup-close span:before {
        content: "";
        position: absolute;
        display: block;
        left: 0;
        width: 100%;
        background-color: white; }
      #royal-popup #popup-close span:before {
        top: 0;
        height: 1px;
        -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        transform: rotate(45deg); }
      #royal-popup #popup-close span:after {
        height: 1px;
        bottom: 0;
        -webkit-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
        transform: rotate(-45deg); }
  #royal-popup .popup-button,
  #royal-popup input[type="button"],
  #royal-popup input[type="reset"],
  #royal-popup input[type="submit"] {
    color: white;
    border-color: white;
    background-color: transparent;
    -webkit-appearance: none;
    display: inline-block;
    border: 3px solid;
    cursor: pointer;
    padding: 0.8em 1.2em;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    width: 100%; }
    @media only screen and (min-width: 678px) {
      #royal-popup .popup-button,
      #royal-popup input[type="button"],
      #royal-popup input[type="reset"],
      #royal-popup input[type="submit"] {
        padding: 1.0em 1.8em; } }
    @media only screen and (min-width: 940px) {
      #royal-popup .popup-button,
      #royal-popup input[type="button"],
      #royal-popup input[type="reset"],
      #royal-popup input[type="submit"] {
        padding: 1.5em 2.3em; } }
    #royal-popup .popup-button:hover,
    #royal-popup input[type="button"]:hover,
    #royal-popup input[type="reset"]:hover,
    #royal-popup input[type="submit"]:hover {
      background-color: black;
      text-decoration: none; }
    #royal-popup .popup-button:focus, #royal-popup .popup-button:active,
    #royal-popup input[type="button"]:focus,
    #royal-popup input[type="button"]:active,
    #royal-popup input[type="reset"]:focus,
    #royal-popup input[type="reset"]:active,
    #royal-popup input[type="submit"]:focus,
    #royal-popup input[type="submit"]:active {
      color: black;
      background-color: white; }
  #royal-popup .popup-button:before {
    content: 'Send e-mail';
    display: inline; }
  #royal-popup .popup-button .icon-loading {
    display: none; }
  #royal-popup .popup-button.sending .icon-loading {
    display: inline-block; }
  #royal-popup .popup-button.sending:before {
    content: '';
    display: none; }
  #royal-popup .popup-button.sent:before {
    content: 'Hooray! E-mail is sent'; }
  #royal-popup .popup-button.error {
    color: #ff0033;
    border-color: #ff0033; }
    #royal-popup .popup-button.error:before {
      content: 'Oops! See above'; }

.royal-admin {
  position: relative;
  position: relative;
  background-color: black;
  color: #c2c2c2;
  background-color: black;
  font-size: 12px;
  font-size: 1.2rem;
  padding: 2em 0 2.5em 0; }
  .royal-admin a {
    color: lime;
    text-decoration: none; }
  .royal-admin.hidden {
    display: none; }
  .royal-admin .faded-text {
    color: #646464; }
  .royal-admin .ra-header {
    padding: 8px 20px 0 20px;
    margin-bottom: 1em; }
    .royal-admin .ra-header h2 {
      margin-bottom: 0.4em; }
  .royal-admin .ra-mail {
    padding: 8px 20px 0 20px; }
  .royal-admin .ra-filter {
    padding: 8px 20px 0 20px;
    margin-bottom: 1em; }
  .royal-admin .ra-store-list, .royal-admin .ra-store-list-header {
    display: block;
    padding-left: 20px;
    padding-right: 20px; }
  .royal-admin .ra-store-list-item, .royal-admin .ra-store-list-header-item {
    display: block;
    position: relative;
    padding-top: 13px;
    padding-bottom: 13px;
    padding-left: 43px;
    padding-right: 100px;
    border-top: 1px solid rgba(255, 255, 255, 0.08); }
    .royal-admin .ra-store-list-item:hover, .royal-admin .ra-store-list-header-item:hover {
      cursor: pointer; }
    .royal-admin .ra-store-list-item .ra-store-status, .royal-admin .ra-store-list-header-item .ra-store-status {
      position: absolute;
      display: block;
      left: 0;
      width: 36px;
      height: 14px;
      color: #646464; }
      .royal-admin .ra-store-list-item .ra-store-status .ra-store-online-status, .royal-admin .ra-store-list-header-item .ra-store-status .ra-store-online-status,
      .royal-admin .ra-store-list-item .ra-store-status .ra-store-play-status, .royal-admin .ra-store-list-header-item .ra-store-status .ra-store-play-status {
        position: relative;
        display: inline-block;
        width: 50%;
        height: 14px; }
      .royal-admin .ra-store-list-item .ra-store-status .circle, .royal-admin .ra-store-list-header-item .ra-store-status .circle,
      .royal-admin .ra-store-list-item .ra-store-status .circle-multi, .royal-admin .ra-store-list-header-item .ra-store-status .circle-multi {
        position: absolute;
        display: block;
        -webkit-border-radius: 6px;
        border-radius: 6px; }
      .royal-admin .ra-store-list-item .ra-store-status .circle, .royal-admin .ra-store-list-header-item .ra-store-status .circle {
        top: 1px;
        left: 0;
        width: 12px;
        height: 12px;
        border: 1px solid black;
        background-color: #383838;
        z-index: 2; }
      .royal-admin .ra-store-list-item .ra-store-status .circle-multi, .royal-admin .ra-store-list-header-item .ra-store-status .circle-multi {
        top: 2px;
        left: 7px;
        width: 10px;
        height: 10px;
        background-color: #383838;
        z-index: 1; }
    .royal-admin .ra-store-list-item .ra-store-time, .royal-admin .ra-store-list-header-item .ra-store-time,
    .royal-admin .ra-store-list-item .ra-store-ip-time, .royal-admin .ra-store-list-header-item .ra-store-ip-time,
    .royal-admin .ra-store-list-item .ra-store-channel-time, .royal-admin .ra-store-list-header-item .ra-store-channel-time {
      position: absolute;
      right: 0;
      top: auto;
      color: #646464; }
    .royal-admin .ra-store-list-item .ra-store-ip-time, .royal-admin .ra-store-list-header-item .ra-store-ip-time,
    .royal-admin .ra-store-list-item .ra-store-channel-time, .royal-admin .ra-store-list-header-item .ra-store-channel-time {
      right: -100px; }
    .royal-admin .ra-store-list-item.expand-list-item .ra-store-list-more, .royal-admin .expand-list-item.ra-store-list-header-item .ra-store-list-more {
      display: list-item; }
    .royal-admin .ra-store-list-item .ra-store-time, .royal-admin .ra-store-list-header-item .ra-store-time,
    .royal-admin .ra-store-list-item .ra-store-name, .royal-admin .ra-store-list-header-item .ra-store-name,
    .royal-admin .ra-store-list-item .ra-store-status, .royal-admin .ra-store-list-header-item .ra-store-status {
      -webkit-user-select: none;
      -moz-user-select: none;
      -ms-user-select: none;
      user-select: none;
      cursor: pointer; }
  .royal-admin .ra-store-list-more {
    display: none;
    cursor: default; }
    .royal-admin .ra-store-list-more .ra-store-list-more-item {
      display: list-item;
      position: relative;
      padding-top: 13px;
      padding-bottom: 13px;
      padding-left: 18px; }
  .royal-admin .status-online .ra-store-online-status .circle,
  .royal-admin .ra-store-list-more-item.status-online .ra-store-online-status .circle {
    background-color: lime; }
  .royal-admin .status-offline .ra-store-online-status .circle,
  .royal-admin .ra-store-list-more-item.status-offline .ra-store-online-status .circle {
    background-color: #ff0033; }
  .royal-admin .status-never-online .ra-store-online-status .circle {
    background-color: #ff0033; }
  .royal-admin .status-online-multi .ra-store-online-status .circle,
  .royal-admin .status-online-multi .ra-store-online-status .circle-multi,
  .royal-admin .ra-store-list-more-item.status-online-multi .ra-store-online-status .circle,
  .royal-admin .ra-store-list-more-item.status-online-multi .ra-store-online-status .circle-multi {
    background-color: lime; }
  .royal-admin .status-playing .ra-store-play-status .circle,
  .royal-admin .ra-store-list-more-item.status-playing .ra-store-play-status .circle {
    background-color: lime; }
  .royal-admin .status-no-playing .ra-store-play-status .circle,
  .royal-admin .ra-store-list-more-item.status-no-playing .ra-store-play-status .circle {
    background-color: #ff0033; }
  .royal-admin .status-playing-multi .ra-store-play-status .circle,
  .royal-admin .status-playing-multi .ra-store-play-status .circle-multi,
  .royal-admin .ra-store-list-more-item.status-playing-multi .ra-store-play-status .circle,
  .royal-admin .ra-store-list-more-item.status-playing-multi .ra-store-play-status .circle-multi {
    background-color: lime; }
  .royal-admin .status-playing-multi:before,
  .royal-admin .status-online-multi:before {
    content: '';
    display: block;
    position: absolute;
    top: 15px;
    left: -8px;
    padding-right: 8px;
    width: 3px;
    height: 10px;
    background-image: url("data:image/svg+xml;base64,PHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4IiB2aWV3Qm94PSIwIDAgMyAxMCI+PHBhdGggZmlsbD0iI0VDMjAzRiIgZD0iTTEuMyw3LjhjLTAuNCwwLTAuNywwLjEtMC45LDAuM0MwLjIsOC4zLDAuMSw4LjYsMC4xLDguOWMwLDAuNCwwLjEsMC42LDAuMywwLjhDMC42LDkuOSwwLjksMTAsMS4zLDEwQzEuNywxMCwyLDkuOSwyLjMsOS43YzAuMi0wLjIsMC4zLTAuNSwwLjMtMC44YzAtMC40LTAuMS0wLjYtMC4zLTAuOEMyLDcuOSwxLjcsNy44LDEuMyw3LjggTTEuMiw3LjRoMC4yYzAtMC43LDAuMS0xLjMsMC4zLTEuOEMxLjksNSwyLDQuNCwyLjMsMy41YzAuMi0wLjgsMC40LTEuNSwwLjQtMS45YzAtMC4zLTAuMS0wLjYtMC4yLTAuOEMyLjQsMC41LDIuMiwwLjMsMiwwLjJDMS44LDAuMSwxLjYsMCwxLjMsMEMxLjEsMCwwLjgsMC4xLDAuNiwwLjJDMC40LDAuMywwLjMsMC41LDAuMiwwLjhDMC4xLDEsMCwxLjMsMCwxLjZjMCwwLjUsMC4xLDEuMiwwLjQsMi4xQzAuNyw0LjYsMC45LDUuMywxLDUuOEMxLjEsNi4zLDEuMiw2LjgsMS4yLDcuNCIvPjwvc3ZnPg==");
    background-position: center;
    background-size: auto 100%;
    background-repeat: no-repeat; }
  .royal-admin .ra-store-list-header .ra-store-status {
    text-align: center; }
  .royal-admin .ra-store-list-header-item:first-child {
    border-top: 0; }
  .royal-admin .store-history-list {
    display: none;
    margin-top: 0.75em; }
    .royal-admin .store-history-list.expand-store-history {
      display: list-item; }
    .royal-admin .store-history-list li {
      cursor: pointer; }
    .royal-admin .store-history-list .store-history-list-item .ra-store-ip-time,
    .royal-admin .store-history-list .store-history-list-item .ra-store-channel-time {
      right: 0; }
    .royal-admin .store-history-list .store-history-list-item-year,
    .royal-admin .store-history-list .store-history-list-item-month,
    .royal-admin .store-history-list .store-history-list-item-day {
      margin: 5px 0; }
      .royal-admin .store-history-list .store-history-list-item-year ul,
      .royal-admin .store-history-list .store-history-list-item-month ul,
      .royal-admin .store-history-list .store-history-list-item-day ul {
        display: none; }
      .royal-admin .store-history-list .store-history-list-item-year:before,
      .royal-admin .store-history-list .store-history-list-item-month:before,
      .royal-admin .store-history-list .store-history-list-item-day:before {
        content: '+';
        display: inline-block;
        text-align: center;
        width: 6px; }
      .royal-admin .store-history-list .store-history-list-item-year .ra-store-ip-time,
      .royal-admin .store-history-list .store-history-list-item-year .ra-store-channel-time,
      .royal-admin .store-history-list .store-history-list-item-month .ra-store-ip-time,
      .royal-admin .store-history-list .store-history-list-item-month .ra-store-channel-time,
      .royal-admin .store-history-list .store-history-list-item-day .ra-store-ip-time,
      .royal-admin .store-history-list .store-history-list-item-day .ra-store-channel-time {
        right: 0; }
      .royal-admin .store-history-list .store-history-list-item-year.expand-list-item:before,
      .royal-admin .store-history-list .store-history-list-item-month.expand-list-item:before,
      .royal-admin .store-history-list .store-history-list-item-day.expand-list-item:before {
        content: '-'; }
      .royal-admin .store-history-list .store-history-list-item-year.expand-list-item > ul,
      .royal-admin .store-history-list .store-history-list-item-month.expand-list-item > ul,
      .royal-admin .store-history-list .store-history-list-item-day.expand-list-item > ul {
        display: list-item; }
    .royal-admin .store-history-list .store-history-list-item-month ul {
      margin-top: 5px;
      margin-bottom: 20px; }
    .royal-admin .store-history-list .store-history-list-item-month,
    .royal-admin .store-history-list .store-history-list-item-day {
      padding-left: 20px; }
    .royal-admin .store-history-list .store-history-list-item-day {
      margin: 0;
      cursor: default; }
      .royal-admin .store-history-list .store-history-list-item-day:before {
        content: '';
        display: none; }
  .royal-admin .filter-hidden {
    display: none; }
  .royal-admin .button,
  .royal-admin button {
    display: inline-block;
    padding: 5px;
    margin: 5px 5px 5px 0;
    border: 1px solid #383838;
    border-color: #383838;
    font-size: 12px;
    font-size: 1.2rem;
    color: #c2c2c2; }
    .royal-admin .button:hover,
    .royal-admin button:hover {
      border-color: #646464; }
    .royal-admin .button:active, .royal-admin .button:focus,
    .royal-admin button:active,
    .royal-admin button:focus {
      background-color: #383838; }
    .royal-admin .button.active,
    .royal-admin button.active {
      color: white;
      border-color: white; }
  .royal-admin .icon-pin {
    display: inline-block;
    width: 14px;
    height: 14px;
    padding: 0 3px;
    background-repeat: no-repeat;
    background-position: center;
    vertical-align: top; }
  .royal-admin .icon-pin {
    background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZlcnNpb249IjEuMSIgeD0iMCIgeT0iMCIgdmlld0JveD0iMCAwIDggMTQiPjxwYXRoIGZpbGw9IiNGRkZGRkYiIGQ9Ik0yLjYgMy44YzAtMC40IDAuMS0wLjcgMC40LTEgMC4zLTAuMyAwLjYtMC40IDEtMC40czAuNyAwLjEgMSAwLjRjMC4zIDAuMyAwLjQgMC42IDAuNCAxIDAgMC40LTAuMSAwLjctMC40IDFDNC43IDUuMSA0LjQgNS4yIDQgNS4yUzMuMyA1LjEgMyA0LjhDMi43IDQuNiAyLjYgNC4yIDIuNiAzLjhNMCA0YzAgMC41IDAuMSAxIDAuMyAxLjV2MGMwIDAgMCAwIDAgMC4xbDAgMC4xTDQgMTRsMy42LTguNCAwIDAgMC0wLjFWNS41bDAgMEM3LjkgNSA4IDQuNSA4IDRjMC0xLjEtMC40LTItMS4yLTIuOFM1LjEgMCA0IDBDMi45IDAgMS45IDAuNCAxLjIgMS4yUzAgMi45IDAgNCIvPjwvc3ZnPg==");
    background-size: auto 10px;
    text-indent: -9999em; }
