/*cs interface start*/
.csInterfaceLoader
{
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 102;
    padding: 7px;
    color: #DDDDDD;
    /*background: #000000;*/
    /*border-radius: 5px;*/
}

.csInterfaceLoaderWhite
{
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 102;
    padding: 7px;
    background: #FFFFFF;
    border-radius: 5px;
}

.csInterfaceOverlay
{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.85);
    z-index: 99
}

.csInterfaceOverlayWhite
{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.85);
    z-index: 99
}


.csInterfaceContainer
{
    position: absolute;
    top: 90px;
    left: 0;
    right: 0;
    margin: 0 auto;
    z-index: 100;
    /*width: 900px;*/
}

.csInterfaceContainerFull
{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: 0;
    z-index: 100;
}

.csInterfaceContent
{
    display: none;
}

.csInterfaceSuccessResponse
{
    color: #E0E0E0;
}

.csInterfaceSuccessWhite
{
    color: #757575;
}

.csInterfaceSuccessHeading
{
    /*font-weight: bold;*/
    /*font-size: 16px;*/
    /*border-bottom: 1px solid #000000;*/
    /*text-shadow: 0 1px 1px #000000;*/
    /*padding-bottom: 10px;*/
    /*font-size: 20px;*/
    color: #EEEEEE;
    padding-bottom: 50px;
    border-bottom: 1px solid #000000;
    text-shadow: 0 1px 1px #000000;
    font-weight: bold;
    position: relative;
    text-align: center;
}

.csInterfaceSuccessContent
{
    border-top: 1px solid #424242;
    padding-top: 10px;
    text-align: center;
}

.csInterfaceErrorResponse
{
    color: #FFFFFF;
    padding: 10px;
    text-align: center;
    /*font-size: 16px;*/
}

.csInterfaceErrorResponseWhite
{
    color: #757575;
    padding: 10px;
    text-align: center;
    /*font-size: 16px;*/
}

.csInterfaceErrorResponseHeading
{
    font-weight: bold;
    margin-top: 50px;
    color: #F44336;
    text-shadow: none;
}

.csInterfaceClose
{
    /*font-size: 20px;*/
}

.csInterfaceCloseBtn
{
    position: fixed;
    right: 5px;
    top: 15px;
    z-index: 105;
    cursor: pointer;
    color: #F44336;
    font-size: 24px;
}

.csInterfaceCircle
{
    width: 90px;
    height: 90px;
    border-radius: 50%;
    border: 3px solid #26A69A;
    box-shadow: 0 0 5px rgba(0,0,0,1);
    padding: 5px;
    margin: 0 auto;
    font-weight: bold;
    font-size: 24px;
    color: #FFFFFF;
}

.csInterfaceWhite
{
    color: #FFFFFF;
}

.csInterfaceActionButtons
{
    /*font-size: 20px;*/
    color: #EEEEEE;
    cursor: pointer;
    display: inline-block;
    padding: 5px;
    border-radius: 4px;
    text-shadow: 0 1px 1px #000000;
    margin: 50px 10px;
    min-width: 150px;
}

.csInterfaceActionButtons:hover
{
    /*background: linear-gradient(#424242, #212121);*/
    background: #424242;
    /*color: #00897B;*/
    transition: background 0.1s;
}

.csInterfaceActionButtonsText
{
    /*font-size: 16px;*/
}

.csInterfaceForm
{
    color: #424242;
    text-align: left;
    background: #FFFFFF;
    padding: 10px;
    border-radius: 4px;
}

.csInterfaceRequired
{
    color: #F44336;
    font-weight: bold;
}

.csInterfaceFormError
{
    background: #FFEBEE;
    color: #D32F2F;
    /*border-left: 1px solid #EF9A9A;*/
    /*border-right: 1px solid #EF9A9A;*/
    /*border-bottom: 1px solid #EF9A9A;*/
    padding: 10px;
    margin-top: 0;
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
    font-style: italic;
    /*font-size: 12px;*/
}

.csInterfaceMenuContainer
{
    background: #212121;
    position: fixed;
    top: 0;
    left: 0;
    width: 250px;
    height: 100%;
}

.csInterfaceMenuContainerWhite
{
    background: rgba(255,255,255, 0.9);
    position: fixed;
    top: 130px;
    left: 0;
    width: 250px;
    height: 100%;
    z-index: 98;
}

