/*variaveis*/
:root {
    /* --main-color: #ffab05 */
}

@font-face {
    font-family: 'Panton-Regular';
    src: url('../assets/fontes/panton-w01-regular.woff2') format('woff2'),
        url('../assets/fontes/panton-w01-regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

* {
    font-family: open sans, sans-serif;
    -webkit-font-smoothing: antialiased;
}

body {
    margin: 0;
}

#speed-ctrl {
    color: var(--main-color)
}

.div-main {
    height: 100%;
    width: 100%;
    background-color: #5bbe47;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.div1 {
    width: 66%;
    height: 200px;
    background-color: aqua;
}

/*teste*/

/* Start Dialogs */
.overlay {
    width: 100%;
    height: auto;

    padding: 5px 0;

    position: absolute;

    background-color: rgba(0, 0, 0, 0.7);

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    color: var(--main-color);
    z-index: 1;
}

.overlay h2 {
    margin: 5px 0;
    font-size: 1em;
}

.overlay.hide {
    display: none;
}

.overlay.dialog {
    display: flex;
    flex-direction: column;

    justify-content: space-evenly;
    align-items: center;
}

.overlay.dialog.hide {
    display: none;
}

.overlay.dialog .close-btn {
    position: absolute;
    right: 0;
    top: 0;

    width: 50px;
    fill: var(--text-color);
}

.overlay.dialog .close-btn svg {
    fill: var(--main-color);
}

.overlay.dialog .btns {
    display: flex;
}

.overlay.dialog .btns a {
    margin: 0 5px;

    filter: opacity(0.5);
}

.overlay.dialog .btns a.active {
    margin: 0 5px;

    filter: none;

    cursor: pointer;
}

.overlay.dialog .btns a img {
    width: 45px;
    height: 45px;
}

.overlay.dialog form {
    margin: 10px 0;
    width: 100%;

    display: flex;
    justify-content: center;
    align-items: center;
}

.overlay.dialog form input {
    width: 55%;
    color: black;
    margin-left: 20px;
    height: 20px;
    padding: 2px 2px 2px 10px;
    border: 0;
    outline: none;

    border-radius: 5px 0 0 5px;
}

.overlay.dialog form button {
    width: 35%;
    margin-right: 20px;
    height: 24px;
    cursor: pointer;
    border: 0px;
    background-color: var(--main-color);
    color: white;

    border-radius: 0 5px 5px 0;
}

/* End Dialogs */

.container-wrap {
    margin: 8px 0;
    font-family: open sans, sans-serif;
    color: #333;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale
}

.container-wrap .bp-logo {
    display: flex;
    justify-content: center;
}

.container-wrap .bp-logo img {
    width: 95px;
    height: auto;
}

.actions {
    display: flex;
    align-items: center;
    margin-right: 9px;
}

.actions .share svg {
    width: 24px;
    margin-right: 5px;
}

.actions button {
    width: 30px;
    height: 30px;
}

.actions svg {
    fill: var(--main-color);
    width: 26px;
    height: 26px;
}

button {
    padding: 0;
    border: 0;
    background: 0 0;
    cursor: pointer
}

.aud-d-none {
    display: none !important
}

.logo-audima {
    background: url(img/535308d8f2af97fc03b61ad2de3c26b7.png) no-repeat;
    width: 62px;
    height: 14px
}

.logo-audima:hover {
    background: url(img/bd7115abde60e93d8d601f96242121f3.png) no-repeat
}

.div-play {
    background: url('') no-repeat;
    background-position: center;
    outline: none
}

.div-play:hover {
    background: url('') no-repeat;
    background-position: center
}

.div-pause {
    background: url('') no-repeat;
    background-position: center
}

.div-pause:hover {
    background: url('') no-repeat;
    background-position: center
}

.screen-reader-text-btn {
    visibility: hidden
}

.audima-play-widget {
    height: 70px;
    width: 40px
}

.timeline_wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%
}

.timeline_wrap .progress-bar-wrapper {
    position: relative;
    width: 100%;
    cursor: pointer
}

.timeline_wrap .progress-bar-wrapper .progress-bar-pointer {
    border: none;
}

.timeline_wrap .line_played {
    width: 0;
    -webkit-transition: width .1s;
    -moz-transition: width .1s;
    -ms-transition: width .1s;
    -o-transition: width .1s;
    transition: width .1s;
    position: absolute;
    top: 4px;
    height: 3px;
    background-color: var(--main-color)
}

/* range init*/

input[type=range].styled-slider {
    height: 2.2em;
    -webkit-appearance: none;
}

/*progress support*/
input[type=range].styled-slider.slider-progress {
    --range: calc(var(--max) - var(--min));
    --ratio: calc((var(--value) - var(--min)) / var(--range));
    --sx: calc(0.5 * 1.2em + var(--ratio) * (100% - 1.2em));
}

/*webkit*/
input[type=range].styled-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 0.8em;
    height: 0.8em;
    border-radius: 1em;
    background: var(--main-color);
    border: none;
    box-shadow: 0 0 2px black;
    margin-top: calc(max((0.5em - 1px - 1px) * 0.5, 0px) - 0.8em * 0.5);
}

