/** Audio Player **/

.block-audios
{
    width: 100%;
}

.block-audios .audio-current
{
    width: 100%;
    min-height: 60px;
    background: transparent;
    border-top: 1px solid #2f2f2f;
    border-bottom: 1px solid #2f2f2f;
}


.uk-block-p .block-audios .audio-current
{
    padding-right: 33px;
    padding-left: 35px;
    margin-left: -35px;
    border: 1px solid #2f2f2f;
    box-shadow: none;
}

.block-audios .audio-current .audio-controls
{
    width: 100%;
    text-align: center;
    margin-top: 25px;
    padding-bottom: 15px;
}

.block-audios .audio-current .audio-controls button
{
    border: 0;
    background: transparent;
}

.block-audios .audio-current .audio-controls button:hover
{
    cursor: pointer;
}

.block-audios .audio-current .audio-controls .audio-previous,.block-audios .audio-current .audio-controls .audio-next
{
    margin-top: 10px;
    margin-bottom: 10px;
    margin-left: 4px;
    margin-right: 4px;
    /*width: 30px;
    height: 30px;*/
    border-radius: 17px;
    border: 1px solid #e0d28f;
    color: #e0d28f;
    font-size: 14px;
}

.block-audios .audio-current .audio-controls .audio-previous:hover,.block-audios .audio-current .audio-controls .audio-next:hover
{
    background: #e0d28f;
    color: #FFFFFF;
}

.block-audios .audio-current .audio-controls .audio-start-stop
{
    width: 50px;
    height: 50px;
    border-radius: 50px;
    color: #FFFFFF;
    font-size: 20px;
    background: transparent;
    color: #e0d28f;
    border: 1px solid #e0d28f;
}

.block-audios .audio-current .audio-controls .audio-start-stop:hover
{
    cursor: pointer;
    background: #e0d28f;
    color: #FFFFFF;
}

.block-audios .audio-current .audio-progress
{
    width: 95%;
    padding-left: 15px;
    padding-right: 15px;
}

.block-audios .audio-current .audio-progress .audio-name
{
    width: 100%;
    margin-bottom: 5px;
    text-align: center;
}

.block-audios .audio-current .audio-progress .audio-name span
{
    font-weight: bold;
    font-size: 18px;
    color: #e0d28f;
}

.block-audios .audio-current .audio-progress .audio-name a
{
    text-decoration: underline;
}

.block-audios .audio-current .audio-progress .audio-block-progress
{
    width: 95%;
    height: 5px;
    background: #666;
    margin-top: 8px;
    border-radius: 2px;
}

.block-audios .audio-current .audio-progress .audio-block-progress:hover
{
    cursor: pointer;
}

.block-audios .audio-current .audio-progress .audio-block-progress .audio-progress-current
{
    width: 40%;
    height: 100%;
    background: #e0d28f;
    border-radius: 2px;
}

.block-audios .audio-current .audio-progress .audio-block-progress .audio-point-current
{
    background: #e0d28f;
    width: 17px;
    height: 17px;
    border-radius: 17px;
    margin-left: -8.5px;
    margin-top: -11px;
}



.block-audios .audio-current .audio-volume
{
    min-height: 60px;
    padding-left: 15px;
    padding-right: 15px;
}

.block-audios .audio-current .audio-volume-controls
{
    width: 85%;
    float: left;
}

.block-audios .audio-current .audio-volume-controls .audio-icon-volume
{
    width: 20%;
    float: left;
    margin-top: 19px;
    text-align: center;
}

.block-audios .audio-current .audio-volume-controls .audio-icon-volume i
{
    color: #e0d28f;
    font-size: 24px;
}

.block-audios .audio-current .audio-volume-controls .audio-icon-volume i:hover
{
    color: #e0d28f;
    cursor: pointer;
}

.block-audios .audio-current .audio-volume-controls .audio-volume-change
{
    width: 80%;
    float: right;
    margin-top: 28px;
}

.block-audios .audio-current .audio-volume-controls .audio-volume-change div
{
    width: 100%;
    height: 5px;
    background: #666;
    border-radius: 2px;
}

.block-audios .audio-current .audio-volume-controls .audio-volume-change div:hover
{
    cursor: pointer;
}

.block-audios .audio-current .audio-volume-controls .audio-volume-change div div
{
    width: 100%;
    background: #e0d28f;
    height: 100%;
}

.block-audios .audio-current .audio-bookmaker
{
    display: none;
    width: 15%;
    float: right;
    text-align: right;
}

.block-audios .audio-current .audio-bookmaker button
{
    margin-top: 10px;
    /*width: 30px;
    height: 30px;*/
    border-radius: 30px;
    border: 0;
    background: #e0d28f;
    color: #FFFFFF;
    font-size: 14px;
}

.block-audios .audio-current .audio-bookmaker button:hover
{
    cursor: pointer;
    background: transparent;
    color: #e0d28f;
    border: 1px solid #e0d28f;
}

.audio-list,.audio-list .audio-item
{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
    align-content: center;

}

.audio-list-container
{
    overflow-y: auto;
    overflow-x: hidden;
    height: auto;
    max-height: 350px;
    padding-bottom: 15px;
    transform: translateZ(0);
}

.audio-play-max-height .audio-list-container
{
    max-height: 100%;
}

.audio-item
{
    width: 97%;
    margin-top: 10px;
    border-bottom: 1px solid #2f2f2f;
    min-height: 50px;
}

.audio-item:last-child {
    border: 0;
}


.audio-item .audio-item-play .play-item
{
    width: 40px;
    height: 40px;
    border-radius: 20px;
    font-size: 16px;
    text-align: center;
    background: transparent;
    color: #e0d28f;
    border: 1px solid #e0d28f;
}



.audio-item .audio-item-play button
{
    font-size: 22px;
}

.audio-item .audio-item-play button.uk-icon-play
{
    text-indent: 5px;
}

.block-audios .audio-current .audio-controls .audio-start-stop.uk-icon-play
{
    text-indent: 5px;
}

.audio-item .audio-item-play .play-item:hover
{
    background: #e0d28f;
    color: #FFFFFF;
    cursor: pointer;
}

.audio-item .audio-item-name
{
    float: left;
    line-height: 43px;
    overflow: hidden;
    word-break: keep-all;
    max-height: 50px;
}



.audio-item .audio-item-name span
{
    display: block;
    /*margin-top: -25px;*/
    font-weight: bold;
    font-size: 16px;
}


.audio-item .audio-item-name small
{
    display: block;
    margin-top: -10px;
}

.audio-item .audio-item-actions
{
    display: none;
    float: right;
    width: 40%;
    text-align: right;
}

.audio-item-actions button
{
    margin-top: 10px;
    margin-left: 5px;
    /*width: 30px;
    height: 30px;*/
    border: 1px solid #e0d28f;
    /*border-radius: 30px;*/
    background: transparent;
    color: #e0d28f;
    /*font-size: 15px;*/
}

.audio-item-actions button:hover
{
    background: #e0d28f;
    color: #FFFFFF;
    cursor: pointer;
}



.audio-item .audio-item-name,.audio-item .audio-item-play,.audio-item .audio-item-actions
{
    width: auto;
    max-width: 100%;
    margin: 0 10px 0 10px;
    max-height: 44px;
}

.audio-item .audio-item-name
{
    flex-grow: 2;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    min-width: 0;
    flex-shrink: 2;
}

.audio-item-actions button
{
    margin: 0;
}

.block-audios .audio-current .audio-controls .audio-start-stop
{
    border-radius: 25px;
}

.main-block-audios .uk-modal {
    z-index: 10;
}