.csInterfaceMenuHeading
{
    color: #FFFFFF;
    text-transform: uppercase;
    /*font-size: 18px;*/
    padding: 20px 0 20px 5px;
    border-bottom: 1px solid #191919;
    height: 7%;
}

.csInterfaceMenuSearchContainer{
    padding: 5px;
    height: 5%;
}

.csInterfaceMenuSearch{
    display: block;
    width: 100%;
    box-shadow: none !important;
    border: 1px solid #191919 !important;
    background: #424242;
}

.csInterfaceMenuItems
{
    overflow-y: auto;
    height: 88%;
    overflow-x: hidden;
}

.csInterfaceMenuHeadingWhite
{
    /*color: #BDBDBD;*/
    text-transform: uppercase;
    /*font-size: 18px;*/
    padding: 15px 0 15px 5px;
    /*border-bottom: 1px solid #EEEEEE;*/
    color: #212121;
    background: #FFFFFF;
    /*background: linear-gradient(#2196F3, #0070BB);*/
    /*border-bottom: 1px solid #0070BB;*/
    border-bottom: 2px solid #E0E0E0;
}

.csInterfaceShowHideMenuBtn
{
    position: absolute;
    top: 5px;
    left: 195px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(#757575, #424242);
    line-height: 50px;
    cursor: pointer;
    z-index: 100;
    /*font-size: 20px;*/
    color: #FFFFFF;
}

.csInterfaceShowHideMenuBtn:hover
{
    background: linear-gradient(#2196F3, #0070BB);
    transition: background 0.3s;
}

.csInterfaceMenuItemLevel1
{
    font-weight: bold;
    padding: 10px 0 10px 10px;
    /*background: linear-gradient(#1E88E5, #1565C0);*/
    border-bottom: 1px solid #191919;
    cursor: pointer;
}

.csInterfaceMenuItemLevel1White
{
    padding: 10px 0 10px 10px;
    /*background: linear-gradient(#1E88E5, #1565C0);*/
    border-bottom: 1px solid #EEEEEE;
    cursor: pointer;
    color: #BDBDBD;
}

.csInterfaceShowHideMenuBtnWhite
{
    position: fixed;
    top: 145px;
    left: 205px;
    /*border-radius: 50%;*/
    /*background: linear-gradient(#757575, #424242);*/
    cursor: pointer;
    z-index: 100;
    /*font-size: 20px;*/
    color: #212121;
}

.csInterfaceShowHideMenuBtnWhite:hover
{
    color: #191919;
    transition: color 0.3s;
}

.csInterfaceMenuItemLevel1White:hover
{
    color: #757575;
    transition: color 0.3s;
}

.csInterfaceMenuItemLevel1WhiteActive, .csInterfaceMenuItemLevel1WhiteActive:hover
{
    color: #ffffff;
    background: linear-gradient(#4DB6AC, #009688);
    border-bottom: 1px solid #00897B;
}

.csInterfaceMenuItemLevel2
{
    padding: 7px 25px 7px 25px;
    border-bottom: 1px solid #191919;
    cursor: pointer;
    color: #9E9E9E;
    /*font-size: 12px;*/
}

.csInterfaceMenuItemLevel2Active
{
    color: #FFFFFF;
}

.csInterfaceMenuItemLevel1:hover, .csInterfaceMenuItemLevel2:hover
{
    color: #FFFFFF;
    transition: color 0.3s;
}

.csInterfaceStepHeadings{
    display: none;
}

.actionSteps{
    display: none;
}

.csInterfaceActionsHelpTextContainer{
    margin-top: 40px;
}

.csInterfaceHelpText{
    display: none;
    text-transform: uppercase;
}

.csInterfaceStepsContainer{
    color: #ffffff;
}

.csInterfaceStep{
    color: #757575;
    display: inline-block;
    width: 50px;
    height: 50px;
    background-color: #242424;
    border-radius: 50%;
    line-height: 50px;
    font-weight: bold;
    border: 2px solid #424242;
    box-shadow: 0 0 5px #000000;
}

.csInterfaceStepActive{
    background: #2196f3;
    border-color: #1976d2;
    color: #ffffff;
}

.csInterfaceStepComplete{
    background: #7cb342;
    border-color: #33691e;
    color: #ffffff;
}

.csInterfaceStepSpacer{
    display: inline-block;
    padding: 0 100px 0 100px;
    background: #191919;
    height: 1px;
    line-height: 0;
}

.csInterfaceListGroupItem{
    background: none;
    color: #FFFFFF;
    border-bottom: 1px solid #000000;
}
/*cs interface end*/