input[type=range].styled-slider::-webkit-slider-runnable-track {
    height: 0.5em;
    border: 1px solid #b2b2b2;
    border-radius: 0.5em;
    background: lightgray;
    box-shadow: none;
}

input[type=range].styled-slider.slider-progress::-webkit-slider-runnable-track {
    background: linear-gradient(var(--main-color), var(--main-color)) 0/var(--sx) 100% no-repeat, lightgray;
}

/*mozilla*/
input[type=range].styled-slider::-moz-range-thumb {
    width: 0.8em;
    height: 0.8em;
    border-radius: 1em;
    background: var(--main-color);
    border: none;
    box-shadow: 0 0 2px black;
}

input[type=range].styled-slider::-moz-range-track {
    height: max(calc(0.5em - 1px - 1px), 0px);
    border: 1px solid #b2b2b2;
    border-radius: 0.5em;
    background: lightgray;
    box-shadow: none;
}

input[type=range].styled-slider.slider-progress::-moz-range-track {
    background: linear-gradient(var(--main-color), var(--main-color)) 0/var(--sx) 100% no-repeat, lightgray;
}

/*ms*/
input[type=range].styled-slider::-ms-fill-upper {
    background: transparent;
    border-color: transparent;
}

input[type=range].styled-slider::-ms-fill-lower {
    background: transparent;
    border-color: transparent;
}

input[type=range].styled-slider::-ms-thumb {
    width: 0.8em;
    height: 0.8em;
    border-radius: 1em;
    background: var(--main-color);
    border: none;
    box-shadow: 0 0 2px black;
    margin-top: 0;
    box-sizing: border-box;
}

input[type=range].styled-slider::-ms-track {
    height: 0.5em;
    border-radius: 0.5em;
    background: lightgray;
    border: 1px solid #b2b2b2;
    box-shadow: none;
    box-sizing: border-box;
}

input[type=range].styled-slider.slider-progress::-ms-fill-lower {
    height: max(calc(0.5em - 1px - 1px), 0px);
    border-radius: 0.5em 0 0 0.5em;
    margin: -1px 0 -1px -1px;
    background: var(--main-color);
    border: 1px solid #b2b2b2;
    border-right-width: 0;
}

/* range init*/


.timeline_wrap .progress-bar-pointer.progress-bar-pointer_up {
    background: #00b2fa
}

.timeline_wrap .full_line {
    position: absolute;
    top: 4px;
    width: 100%;
    height: 3px;
    -webkit-transition: background-color .2s ease-in-out;
    transition: background-color .2s ease-in-out;
    background-color: #d3d3d3
}

.timeline_wrap .progress-bar-pointer {
    position: absolute;
    top: 0;
    right: -1px;
    width: 0;
    height: 0;
    -webkit-transition: all .1s ease-in-out;
    transition: all .1s ease-in-out;
    border-radius: 50%;
    background: #fff
}

#playPause .img-play {
    width: 28px;
    fill: var(--main-color);
}

button:focus {
    outline: none
}

:focus {
    outline: none !important
}

.i-amphtml-layout-size-defined {
    height: 60px
}

.container-wrap {
    width: 100%;
    white-space: nowrap !important;
    font-weight: 300
}

.content-player {
    display: flex;
    width: 100%;
    margin: 0 auto;
    border-top: 1px solid #ececec;
    border-left: 1px solid #ececec;
    border-right: 1px solid #787878;
    border-bottom: 1px solid #787878;
    background: #fbfbfb;
    border-radius: 4px;
    align-items: center;
    height: 34px;
    box-sizing: border-box;
    color: #000
}

@media(max-width:768px) {
    .content-player {
        width: 100%
    }
}

.content-player .play-pause-btn {
    display: flex;
    cursor: pointer;
    background: #fff;
    height: 32px;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px
}

.content-player .play-pause-btn button#playPause {
    border: 0;
    background: 0 0
}

.content-player #playPause {
    padding: 0 13px
}

@media(min-width:414px) {
    .content-player #playPause:hover i.fa {
        color: #56b7b5
    }
}

/*.content-player #playPause i.fa{
    font-size:15px;
    color:#70706f
}*/
.content-player .aud-content {
    display: flex;
    align-items: center;
    position: relative;
    justify-content: flex-end;
    height: inherit;
    width: 100%
}

@media(max-width:375px) {
    .content-player .aud-content {
        justify-content: flex-end
    }
}

@media(max-width:414px) {
    .content-player .aud-content {
        justify-content: flex-end
    }
}

@media(max-width:360px) {
    .content-player .aud-content {
        justify-content: flex-end
    }
}

.tittle-audio {
    overflow: hidden;
}

.content-player .aud-content .aud-title {
    padding: 0 10px;
    display: inherit;
    color: #55606E;
    font-size: 12px;
    width: 70%;
    -webkit-transition: width 1s;
    -moz-transition: width 1s;
    -ms-transition: width 1s;
    -o-transition: width 1s;
    transition: width 1s
}

