﻿
#colbass-tts-wrap {
    display: none;
    background-color: #fff;
    margin: 2px;
    width: 100%;
    text-align: center;
    border-radius: 8px;
    border: 1px solid #e9e9e9;
    box-shadow: 0 -2px 8px 0 rgba(128,134,139,.09),0 4px 8px 0 rgba(128,134,139,.06),0 1px 2px 0 rgba(60,64,67,.3),0 2px 6px 0 rgba(60,64,67,.15);
    direction: ltr;

}
@media only screen and (max-width: 600px) {
    #colbass-tts-wrap {
        width: 100%;
    }
}
#colbass-tts-audio {
    height: 33px;
    width: 100%;
    margin: auto;
    display: block;
}
span#colbass-tts-ref {
    font-weight: 500;
    color: #818181;
    width: fit-content;
    margin-right: 5px;
    float: right;
    height: 18px;
    font-size: 12px !important;
    line-height: 2 !important;
    margin-top: -5px;
    font-family: 'Open Sans Hebrew', Arial;
}
span.cb_msgBottom {
    color: #818181;
    /* width: max-content;  for space for ads*/
    margin-right: 2px;
    float: right;
    height: 18px;
    font-size: 12px !important;
    line-height: 2 !important;
    margin-top: -5px;
    white-space: nowrap;
}
.cb_msgAd {
    font-weight: 700;
    color: #247ae3;
}
.cancelRadioBtn {
    background-color: #eff1f2;
    border-radius: 3px;
    align-items: center;
    border: 1px solid #ebefef;
    width: 40px;
    margin-top: -6px;
    cursor: pointer;
}
/*LOADING*/
    @keyframes spinner {
        to {
            transform: rotate(360deg);
        }
    }

    .colbass-spinner:before {
    content: '';
    box-sizing: border-box;
    position: relative;
    display: inline-block;
    width: 13px;
    height: 13px;
    border-radius: 50%;
    border: 2px solid #ccc;
    border-top-color: #000;
    animation: spinner .6s linear infinite;
    margin-left: 18px;
}
.colbass-spinner {
    display: none;
    float: left;
    margin-left: 41px;
    margin-top: -27px
}
/*END LOADING*/

span.cb_listenText {
    font-size: 15.8px;
    font-family: sans-serif !important;
    color: #555e66;
    font-weight: var(--cb_listenTextWeight);/*customaize to websites*/
    margin-right: 15px;
}
#cb_timeToShow {
    display: none;
    font-size: 14.8px;
    font-family: sans-serif !important;
    font-weight: 500;
    color: #555e66;
}
@media only screen and (max-width: 400px) { /*roee put*/
    .colbass-spinner {
        margin-top: -11px
    }
    span.cb_listenText{
        margin-right:-30px;
    }
}


/* player*/
:root {
    --circleColbass: #8e929b;
    --btnPausePlayColbass: #424852;
    --barRunningColbass: #000000;
    --cb_listenTextWeight: 500; 
}

.audioPlayerColbass {
    display: flex;
    flex-direction: row;
    box-sizing: border-box;
    /*    margin: 1em 0;*/
    padding: 0 6px;
    width: 100%;
    height: 50px;
    align-items: center;
    margin-bottom: -5px;
    margin-top: 3px;
    justify-content: space-between;/*roee put*/
    /*    border: 1px solid #DDE2E6;
    border-radius: 4px;
    background: #fff;*/
}

.audioPlayerColbass-playpause {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    cursor: pointer;
    transition: all .2s ease-in-out;
    margin-left: 13px;
}

.audioPlayerColbass:not(.audioPlayerColbass-playing) .audioPlayerColbass-playpause {
    background: rgba(91, 130, 255, 0);
    border: 1px solid var(--circleColbass); /*grey*/ /*customize circle in play*/
}

    .audioPlayerColbass:not(.audioPlayerColbass-playing) .audioPlayerColbass-playpause:hover {
        background: rgba(168, 173, 187, 0.1); /*background grey btn play*/
    }

