.stations_tile {
    background-size: contain;
    border: 1px solid #999;
    cursor: pointer;
}

#all_stations {
    display:block;
}

#AddStation span {
    font-size:50px;position:relative;top:-6px;
}

#background {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    background-position: center;
    filter: grayscale(100%);
    opacity: 0.20;
    z-index: 0;
    }

#radio_player {
    width:90%;
    max-width:450px;
    height:450px;
    border: 2px solid black;
    border-radius:13px;
    text-align:center;
    position:relative;
    overflow: hidden;
    margin: 20px auto;
}

.unselectable {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

#trackinfo {
    z-index:1;
    position:relative;
    clear:both;
    margin:0 20px 20px 20px;
    font-size:18px;
    text-align:center;
    background: transparent;
}

#radio_player img {
    width:300px;
    height:300px;
    margin:20px auto;
    position:relative;
    border: 1px solid #999;
    cursor:pointer;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
    z-index:1;
}

#radio_player audio {
    display:none;
}

#tracklist {
    width:90%;
    max-width:450px;
    height:450px;
    margin: 20px 0 0 20px;
    overflow-y:auto;
    }

#playlistDisplay .trackdiv {
    cursor: pointer;
    }

#playlistDisplay .trackdiv.active {
    background-color: #d0ebff;
    font-weight: bold;
    color: #004080;
    }

.trackdiv {
    width:calc(90% - 10px);
    max-width:440px;
    height:80px;
    border: 2px solid black;
    border-radius:8px;
    position:relative;
    padding:5px;
    margin: 5px auto;
}

.trackdiv img {
    width: 80px;
    height:80px;
    float:left;
    margin-right: 10px;
}

.BGblack {background:#000;}