﻿@charset "UTF-8";

#main_player_container {
    visibility: hidden;
    position: relative;
}

#main_player_loader {
    z-index: 1000;
    width: 100%;
    position: absolute;
    top: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.77);
    background-image: url("/Content/loading.gif");
    background-position: center center;
    background-repeat: no-repeat;
}

#main_player {
    display: table;
    color: rgba(0, 0, 0, 0.7);
    padding: 5px 0;
    position: relative;
    background-color: white;
    transition: all 0.15s ease-in-out;
    width: 100%;
}

    #main_player > * {
        display: table-cell;
        vertical-align: top;
        padding: 0 8px;
    }

#seeker {
    position: absolute;
    height: 25px;
    left: 0;
    right: 0;
    bottom: -19px;
    z-index: 100;
}

#seek_position {
    display: none;
    position: absolute;
    top: -4px;
    bottom: 0px;
    z-index: 50;
    left: 0;
    width: 1px;
    margin: 0;
    padding: 0;
    /**тень**/
    box-shadow: 0px 0px 9px 1px rgba(98, 146, 178, 0.35);
    text-shadow: 0px 0px 9px rgba(98, 146, 178, 0.35);
    /**фон**/
    background: black;
    /*background: -moz-linear-gradient(top, rgba(255,0,4,0.02) 19%, #6292B2 52%, rgba(98, 146, 178,0.45) 89%);*/ /* FF3.6+ */
    /*background: -webkit-gradient(linear, left top, left bottom, color-stop(19%,rgba(255,0,4,0.02)), color-stop(52%,#6292B2), color-stop(89%,rgba(98, 146, 178,0.45)));*/ /* Chrome,Safari4+ */
    /*background: -webkit-linear-gradient(top, rgba(255,0,4,0.02) 19%,#6292B2 52%,rgba(98, 146, 178,0.45) 89%);*/ /* Chrome10+,Safari5.1+ */
    /*background: -o-linear-gradient(top, rgba(255,0,4,0.02) 19%,#6292B2 52%,rgba(98, 146, 178,0.45) 89%);*/ /* Opera 11.10+ */
    /*background: -ms-linear-gradient(top, rgba(255,0,4,0.02) 19%,#6292B2 52%,rgba(98, 146, 178,0.45) 89%);*/ /* IE10+ */
    /*background: linear-gradient(to bottom, rgba(255,0,4,0.02) 19%,#6292B2 52%,rgba(98, 146, 178,0.45) 89%);*/ /* W3C */
    /*filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#05ff0004', endColorstr='#73720001',GradientType=0 );*/ /* IE6-9 */
}

    #seek_position:before {
        content: "\f111";
        font-family: "FontAwesome";
        position: absolute;
        bottom: -17px;
        left: -4px;
        color: rgba(0, 0, 0, 0.87);
        font-size: 11px;
    }

#main-player-controls {
    width: 79px;
    box-sizing: border-box;
    position: relative;
    cursor: pointer;
}

    #main-player-controls:after {
        transition: all 0.15s ease-in-out;
        position: relative;
        top: 9px;
        background-color: #d4edda;
        content: "\f04b";
        font-family: "FontAwesome";
        display: inline-block;
        height: 50px;
        width: 50px;
        line-height: 52px;
        text-align: center;
        font-size: 15px;
        cursor: pointer;
    }

    #main-player-controls.player_pause:after {
        content: '\f04c';
    }

    #main-player-controls.player_pause:hover:after {
        background-color: #4caf50;
    }

#main-player-info {
    padding-top: 2px;
}

    #main-player-info > * {
        margin: 0;
        padding: 0;
        width: 520px;
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
    }

#player {
    display: none;
}