.audioPlayerColbass-playing .audioPlayerColbass-playpause {
    background: rgba(253, 79, 26, 0);
    border: 1px solid var(--circleColbass); /*grey customize circle in pause*/
}

    .audioPlayerColbass-playing .audioPlayerColbass-playpause:hover {
        background: rgba(168, 173, 187, 0.1); /*background grey btn pause*/
    }

.audioPlayerColbass:not(.audioPlayerColbass-playing) .audioPlayerColbass-playpause a {
    margin: 0px;
    content: '';
    justify-content: center;
    width: 0;
    height: 0;
    margin-left: 2px;
    border-top: 7px solid transparent;
    border-right: none;
    border-bottom: 7px solid transparent;
    border-left: 12px solid var(--btnPausePlayColbass); /*black btn play*/ /*customize*/
}

.audioPlayerColbass-playing .audioPlayerColbass-playpause a {
    margin: 0px;
    content: '';
    display: flex;
    justify-content: space-between;
    width: 12px;
    height: 14px;
}

    .audioPlayerColbass-playing .audioPlayerColbass-playpause a::before, .audioPlayerColbass-playing .audioPlayerColbass-playpause a::after {
        content: '';
        width: 4px;
        height: 14px;
        background-color: var(--btnPausePlayColbass); /*black btn pause*/ /*customize*/
    }

.audioPlayerColbass-time {
    display: flex;
    width: 40px;
    justify-content: center;
    font-size: 12px;
    color: rgba(51, 51,51, .6)
}

.audioPlayerColbass-time-current {
    margin-left: 12px;
}

.audioPlayerColbass-time-duration {
    margin-right: 12px;
}

.audioPlayerColbass-bar {
    position: relative;
    display: flex;
    margin: 0 9px;
    height: 12px;
    flex-basis: 0;
    flex-grow: 1;
    cursor: pointer;
}
@media only screen and (max-width: 400px) {/*roee put*/
    .audioPlayerColbass-bar, .audioPlayerColbass-time-current, .audioPlayerColbass-time-duration {
        display: none;
        margin-left: 0px;
        margin-right: 0px;
    }
    .audioPlayerColbass-playpause {
        margin-left: 0px;
    }
    #cb_timeToShow{
        display:inline-block;
    }
}
@media only screen and (max-width: 300px) { /*roee put*/
    .audioPlayerColbass:not(.audioPlayerColbass-playing) .audioPlayerColbass-playpause {
        background: none;
        border: none;
    }

        .audioPlayerColbass:not(.audioPlayerColbass-playing) .audioPlayerColbass-playpause:hover {
            background: none; /*background grey btn play*/
        }

    .audioPlayerColbass-playing .audioPlayerColbass-playpause {
        background: none;
        border: none; /*grey customize circle in pause*/
    }
        .audioPlayerColbass-playing .audioPlayerColbass-playpause:hover {
            background: none; /*background grey btn pause*/
        }

}
    .audioPlayerColbass-bar::before {
        content: '';
        position: absolute;
        top: 5px;
        width: 100%;
        height: 2px;
        background-color: #DDE2E6;
    }

    .audioPlayerColbass-bar > div {
        position: absolute;
        left: 0;
        top: 5px;
    }

.audioPlayerColbass-bar-loaded {
    z-index: 1;
    height: 2px;
    background: #BEC8D2;
}

