/* iTunes Playlist */
@font-face {
    font-family: 'icons';
    src: url('fonts/icons.eot?4e4go5');
    src: url('fonts/icons.eot?4e4go5#iefix') format('embedded-opentype'), url('fonts/icons.ttf?4e4go5') format('truetype'), url('fonts/icons.woff?4e4go5') format('woff'), url('fonts/icons.svg?4e4go5#icons') format('svg');
    font-weight: normal;
    font-style: normal;
}
#audioplayer {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.pButton {
    height: 1.5em;
    width: 1.5em;
    border: none;
    float: left;
    outline: none;
    font-size: 1.5em;
    line-height: 1em;
}

.pButton:after {
    font-family: 'icons' !important;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    /* Better Font Rendering =========== */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: #a90000;
}

.play:after {
    content: "\e037";
}

.pause:after {
    content: "";
    background-image: url(fonts/pause_icon_white.png);
}

#timeline {
    width: 400px;
    height: 2px;
    margin-top: 1em;
    float: left;
    border-radius: 15px;
    background: rgba(0, 0, 0, .1);
}

#playhead {
    width: 10px;
    height: 10px;
    border-radius: 100%;
    margin-top: -4px;
    background: rgba(169, 0, 0, 1);
}

#playlistItems {
    width: 100%;
    border: 1px solid rgba(0, 0, 0, 0.1);
    margin: 1em 0;
    border-radius: 4px;
    overflow: hidden;
}

#playlist-wrapper-heading h3 {
    text-align: center;
    margin: 0 0 1rem 0;
    padding: 1rem;
    background: rgb(36,153,208);
    background: -o-linear-gradient(45deg, rgba(36,153,208,1) 0%,rgba(13,77,128,1) 70%);
    background: linear-gradient(45deg, rgba(36,153,208,1) 0%,rgba(13,77,128,1) 70%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#2499d0', endColorstr='#0d4d80',GradientType=1 );
    color: #fff;
    display: block;
    /*font-size: 1.5em;*/
    overflow: hidden;
    position: relative;
}
.playlist {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
}

.playlist-item {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 16.66666%;
    flex: 0 0 16.66666%;
    -webkit-flex: 0 0 16.66666%;
    max-width: 16.66666%;
    padding: 0.5em;
    cursor: pointer;
    opacity: 0;
    transition: all .75s ease;
    -webkit-transition: all .75s ease;
    -moz-transition: all .75s ease;
    -ms-transition: all .75s ease;
    -o-transition: all .75s ease;
}
#playlistItems.show .playlist-item {
    opacity: 1;
}
@media screen and (max-width:960px) {
    .playlist-item {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 20%;
        flex: 0 0 20%;
        max-width: 20%;
    }
}

@media screen and (max-width:767px) {
    .playlist-item {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
        max-width: 25%;
    }
}

@media screen and (max-width:640px) {
    .playlist-item {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 33.333332%;
        flex: 0 0 33.333332%;
        max-width: 33.333332%;
    }
}

@media screen and (max-width:480px) {
    .playlist-item {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }
}

.track {
    text-align: center;
}

.hp_slide {
    width: 100%;
    background: rgba(0, 0, 0, 0.15);
    height: 3px;
    position: absolute;
    bottom: -0.5em;
    left: 0;
    opacity: 0;
    -webkit-transition: opacity .3s ease;
    -o-transition: opacity .3s ease;
    transition: opacity .3s ease;
}

.playing .hp_slide {
    opacity: 1;
}

.hp_range {
    width: 0;
    background: #a90000;
    height: 3px;
}

.playlist .track-title {
    font-size: 0.825em;
    line-height: 1em;
    color: #003c74;
    text-transform: uppercase;
    font-weight: 600;
    font-style: italic;
}

.playlist .artist {
    font-size: 0.75em;
    line-height: 1em;
}

.album-cover {
    -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
    margin-bottom: 0.75em;
    /*border: 3px solid #fff;*/
    border-radius: 6px;
    position: relative;
}

.artwork {
    width: 100%;
    padding-bottom: 100%;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: cover;
    position: relative;
    border-radius: 6px;
}

.artwork:after {
    font-family: 'icons' !important;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "\e037";
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 2;
    color: #003c74;
    font-size: 2em;
    height: 1.25em;
    width: 1.25em;
    line-height: 1.25em;
    text-align: center;
    margin: -0.625em 0 0 -0.625em;
    border-radius: 100%;
    background: rgba(255, 255, 255, 0.5);
}

.playing .artwork:after {
    /*content: "\e034";*/
    content: '';
    background-image: url(fonts/pause_icon_red.png);
    background-size: 50%;
    background-repeat: no-repeat;
    background-position: center;
    color: #a90000;
}

