@font-face {
    font-family: "ProximaNova-Black";
    src: url('../ProximaNova/proximanova-black-webfont.woff') format("opentype");
}

@font-face {
    font-family: "ProximaNova-Light";
    src: url('../ProximaNova/proximanova-light-webfont.woff') format("opentype");
}

@font-face {
    font-family: "ProximaNova-Bold";
    src: url('../ProximaNova/proximanova-bold-webfont.woff') format("opentype");
}

@font-face {
    font-family: "ProximaNova-Semibold";
    src: url('../ProximaNova/proximanova-semibold-webfont.woff') format("opentype");
}

@font-face {
    font-family: "ProximaNova-Medium";
    src: url('../ProximaNova/proximanova-medium-webfont.woff') format("opentype");
}

@font-face {
    font-family: "ProximaNova-Regular";
    src: url('../ProximaNova/proximanova-regular-webfont.woff') format("opentype");
}

html, body {
    margin: 0;
    height: 100%;
    color: white;
    background: rgb(99,102,169);
}

body {
    font-family: "ProximaNova-Light", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

h1,h2,h3,h4 {
    font-weight: 100;
    font-family: "ProximaNova-Semibold", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.standbyBackgroundContainer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: all 10s;
}

.standbyBackgroundContainer .standbyBackground {
    width: calc(100% + 30px);
    height: calc(100% + 30px);
    background-position: center;
    background-size: cover;
    background-image: url('/img/standby_background.jpg');
    background-repeat: no-repeat;
    opacity: 1;
    transition: all 1s;
}

.screenContainer .hide {
    opacity: 0;
}

.posterTrack {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 100%;
}

.posterTrack .cover {
    max-width: 60vw;
    max-height: 60vh;
}

.posterTrack .artist {
    font-family: "ProximaNova-Bold";
    font-size: 32px;
}

.posterTrack .title {
    font-family: "ProximaNova-Semibold";
    font-size: 26px;
}

.qrCodeContainer {
    position: fixed;
    right: 480px;
    top: 108px;
    transition: all 1s;
}

.qrCodeContainer.playing {
    position: fixed;
    right: 120px;
    top: 72px;
}

.screenContainer {
    width: 100%;
    height: 100%;
    background: rgb(0,66,37);
    -webkit-transition: all 1000ms linear;
    -ms-transition: all 1000ms linear;
    transition: all 1000ms linear;
}

.active {
    background-color: rgba(255,255,255,0.4);
}

.navContainer {
    padding: 10px;
    background-color: #2688c4;
    border-bottom: 2px solid black;
    margin-bottom: 12px;
}

.navContainer .nav-pills .nav-link {
    border: 1px solid black;
    margin-right: 12px;
    color: black;
}

.navContainer .nav-pills .nav-link.active {
    background-color: #DED852;
    color: black;
    border: 2px solid black;
}

.sideMenu {
    position: fixed;
    top: 50%;
    z-index: 199;
}

.sideMenu .sideButton {
    width: 60px;
    height: 60px;
    background-color: #eaeaea;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    color: black;
    font-size: 40px;
    text-align: center;
    display: flex;
    padding: 10px;
}

.player {
    z-index: 200;
    position: fixed;
    top: 5%;
    height: 90%;
    width: 350px;
    background-color: #eaeaea;
    border-radius: 0 6px 6px 0;
    box-shadow: 5px 5px 4px 0 rgba(0,0,0,0.4) ;
    display: flex;
    flex-direction: column;
    left: -360px;
    transition: all 1s;
}

.player.showing {
    left: 0;
}

.player .playlist {
    flex: 1;
    overflow: auto;
    color: black;
    margin: 6px;
}

.player .playlist .loading {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}


.player .playlist .artist {
    font-size: 13px;
    font-weight: bold;
    padding-left: 4px;
    cursor: pointer;
}

.player .playlist .title, .player .playlist .contributor {
    font-size: 12px;
    padding-left: 4px;
    cursor: pointer;
}

.player .controls {
    display: flex;
    align-items: center;
    justify-content: center;
}

.player .trackInfo {
    display: flex;
    color: black;
}

.player .trackInfo .artist {
    font-weight: bold;
    font-size: 18px;
}

.player .trackInfo .title {
    font-size: 16px;
}

.player .controls button {
    flex: 1
}

.warning {
    display: flex;
    flex-direction: row;
    background-color: lightyellow;
    color: black;
    margin: 24px 6px;
    padding: 12px;
    border-radius: 4px;
}

.currentPlaylistInfo {
    max-width: 600px;

}

.currentPlaylistInfo .content {
    margin-left: 12px;
}

.currentPlaylistInfo .content .title {
    font-size: 24px;
    font-weight: bold;
}

.playlistCard {
    display: flex;
    flex-direction: row;
    background-color: #eaeaea;
    color: black;
    border-radius: 6px;
    box-shadow: 5px 5px 4px 0 rgba(0,0,0,0.4) ;
    max-width: 400px;
    margin: 12px;
    overflow: hidden;
}

.playlistCard .content {
    padding: 12px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.playlistCard .content .title {
    font-size: 24px;
    font-weight: bold;
    flex: 1;
}

.playlistCard .content .actions {
    text-align: right;
}

.trackCard {
    display: flex;
    flex-direction: row;
    background-color: #eaeaea;
    color: black;
    border-radius: 6px;
    box-shadow: 5px 5px 4px 0 rgba(0,0,0,0.4) ;
    max-width: 400px;
    margin: 12px;
    overflow: hidden;
}

.trackCard .content {
    padding: 12px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.trackCard .content .artist {
    font-size: 24px;
    font-weight: bold;
}

.trackCard .content .title {
    font-size: 18px;
}

.trackCard .content .contributedBy {
    font-size: 12px;
    flex: 1;
    text-align: right;
}

.trackCard .content .actions {
    text-align: right;
}

.screenContainer .playlistInfo {
    position: absolute;
    left: 120px;
    top: 72px;
}

.screenContainer .playlistInfo .title {
    font-size: 16px;
    font-weight: bold;
}

.playerList a {
    color: white;
}