.audioPlayerColbass-bar-played {
    flex-direction: row-reverse;
    z-index: 2;
    height: 2px;
    /*background: -webkit-linear-gradient(left,#0059FF,#09B1FA); blue */
    background: -webkit-linear-gradient(left,#cbcbcb,var(--barRunningColbass)); /*customize*/
}

    .audioPlayerColbass-bar-played::after {
        display: flex;
        position: absolute;
        content: '';
        box-sizing: border-box;
        top: -5px;
        right: -1px;
        margin-right: -5px;
        width: 12px;
        height: 12px;
        background-color: #fff;
        border-radius: 6px;
    }

.audioPlayerColbass:not(.audioPlayerColbass-playing) .audioPlayerColbass-bar-played::after {
    border: 2px solid #BEC8D2;
}

.audioPlayerColbass-playing .audioPlayerColbass-bar-played::after {
    /*border: 2px solid #0059FF;   blue */
    border: 2px solid var(--barRunningColbass);
}
/*goo*/
button.speed-open-button:focus {
    background-color: transparent;
}
.speed-open-button {
    background-color: transparent;
    width: 45px;
    height: 28px;
    border: 1px solid #b6b6b6;
    border-radius: 16px;
    font: normal normal 400 13px Roboto,sans-serif;
    color: #818181;
    padding: 0px 0px;
}
    .speed-open-button:hover {
        color: #818181;
        border: 1px solid #b6b6b6;
        cursor: pointer;
    }


    .speed-selection-button:hover {
        border-color: #e8eaed;
        color: #818181;
    }
.speed-selection-button:focus {
    background-color: transparent;
}

.speed-selection-button {
    border-radius: 8px;
    font: normal normal 400 13px Roboto,sans-serif;
}
.speed-selection-button {
    color: #818181;
    display: flex;
    flex-direction: row;
    padding: 8px 10px;
    margin: 0 auto;
    background-color: transparent;
    border: 1px solid #e8eaed;
    box-sizing: border-box;
    flex: none;
    align-self: center;
    cursor: pointer;
    align-items: center;
}

    .speed-selection-button[aria-checked=true] {
        background-color: rgba(0,0,0,.05);
    }

.screen-speed-selection .speed-selection-panel {
    display: flex;
}

.speed-selection-panel {
    display: none;
    align-items: center;
    justify-content: center;
    flex-grow: 2;
    max-width: 300px;
    margin: 0 auto;
}
/*end goo*/


/*
.audioplayer-volume-button {
    display: flex;
    align-items: center;
    width: 24px;
    height: 24px;
    cursor: pointer;
}

.audioplayer-volume-button a {
    display: flex;
    width: 6px;
    height: 8px;
    background-color: #9A9FB0;
    position: relative;
}

.audioplayer-volume-button a:before, .audioplayer-volume-button a:after {
    content: '';
    position: absolute;
}

.audioplayer-volume-button a:before {
    width: 0;
    height: 0;
    border-top: 8px solid transparent;
    border-right: 9px solid #9A9FB0;
    border-bottom: 8px solid transparent;
    border-left: none;
    top: -4px;
}

.audioplayer:not(.audioplayer-mute) .audioplayer-volume-button a:after {
    left: 10px;
    top: -2px;
    width: 6px;
    height: 6px;
    border: 6px double #9A9FB0;
    border-width: 6px 6px 0 0;
    border-radius: 0 12px 0 0;
    transform: rotate(45deg);
}

.audioplayer-mute .audioplayer-volume-button a {
    background-color: #FD4F1A;
}

.audioplayer-mute .audioplayer-volume-button a:before {
    border-right: 9px solid #FD4F1A;
}

.audioplayer-volume-adjust {
    display: flex;
    align-items: center;
    margin-left: 8px;
}

.audioplayer-volume-adjust > div {
    position: relative;
    display: flex;
    width: 60px;
    height: 2px;
    cursor: pointer;
    background-color: #BEC8D2;
}

.audioplayer-volume-adjust div div {
    position: absolute;
    top: 0;
    left: 0;
    height: 2px;
    background-color: #0059FF;
}*/
/* responsive | you can change the max-width value to match your theme */
/*@media screen and (max-width: 679px) {
    .audioplayer-volume-adjust {
        display: none;
    }
}*/