.pollForm {
    width: 100%;
    padding: 0 1em;
}

#playlistPoll form ul.ss-choices {
    list-style: none;
    margin: 1em 0;
    padding: 0;
    -webkit-column-count: 3;
    -moz-column-count: 3;
         column-count: 3;
}

@media screen and (max-width:860px) {
    #playlistPoll form ul.ss-choices {
        list-style: none;
        margin: 1em 0;
        padding: 0;
        -webkit-column-count: 2;
        -moz-column-count: 2;
             column-count: 2;
    }
}

@media screen and (max-width:480px) {
    #playlistPoll form ul.ss-choices {
        list-style: none;
        margin: 1em 0;
        padding: 0;
        -webkit-column-count: 1;
        -moz-column-count: 1;
             column-count: 1;
    }
}

input[type=radio] {
    height: 1em;
    width: 1em;
    border-radius: 50%;
    display: none;
}

.radio {
    font-size: 1em;
    line-height: 1.4em;
    padding-bottom: 10px;
}

.radio span {
    position: relative;
    padding-left: 1.5em;
    display: block;
    color: #003c74;
    text-transform: uppercase;
    font-weight: 600;
    font-style: italic;
    font-size: 0.825em;
}

.radio:hover {
    cursor: pointer;
}
.radio span:before {
    font-family: 'icons';
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "\ea56";
    color: #999;
    display: block;
    height: 1rem;
    width: 1rem;
    text-align: center;
    position: absolute;
    left: 0;
    top: 50%;
    margin-top: -0.5rem;
    font-size: 1rem
}
.radio input[type=radio]:checked+span:before {
    content: "\e837";
    content: "\ea54";
    color: #003b74;
}
#playlistPoll form ul.ss-choices li {
    margin-bottom: 0.5rem;
}
#playlistPoll form.submitted {
    visibility: hidden;
}
.poll-error {
    color: #F44336;
    font-size: 0.725em;
    display: none;
}
.error .poll-error {
    display: block;
}
.poll-element {
    margin: 0 auto;
    padding: 1em 0;
    width: 100%;
    /*max-width: 40em;*/
}
.center-text {
    text-align: center;
}
.poll-submit {
    max-width: 200px;
    cursor: pointer;
    -webkit-appearance: none;
    border-radius: 0;
    border: none;
    padding: 0.75em 1em;
    width: 100%;
    margin: 0 auto;
    background: #003b74;
    color: #fff;
    display: block;
    float: none;
    -webkit-transition: background .25s ease;
    -o-transition: background .25s ease;
    transition: background .25s ease;
    text-transform: uppercase;
    text-align: center;
    min-width: 160px;
    white-space: nowrap;
    font-family: 'Source Sans Pro', sans-serif;
    font-weight: 700;
}

.poll-submit:hover,
.poll-submit:focus {
    outline: none;
}
.poll-results p {
    margin: 0.5rem 0;
    font-size: 0.825em;
    line-height: 1em;
    color: #a90000;
    text-transform: uppercase;
    font-weight: 600;
    font-style: italic;
}
.poll-results p span {
    display: inline-block;
    width: 1.5em;
    color: #a90000;
    text-align: right;
    padding-right: 1em;
}
.results {
    margin-bottom: 0.5em;
    padding-bottom: 0.5em;
    border-bottom: 1px solid #eee;
}
.meter {
    height: 5px;
    width: 0;
    position: relative;
    transition: all 0.75s linear;
    -webkit-transition: all 0.75s linear;
    -moz-transition: all 0.75s linear;
    -ms-transition: all 0.75s linear;
    -o-transition: all 0.75s linear;
}
.meter span {
    display: block;
    height: 8px;
    width: 25px;
    position: absolute;
    top: 0;
    right: -30px;
    line-height: 8px;
    font-size: 0.825em;
}
.meter {
    background: #003c74;
}
.poll-results-wrapper p.total-votes {
    text-align: right;
    color: #677786;
    font-weight: 400;
}
.poll-results-wrapper h3 {
    margin-bottom: 1em;
}

ul.poll-results {
    -webkit-column-count: 3;
       -moz-column-count: 3;
            column-count: 3;
}
.poll-results li {
    -webkit-column-break-inside: avoid;
    page-break-inside: avoid;
    -moz-column-break-inside: avoid;
    break-inside: avoid;
}
@media screen and (max-width:767px){
    ul.poll-results {
        -webkit-column-count: 2;
           -moz-column-count: 2;
                column-count: 2;
    }
}
@media screen and (max-width:480px){
    ul.poll-results {
        -webkit-column-count: 1;
           -moz-column-count: 1;
                column-count: 1;
    }
}