/* CSS Document */
body {
    font:12px arial;
    color: #222;
    padding:35px; margin: 0 }

form, p, span {
    margin:0;
    padding:0; }

input { font:12px arial; }

a {
    color:#0000FF;
    text-decoration:none; }

a:hover { text-decoration:underline; }

#wrapper, #loginform {
    margin:30px auto;
    text-align: center;
    padding-bottom:25px;
    display: block;
    position: relative;
    background-color: #333;
    border: 1px solid #222;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
    -webkit-box-shadow: inset 0 1px 0 rgba( 255, 255, 255, 0.15 ), 0 0 3px rgba( 0, 0, 0, 0.5 );
    -moz-box-shadow: inset 0 1px 0 rgba( 255, 255, 255, 0.15 ), 0 0 3px rgba( 0, 0, 0, 0.5 );
    box-shadow: inset 0 1px 0 rgba( 255, 255, 255, 0.15 ), 0 0 3px rgba( 0, 0, 0, 0.5 );
    background-image: -ms-linear-gradient(top, #444444 0%, #111111 100%);
    background-image: -moz-linear-gradient(top, #444444 0%, #111111 100%);
    background-image: -o-linear-gradient(top, #444444 0%, #111111 100%);
    background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #444444), color-stop(1, #111111));
    background-image: -webkit-linear-gradient(top, #444444 0%, #111111 100%);
    background-image: linear-gradient(to bottom, #444444 0%, #111111 100%);
    max-width: 510px;
    box-sizing: border-box;

}

.current-song {
    position: absolute;
    left: 124px;
    padding: 4px 12px;
    top: 46px;
    color: white;
    display: inline-block;
    width: calc(100% - 170px); /* the element needs a fixed width (in px, em, %, etc) */
    overflow: hidden; /* make sure it hides the content that overflows */
    white-space: nowrap; /* don't break the line */
    text-overflow: ellipsis; /* give the beautiful '...' effect */

}

@media screen and (max-width: 767px) {
    .current-song .info-label {
        display: none;
    }
}

#loginform { padding-top:18px; }

#loginform p { margin: 5px; }

#chatbox {
    text-align:left;
    margin:0 30px;
    margin-bottom:25px;
    padding:10px;
    background:#222;
    height:270px;
    max-width:100%;
    border:1px solid black;
    overflow:auto; color: white; }

#usermsg {
    max-width:100%;
    margin: 10px 10px 15px 0px;
    box-sizing: border-box;
    display: inline-block;
    }

#submit { width: 60px; }

.error { color: #ff0000; }

.amazingaudioplayer-tracklist {
    margin-bottom: 50px;
}

#menu { padding:12.5px 25px 12.5px 25px; }

.welcome { float:left; color: white; }

.logout { float:right; }
.logout a {
    color: rgba(255,255,255,0.5);
}
.msgln { margin:0 0 2px 0; }

.main-container {
    position: relative;
    margin: 12px auto 100px auto;
}

#cc_tunein {
    position: absolute;
    z-index: 1000000;
    bottom: -56px;
    right: 30px;
}

a.cc_streaminfo {
    color: white;
    font-weight: 400;
}

a.cc_streaminfo:hover, a.cc_streaminfo:focus {
    text-decoration: none;
}

.login-txt {
    color: white;
    margin-bottom: 5px;
}

input[type=submit] {
    background-color: white;
    border: 0px;
    cursor: pointer;
    display: inline-block;
    padding: 4px 20px;
    box-sizing: border-box;
}

@media screen and (max-width: 800px){
    #cc_tunein {
       bottom: -120px;
        right: auto;
    }

    .main-container {
        margin-bottom: 140px;
    }

    body {
        padding: 15px;
    }
}

input[type=submit]:hover,input[type=submit]:focus {
    background-color: #ccc;
}