html, body {
    overflow: hidden;
    font-family:'KL1 MonoSans', Verdana, sans-serif;
}

#container {
    margin-left: auto;
    margin-right: auto;
    width: 100vw;
    height:100vh;
    position: relative;
}
#player-container{
    height:100%;
    width:100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
}
.media-wrapper{
    height:100%;
    background-color: #000000;
}
.splash{
    height:100%;
    width:100%;
    background-image: url("../logo/v3_base.svg");
    background-color: transparent;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 5;
    pointer-events:none;
}
.error {
    color: red;
}
a {
    word-wrap: break-word;
}

code {
    font-size: 0.8em;
}
#logo img {
    position: fixed;
    right: 5vw;
    top: 6vh;
    width: 7vw;
    height: auto;
    opacity: 0.5;
    filter: alpha(opacity=50);
    z-index: 15;
    transition: 0.2s ease;
}
#logo img:hover{
    -webkit-transform: scale(1.6);
    -ms-transform: scale(1.6);
    transform: scale(1.6);
    transition: 0.2s ease;
}
#titleBadge {
    position: fixed;
    left: 20vw;
    bottom: 10vh;
    display: none;
    z-index: 60;
    color: #f0f0f0;
    text-shadow: 0.03em 0.03em 0.06em #000000;

    /*-webkit-animation: fadein 1s; /* Safari, Chrome and Opera > 12.1 */
    /*   -moz-animation: fadein 1s; /* Firefox < 16 */
    /*    -ms-animation: fadein 1s; /* Internet Explorer */
    /*     -o-animation: fadein 1s; /* Opera < 12.1 */
    /*        animation: fadein 1s; */
}
#titleBadgeLive {
    text-align: right;
    display: none;
    z-index: 61;
    color: #d0d0d0;
    /* text-shadow: 0.03em 0.03em 0.06em #000000; */

}
#artist
{
    font-size: 30px;
}
#title{
    font-size: 26px;
    line-height: 1.1em;
}
#info {
    font-size: 16px;
    line-height: 1.6em;
}
#titleLive
{
    font-size: 1.5vw;
}

.mejs-overlay-loading { display: none; }
.mejs__overlay-button { display:none; }

@keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Firefox < 16 */
@-moz-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Safari, Chrome and Opera > 12.1 */
@-webkit-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Internet Explorer */
@-ms-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Opera < 12.1 */
@-o-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

