/*
    AUTHOR: Sam Johnson
    MINIMusic Player
*/
/* HTML5 Audio player with playlist styles */
.example,
.example2,
.example3 {
    width: 100%;
}

.player {
    background: var(--cor-primaria);
    height: 220px;
    position: relative;
    width: 100%;
    z-index: 2;
    display: table;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    padding-bottom: 25px;
}
.title,
.artist {
    margin-left: 10px;
    position: relative;
    display: table;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
}
.title {
    font-family: var(--fontSubConteudo);
    color: #ffffff;
    font-size: 20px;
    font-weight: bold;
    margin: 0 auto;
    margin-top: 10px;
    width: 95%;
    text-align: justify;
}
.artist {
    font-family: var(--fontLightItalic);
    color: #eeeeee;
    font-size: 14px;
    margin: 0 auto;
    margin-top: 10px;
    width: 95%;
    text-align: justify;
}
.pl {
    background: url(../images/playlist.png) no-repeat;
    cursor: pointer;
    height: 25px;
    margin-left: 10px;
    position: absolute;
    bottom: 10px;
    width: 25px;
    display: table;
    right: 10px;
    background-size: 25px;
}

.cover {
    border-radius: 5px 5px 5px 5px;
    height: 94px;
    margin-left: 20px;
    position: absolute;
    margin-top: 30px;
    width: 94px;
}
.controls {
    cursor: pointer;
    position: relative;
    display: table;
    margin: 0 auto;
    width: auto;
}
.controls .play,
.controls .pause {
    width: 60px;
    height: 60px;
    margin: 0 5px 0px 5px;
}
.controls .play,
.controls .pause,
.controls .rew,
.controls .fwd,
.controls .stop {
    text-indent: -10000px;
    border: none;
    float: left;
}
.controls .rew,
.controls .fwd,
.controls .stop {
    width: 35px;
    height: 35px;
    margin: 15px;
}
.controls .play {
    background: url(../images/play.png) no-repeat;
}
.controls .pause {
    background: url(../images/pause.png) no-repeat;
    display: none;
}
.controls .rew {
    background: url(../images/prev.png) no-repeat;
}
.controls .fwd {
    background: url(../images/next.png) no-repeat;
}
.controls .stop {
    background: url(../images/stop.png) no-repeat;
}
.hidden {
    display: none;
}
.controls .visible {
    display: block;
}
.volume {
    margin: 0 auto;
    height: 11px;
    position: relative;
    top: 15px;
    width: 95%;
    display: table;
}
.mute .volume-btn {
    background: url(../images/volume-off.png) no-repeat;
}
.volume-btn {
    background: url(../images/volume-up.png) no-repeat;
    height: 20px;
    width: 20px;
    float: left;
    position: relative;
    top: -4px;
    margin-right: 10px;
}
.volume-adjust {
    height: 11px;
    position: relative;
    width: 140px;
    background: #fff;
    float: left;
}
.volume-adjust > div > div {
    height: 11px;
    background: #151b48;
}
.progressbar {
    background-color: #fff;
    cursor: pointer;
    z-index: 1;
    height: 15px;
    left: 0px;
    position: relative;
    width: 95%;
    top: 10px;
    margin: 0 auto;
}
.novolume .progressbar {
    right: 4.375em; /* 70 */
}
.progressbar div {
    width: 0%;
    height: 15px;
    position: absolute;
    left: 0;
    top: 0;
}
.bar-loaded {
    background-color: #f1f1f1;
    z-index: 1;
}
.bar-played {
    background: #151b48;
    z-index: 2;
}
.timeHolder {
    color: #ffffff;
    font-size: 14px;
    font-weight: bold;
    position: relative;
    margin: 0 auto;
    width: 95%;
    margin-top: 10px;
    display: table;
}
.time-current,
.time-duration,
.time-separator {
    color: #ffffff;
    font-size: 14px;
    font-weight: bold;
    float: left;
}
.volume .ui-slider-handle {
    background: url("../images/spr.png") no-repeat scroll -201px -188px
        rgba(0, 0, 0, 0);
    height: 13px;
    width: 13px;
}
.playlist {
    background-color: #fff;
    list-style-type: none;
    padding-bottom: 10px;
    padding-top: 15px;
    position: relative;
    width: 100%;
    z-index: 1;
    margin: 0px auto;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    border: 1px solid var(--cor-primaria);
    border-top: none;
}
.playlist li,
.playlist div {
    color: #151b48;
    cursor: pointer;
    margin: 0 15px;
    font-family: var(--fontSubConteudo);
}
.playlist li > a,
.playlist div > a {
    color: #151b48;
    text-decoration: none;
}
.playlist li.active-list,
.playlist div.active-list {
    font-weight: bold;
    font-family: var(--fontLightItalic);
}
.slick-dots {
    bottom: 5px !important;
}
.slick-dots li button:before {
    font-size: 8px !important;
}
