#playerBeat {
    display: block;
    background: #f6f6f6;
    height: 100px;
    position: relative;
}

#playerBeat .container {
    margin-right: auto;
    margin-left: auto;
    padding-left: 15px;
    padding-right: 15px;
}
@media (min-width: 768px)  { #playerBeat .container { width: 750px; } }
@media (min-width: 992px)  { #playerBeat .container { width: 970px; } }
@media (min-width: 1200px) { 
    #playerBeat .container { width: 1320px; } 
    #playerBeat .statusStream { max-width: 380px; }
}

.containerAnimation {
    height: 100px;
    width: 100%;
    overflow: hidden;
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    opacity: 0.3;
    pointer-events: none;
}

.animation > div {
    border-radius: 50%;
    border: solid 1px var(--border3);
    left: 50%; top: 50%;
    display: block;
    position: absolute;
}
.animation > div:nth-child(1)  { width:  80px; height:  80px; margin-left:  -40px; margin-top:  -40px; }
.animation > div:nth-child(2)  { width: 100px; height: 100px; margin-left:  -50px; margin-top:  -50px; }
.animation > div:nth-child(3)  { width: 130px; height: 130px; margin-left:  -65px; margin-top:  -65px; }
.animation > div:nth-child(4)  { width: 170px; height: 170px; margin-left:  -85px; margin-top:  -85px; }
.animation > div:nth-child(5)  { width: 220px; height: 220px; margin-left: -110px; margin-top: -110px; }
.animation > div:nth-child(6)  { width: 290px; height: 290px; margin-left: -145px; margin-top: -145px; }
.animation > div:nth-child(7)  { width: 380px; height: 380px; margin-left: -190px; margin-top: -190px; }
.animation > div:nth-child(8)  { width: 500px; height: 500px; margin-left: -250px; margin-top: -250px; }
.animation > div:nth-child(9)  { width: 680px; height: 680px; margin-left: -340px; margin-top: -340px; }
.animation > div:nth-child(10) { width: 900px; height: 900px; margin-left: -450px; margin-top: -450px; }
.animation > div:nth-child(11) { width:1200px; height:1200px; margin-left: -600px; margin-top: -600px; }

.containerPlayer {
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    position: relative;
    padding: 0 20px;
    padding-right: calc(50% + 50px);
}

audio#fallplayer {
    position: absolute;
    width: 0; height: 0;
    overflow: hidden;
    pointer-events: none;
    opacity: 0;
}

#playerBeat .imgPlayerCapa {
    order: 1;
    flex-shrink: 0;
    width: 54px; height: 54px;
    min-width: 54px; min-height: 54px;
    border-radius: 50%;
    border: solid 3px var(--border3);
    background-size: cover;
    background-position: center;
    overflow: hidden;
    position: relative;
    z-index: 3;
    margin-left: 0;
    margin-right: -27px;
    box-shadow: 4px 0 12px rgba(0,0,0,0.14);
    transition: box-shadow 0.4s;
}

#playerBeat .imgPlayerCapa::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: radial-gradient(circle at 36% 30%, rgba(255,255,255,0.32), transparent 55%);
    pointer-events: none;
}

#playerBeat .imgPlayerCapa img { width: 100%; height: 100%; }

#playerBeat .statusStream {
    order: 2;
    flex: 1 1 0;
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
    background: #ffffff;
    border-radius: 999px;
    padding: 10px 16px 10px 35px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.10), 0 0 0 1px rgba(0,0,0,0.08);
    white-space: nowrap;
    position: relative;
    z-index: 2;
    color: var(--border3);
    font-size: 11px;
    font-family: "Montserrat", Arial, Helvetica, sans-serif;
}

#playerBeat .statusStream span { color: var(--border3); }
#playerBeat .statusStream span + span { color: #363636; opacity: 0.8; }

#playerBeat .statusStream span + marquee {
    max-width: calc(100% - 90px);
    float: right;
    margin-left: 6px;
    height: 14px;
    margin-bottom: -9px;
}

.statusStream marquee { font-family: "Montserrat", Arial, Helvetica, sans-serif !important; }

#playpause {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 70px; height: 70px;
    min-width: 70px; min-height: 70px;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
}

#playpause .icon {
    display: none;
    background: #ffffff;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

#playpause .icon i {
    font-size: 70px;
    color: var(--border3);
    transition: transform 0.2s ease-in-out, opacity 0.2s ease-in-out;
}

#playpause .iconPlaying {
    cursor: pointer;
    position: relative;
    display: block;
    z-index: 2;
    border-radius: 50%;
    width: 70px; height: 70px;
    line-height: 70px;
    text-align: center;
}

@media (hover: hover) and (pointer: fine) {
    #playpause .iconPlaying:hover {
        transform: scale(1.05);
        opacity: 0.88;
    }
}

#playpause .iconVolume {
    cursor: pointer;
    position: absolute;
    display: block;
    z-index: 2;
    border-radius: 50%;
    left: calc(100% + 14px);
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
}

#playpause .iconVolume i {
    font-size: 12px;
    color: white;
    display: block;
    background: var(--border3);
    border-radius: 50%;
    width: 30px; height: 30px;
    line-height: 30px;
    text-align: center;
}

#playerBeat .volumeContainer {
    position: absolute;
    left: calc(100% + 14px);
    top: calc(50% + 23px);
    z-index: 10;
    background: #ffffff;
    box-shadow: 0px 2px 5px rgba(0,0,0,0.1);
    border-radius: 5px;
    display: none;
    width: 28px;
    height: 100px;
    align-items: center;
    justify-content: center;
    overflow: visible;
}

