﻿@charset "utf-8";
/* CSS Document */


/* Viewer: Steps Menu Styles */
div#steps{
    background: url(../../Images/playerBgDark.png);

    display: block;
    position: absolute;
    top: 0; left 0;
    width: 262px;
    height: 557px;
    overflow: hidden;
    padding-top: 0px;
    border-right: 1px solid #333;
    z-index: 9;
    border-right: #292929 1px solid;
    text-align: left;

    transition:all .2s linear;
    -o-transition:all .2s linear;
    -moz-transition:all .2s linear;
    -webkit-transition:all .2s linear;
}
    .btn_back{
        display: block;
        position: relative;
        height: 13px !important;
        padding-top: 7px !important;
        padding-bottom: 5px !important;
        padding-left: 0px !important;
        padding-right: 0px !important;
        text-align: center;
        color: #dbdbdb;
        font-size: 11px;
        background: url(../../Images/backButtonBg.png) !important;
    }
        .homeTextMenu{
            display: inline-block;
            position: relative;
            top: -2px;
            padding-left: 4px;
        }
        .leftArrowsMenu{
            margin-top: 2px;
            display: inline-block;
            position: relative;
            width:13px; height: 10px;
            background: url(../../Images/leftArrows.png); 
        }
    div.btn_step{
        position: relative;
        cursor: pointer;
        margin:0;
        width:100%;
        padding: 10px 0px;
        border-top: #4b4c4c solid 1px;
        border-bottom: #292929 solid 1px;
        border-right: #3e3f3f solid 1px;
        overflow: hidden;
    }


    .btn_step + .btn_step{  margin-top: 0px  }


    .progressCircleHolder{
        display: block;
        position: absolute;
        right: 30px;
        top: 20px;
        height: 35px;
        width: 35px;
    }


    .hideProgress{
        display: none !important;
        width: 0px; height: 0px; 
        overflow: hidden;	
    }


    .progressCircleInner{
        display: block;
        position: absolute;
        width: 	24px;
        height: 23px;
        top: -4px;
        left: -5px;
        margin: 5px;
        background: url(../../Images/progressCircleInner.png);
    }


    .progressLoader{
        display: block;
        display: none;
        position: absolute;
        width: 	16px;
        height: 16px;
        right: 19px;
        top: 17px;
        margin: 5px;
        background: url(../../Images/loader.gif);
    }


        .btn_header{
            display: block;
            position: relative;
            min-height: 42px !important;
            padding: 5px 0px;
            text-align: left;
            cursor: default !important;
            border: 0px !important;
        }
            .btn_header>h2{
                padding: 0px 12px;
                padding-top: 8px;
                font-size: 10px;
                color: #999999;
                font-weight: normal;
                text-shadow: 0px 1px 1px #000;
            }
            .btn_header>h1{
                margin-top: 0px;
                padding: 0px 8px;
                font-size: 16px;
                color: #c2c2c2;
                font-weight: normal;
                text-shadow: 0px 1px 1px #000;
            }
            .btn_step.playing{  
                background: url(../../Images/playerBgLight.png) !important;
                cursor: default;

            }
            .btn_step .img{
                display: none;
                float: left;
                width: 50px; height: 45px;
                border-radius: 3px;
                margin-left: 10px;	top: 10px;
                border: #000 solid 1px;
                -webkit-box-shadow: 0px 1px 0px rgba(255, 255, 255, 0.15);
                -moz-box-shadow:    0px 1px 0px rgba(255, 255, 255, 0.15);
                box-shadow:         0px 1px 0px rgba(255, 255, 255, 0.15);
            }
            .btn_step .textHolder{
                float: left;
                overflow: hidden;
                padding: 0 10px;
                border-radius: 3px;
                max-width: 175px;
                min-height: 45px;
            }
                .btn_step>.textHolder>h2{
                    color:#999999;
                    font-size: 10px;
                    font-weight: normal;
                    text-shadow: 0px 1px 1px #000;
                }
                    #markStartTime:hover{
                        color: #FFF;
                    }
                .btn_step>.textHolder>h1{
                    color:#c2c2c2;
                    font-size: 13px;
                    font-weight: 400;
                    text-shadow: 0px 1px 1px #000;
                }


@media all and (max-width: 869px) {
    div#steps{
        position: absolute !important;
        left: 0px;
        top: 90px;
        width: 170px !important;
        z-index: 3 !important;
        display: none;
    }
        div#steps div.progressCircleHolder{
            display: none;
        }
}

@media all and (min-width: 870px) and (max-width: 909px) {
    div#steps{
        width: 170px;
    }
        div#steps div.progressCircleHolder{
            display: none;
        }
}

@media all and (min-width: 910px) and (max-width: 959px) {
    div#steps{
        width: 210px !important;
    }
}

@media all and (min-width: 960px) {
    div#steps{
        width: 262px !important;
    }
        div#steps div.btn_step div.img{
            display: block;
        }
}