@media(max-width:320px) {
    .content-player .aud-content .aud-title {
        width: 80% !important
    }
}

.content-player .aud-content .aud-title.reduce {
    width: 30% !important
}

@media(max-width:375px) {
    .content-player .aud-content .aud-title.reduce {
        display: none
    }
}

@media(max-width:414px) {
    .content-player .aud-content .aud-title.reduce {
        display: none
    }
}

@media(max-width:360px) {
    .content-player .aud-content .aud-title.reduce {
        display: none
    }
}

.content-player .aud-content span.total_time,
.content-player .aud-content .current_time {
    font-size: 12px;
    color: #55606E
}

.content-player .aud-content .timeline_wrap {
    width: 30%;
    transition: width 1s;
    -webkit-transition: width 1s;
    margin-left: 15px;
    margin-right: 15px
}

@media(max-width:375px) {
    .content-player .aud-content .timeline_wrap {
        margin-left: 2px;
        margin-right: 2px
    }
}

@media(max-width:414px) {
    .content-player .aud-content .timeline_wrap {
        margin-left: 2px;
        margin-right: 2px
    }
}

@media(max-width:360px) {
    .content-player .aud-content .timeline_wrap {
        margin-left: 2px;
        margin-right: 2px
    }
}

@media(max-width:320px) {
    .content-player .aud-content .timeline_wrap {
        width: 25px !important
    }
}

.content-player .aud-content .timeline_wrap .progress-bar-wrapper .progress-bar-pointer {
    top: -4px;
    right: -7px;
    width: 9px;
    height: 9px;
    border: 1px solid var(--main-color);
    background: var(--main-color)
}

.content-player .aud-content .timeline_wrap.grow {
    width: 62%
}

@media(max-width:375px) {
    .content-player .aud-content .timeline_wrap.grow {
        width: 40% !important
    }
}

@media(max-width:414px) {
    .content-player .aud-content .timeline_wrap.grow {
        width: 40% !important
    }
}

@media(max-width:360px) {
    .content-player .aud-content .timeline_wrap.grow {
        width: 30% !important
    }
}

@media(max-width:320px) {
    .content-player .aud-content .timeline_wrap.grow {
        width: 25px !important
    }
}

.content-player .logo-audima {
    margin: 0 10px 0 5px;
    width: 31px !important;
    height: 7px !important;
    background-size: 31px
}

@media(max-width:375px) {
    .content-player .logo-audima {
        width: 30px !important;
        height: 7px !important;
        background-size: 30px
    }
}

@media(max-width:414px) {
    .content-player .logo-audima {
        width: 30px !important;
        height: 7px !important;
        background-size: 30px
    }
}

@media(max-width:360px) {
    .content-player .logo-audima {
        width: 30px !important;
        height: 7px !important;
        background-size: 30px
    }
}

.content-player .hidden-menu-controls {
    padding: 1px 15px 0 15px;
    box-sizing: border-box;
    background: #fbfbfb;
    border-top: 1px solid #ececec;
    border-bottom: 1px solid #787878;
    display: flex;
    width: 175px;
    top: 0;
    left: 0;
    position: absolute;
    justify-content: space-between;
    height: 100%
}

@media(max-width:375px) {
    .content-player .hidden-menu-controls {
        width: 155px;
        padding-left: 10px;
        padding-right: 0;
        padding-top: 0;
        padding-bottom: 0
    }
}

@media(max-width:414px) {
    .content-player .hidden-menu-controls {
        width: 155px;
        padding-left: 10px;
        padding-right: 0;
        padding-top: 0;
        padding-bottom: 0
    }
}

@media(max-width:360px) {
    .content-player .hidden-menu-controls {
        width: 155px;
        padding-left: 10px;
        padding-right: 0;
        padding-top: 0;
        padding-bottom: 0
    }
}

.content-player .hidden-menu-controls .bwd_btn {
    background: url(/assets/img/skip_previous_FILL1_wght500_GRAD200_opsz40.svg) no-repeat center;
    background-size: 22px;
    margin-top: -1px
}

.content-player .hidden-menu-controls .fwd_btn {
    background: url(/assets/img/skip_next_FILL1_wght500_GRAD200_opsz40.svg) no-repeat center;
    background-size: 22px;
    margin-top: -1px
}

.content-player .hidden-menu-controls .speed_btn {
    background-size: 22px;
    margin-top: -1px;
    font-size: 14px !important;
}


.content-player .hidden-menu-controls .aud-btn-control {
    cursor: pointer;
    color: #515454;
    font-size: 16px;
    height: 32px;
    width: 30px
}

.content-player .hidden-menu-controls .aud-btn-control:focus {
    outline: 0
}

.content-player .screen-reader-text-btn {
    visibility: hidden
}

.progress-bar-wrapper {
    margin: 0 10px
}

@media(max-width:320px) {
    .progress-bar-wrapper {
        display: none
    }
}

.fa-redo,
.fa-undo {
    font-size: 15px
}

#beforeMarquee {
    margin-right: 10px
}