#playerBeat #slider {
    -webkit-appearance: none;
    appearance: none;

    width: 80px;
    height: 8px;

    /* COR AJUSTADA: rgba(0,0,0,0.1) igual ao player2 */
    background: rgba(0,0,0,0.1);
    border-radius: 5px;
    outline: none;
    cursor: pointer;
    flex-shrink: 0;
    display: block;
    transform: rotate(-90deg);
    transform-origin: center center;
    margin: 0 auto;
    position: relative;
    top: 45px;
    left: -26px;
}

#playerBeat #slider::-webkit-slider-runnable-track {
    height: 8px;
    border-radius: 5px;
    background: transparent;
}

#playerBeat #slider::-moz-range-track {
    height: 8px;
    border-radius: 5px;
    /* COR AJUSTADA: rgba(0,0,0,0.1) igual ao player2 */
    background: rgba(0,0,0,0.1);
}

#playerBeat #slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--border3);
    border: solid 1px var(--border3);
    box-shadow: 1px 1px 0 rgba(0,0,0,0.1);
    cursor: pointer;
    margin-top: -4px;
}

#playerBeat #slider::-moz-range-thumb {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--border3);
    border: solid 1px var(--border3);
    box-shadow: 1px 1px 0 rgba(0,0,0,0.1);
    cursor: pointer;
}

.linksPlayrs {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex !important;
    align-items: center;
    position: absolute;
    left: calc(65% + 55px);
    top: 0;
    height: 100px;
    z-index: 4;
}

.linksPlayrs li { display: inline-block; position: relative; padding: 0 2px; }
.linksPlayrs li a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #ffffff;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    transition-duration: 0.3s;
    font-size: 21px;
    margin: 0;
}
.linksPlayrs li a:hover { opacity: 0.7; }
.linksPlayrs li a .helper { display: inline-block; height: 100%; vertical-align: middle; }
.linksPlayrs li a img { vertical-align: middle; opacity: 0.8; }
.linksPlayrs li a i { color: var(--border3); position: relative; top: 1px; line-height: 39px; }
.linksPlayrs li, .linksPlayrs { border-right: 0 !important; }

@media (min-width: 701px) and (max-width: 900px) {

    .linksPlayrs li a {
        width: 32px;
        height: 32px;
        font-size: 17px;
    }
}
@media (max-width: 701px) {
    .linksPlayrs {
        display: none !important;
    }
}

@media (min-width: 701px) and (max-width: 991px) {
    .hidden-sm { display: none !important; }
    .containerPlayer {
        justify-content: flex-end;
        padding-right: calc(50% + 45px);
    }
}

@media (max-width: 700px) {

    .animation > div {
        left: calc(100% - 41px);
    }

    #playerBeat .container {
        height: 100px;
        padding: 0;
        position: relative;
    }

    .containerPlayer {
        display: block;
        position: relative;
        height: 100px;
        padding: 0;
    }

    #playerBeat .imgPlayerCapa {
        position: absolute;
        left: 12px;
        top: 50%;
        transform: translateY(-50%);
        width: 44px; height: 44px;
        min-width: 44px; min-height: 44px;
        margin: 0;
        order: unset;
        z-index: 3;
    }

    #playerBeat .statusStream {
        position: absolute;
        left: 36px;
        right: 110px;
        top: 50%;
        transform: translateY(-50%);
        width: auto;
        max-width: none;
        min-width: 0;
        overflow: hidden;
        justify-content: flex-start;
        padding: 8px 14px 8px 22px;
        font-size: 11px;
        margin: 0;
        order: unset;
        flex: unset;
        z-index: 2;
    }

    #playpause {
        position: absolute !important;
        right: 12px;
        left: auto !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
        order: unset;
        width: 58px; height: 58px;
        min-width: 58px; min-height: 58px;
        margin: 0;
        z-index: 5;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    #playpause .iconPlaying { width: 58px; height: 58px; line-height: 58px; }
    #playpause .iconPlaying i { font-size: 58px; }

    #playpause .iconVolume {
        display: block !important;
        position: absolute;
        right: calc(100% + 8px);
        left: auto;
        top: 50%;
        transform: translateY(-50%);
        width: 24px; height: 24px;
    }

    #playpause .iconVolume i {
        font-size: 11px;
        width: 24px; height: 24px;
        line-height: 24px;
    }

    #playerBeat .volumeContainer {
        left: auto;
        right: calc(100% + 8px);
        top: calc(50% + 20px);
        bottom: auto;
    }
}

@media (max-width: 420px) {

    .animation > div {
        left: calc(100% - 34px);
    }

    #playerBeat .imgPlayerCapa {
        left: 8px;
        width: 40px; height: 40px;
        min-width: 40px; min-height: 40px;
    }
    
    #playerBeat .volumeContainer {
        right: calc(100% + 6px);
        top: calc(50% + 18px);
    }

    #playerBeat .statusStream {
        left: 30px;
        right: 98px;
        padding: 7px 12px 7px 20px;
        font-size: 10.5px;
    }

    #playpause {
        right: 8px !important;
        width: 52px; height: 52px;
        min-width: 52px; min-height: 52px;
    }

    #playpause .iconPlaying { width: 52px; height: 52px; line-height: 52px; }
    #playpause .iconPlaying i { font-size: 52px; }

    #playpause .iconVolume {
        right: calc(100% + 6px);
        width: 22px; height: 22px;
    }

    #playpause .iconVolume i {
        width: 22px; height: 22px;
        line-height: 22px;
        font-size: 10px;
    }
}

@media (max-width: 320px) {
    .animation > div { left: calc(100% - 34px); }
    #playerBeat .imgPlayerCapa { display: none !important; }
    #playerBeat .statusStream { left: 8px; right: 98px; }
}