.pos-plAud{
    font-family: 'Roboto';
    float: left;
    width: 100%;
    margin: 20px 0;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}
.plAud-player{
    position: relative;
    float: left;
    width: 90%;
    padding: 10px 5% 15px 5%;
    overflow: hidden;
    background: rgba(0,0,0,0.01);
    border-radius: 5px;
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, .05);
    -webkit-box-shadow: inset 0 0 0 1px rgba(0, 0, 0, .05);
    -moz-box-shadow: inset 0 0 0 1px rgba(0,0,0,.05);
    -o-box-shadow: inset 0 0 0 1px rgba(0,0,0,.05);
}
.plAud-ic-play-pause{
    float: left;
    font-size: 20px;
    color: #000;
    cursor: pointer;
}
.plAud-icon-load{
    animation-name: grAud;
    animation-duration: 2s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    -webkit-animation-name: grAud;
    -webkit-animation-duration: 2s;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
}
@-webkit-keyframes grAud {
    from {
        -ms-transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    to {
        -ms-transform: rotate(360deg);
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
.plAud-tt-ouca{
    float: left;
    margin-top: 2px;
    margin-left: 20px;
    font-size: 14px;
    font-weight: 500;
    color: #333333;
}
.plAud-desc-cont {
    float: left;
    margin-top: -2px;
    width: 70%;
    margin-left: 10px;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    height: 20px;
}
.plAud-desc-cont span {
    position: absolute;
    top: 5px;
    left: 100%;
    font-size: 13px;
    font-weight: 300;
    color: #000;
    white-space: nowrap;
}
@keyframes plAudmarquee {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}
.plAud-progress {
    -webkit-appearance: none;
    position: absolute;
    width: 100%;
    bottom: 0;
    left: 0;
    height: 5px;
    background: #f0f0f0;
    border: none;
    border-radius: 0;
    cursor: pointer;
    overflow: hidden;
}
.plAud-progress::-webkit-slider-runnable-track {
    height: 5px;
    background: #f0f0f0;
}
.plAud-progress::-moz-range-progress {
    background: rgba(var(--plaud-cor),0.3);
    height: 5px;
}
.plAud-progress::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 0;
    height: 5px;
    background: rgba(var(--plaud-cor),0.3);
    box-shadow: -1000px 0 0 1000px rgba(var(--plaud-cor),0.3);
    border: none;
}
.plAud-progress::-moz-range-thumb {
    width: 0;
    height: 5px;
    border: none;
    background: transparent;
}
.plAud-velocidade{
    float: right;
    margin-top: 2px;
    padding: 2px 5px;
    border-radius: 4px;
    background: rgba(0,0,0,0.1);
    color: #000;
    font-size: 12px;
    font-weight: 300;
    cursor: pointer;
}
.plAud-pos-volume{
    position: absolute;
    right: 140px;
    padding: 8px 20px;
    border-radius: 10px;
    background: #dbdbdb;
    display: none;
}
.plAud-icon-volume{
    float: right;
    margin-top: 2px;
    margin-right: 20px;
    font-size: 18px;
    cursor: pointer;
    color: #333;
}
.plAud-volume {
    float: left;
    -webkit-appearance: none;
    width: 100px;
    height: 6px;
    background: #a1a1a1;
    border-radius: 3px;
    outline: none;
    cursor: pointer;
}
.plAud-volume::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 14px;
  height: 14px;
  background: #000;
  border-radius: 50%;
  cursor: pointer;
}
.plAud-volume::-moz-range-thumb {
  width: 14px;
  height: 14px;
  background: #000;
  border-radius: 50%;
  cursor: pointer;
}
.plAud-volume::-moz-range-track {
  background: #000;
  height: 6px;
  border-radius: 3px;
}
@media (max-width: 800px){
    .plAud-icon-volume{
        display: none;
    }
}
@media (max-width: 600px){
    .plAud-desc-cont{
        width: 55%;
    }
}