body {
    background: #eee;
    transition: background 2s;
}

body.dark {
    background: #424242;
}

a {
    cursor: pointer;
}

canvas {
    margin: 0 auto;
    display: block;
    position: relative;
}

#background {
    position: absolute;
    top: 0;
}

[ng\:cloak], [ng-cloak], .ng-cloak {
    display: none !important;
}

.audio-visual-controls {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: opacity 2s;
}

body.hidden-gui .audio-visual-controls {
    opacity: 0;
}

.audio-visual-controls .inputs {
    position: absolute;
    top: 20px;
    left: 20px;
}

.audio-visual-controls .track-info {
    position: absolute;
    bottom: 50px;
    left: 20px;
}

.audio-visual-controls .track-info .panel-body {
    overflow-y: scroll;
}

.audio-visual-controls .footer-controls {
    position: absolute;
    bottom: 20px;
    left: 20px;
}

.audio-visual-controls .playlist {
    position: absolute;
    top: 20px;
    right: 20px;
}

.audio-visual-controls .playlist .list-group {
    overflow-y: scroll;
    font-size: 0.8em;
}

.audio-visual-controls .playlist .panel-heading {
    line-height: 34px;
}

.audio-visual-controls .playlist .panel-heading a {
    text-decoration: none;
}

.audio-visual-controls .playlist .dropdown {
    display: inline-block;
}

.audio-visual-controls  .slider-selection {
    background: #B0EBFF;
}

.fullscreen-trigger {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    text-align: center;
    line-height: 50px;
    font-weight: bold;
}

div.hidden-gui {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    text-align: center;
    font-weight: bold;
    display: none;
}

body.hidden-gui .hidden-gui {
    display: block;
}

.hidden-gui .progress {
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, #ff7b00 0%,#ffff00 100%);;
}

.hidden-gui .controls {
    position: absolute;
    top: 10px;
    left: 0;
    width: 100%;
    text-align: center;
    color: #FFF;
}

.hidden-gui .controls a {
    color: #FFF;
    margin: 0 20px;
    text-decoration: none;
}

.loader {
    display: inline-block;
    text-indent: -9999em;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: linear-gradient(to right, #333333 10%, rgba(42,42,42, 0) 42%);
    position: relative;
    animation: load3 0.7s infinite linear;
    transform: translateZ(0);
}
.loader:before {
    width: 50%;
    height: 50%;
    background: #333333;
    border-radius: 100% 0 0 0;
    position: absolute;
    top: 0;
    left: 0;
    content: '';
}
.loader:after {
    background: #fff;
    width: 75%;
    height: 75%;
    border-radius: 50%;
    content: '';
    margin: auto;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
}
@-webkit-keyframes load3 {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
@keyframes load3 {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
