/* standard (DVG style) */

.toolbar-container {
    position: relative;
    height: 25px;
    background-color: #fff;
    border-top: 1px solid #ccc;
    padding: 3px 0;
    /* width: 712px; */
}


.toolbar-scrollIcon {
    position: fixed;
    z-index: 8000; /* needs to overlap Telerik root menu controls */
    display: inline-block;
    border: 1px solid #424142;
    border-radius: 3px;
    line-height: 21px;
    font-size: 18px;
    font-weight: bold;
    background-color: #dcdcdc;
    cursor: pointer;
}
.toolbar-scrollIcon:hover {
    background-color: #424142;
    color: #dcdcdc;
}
.toolbar-scrollIconLeft {
    padding: 1px 3px 1px 4px;
    right: 19px;
    margin-top: -0.9px;
    padding-top: 0px;
}
.toolbar-scrollIconRight {
    padding: 1px 4px 1px 3px;
    right: 0;
    margin-top: -0.9px;
    padding-top: 0px;
}
.toolbar-scrollIconContentLeft::before {
    content: "«";
}
.toolbar-scrollIconContentRight::before {
    content: "»";
}

.toolbar-toolsContainer {
    /* left is adapted programmatically */
    position: absolute;
    top: 1px;
    transition-property: left;
    transition-duration: .5s;
    transition-timing-function: cubic-bezier(0, 1, 0.5, 1);

    /* maximal width *all* toolbar items will cover without forcing a new line (wrap/break). */
    /* it is a width valid for *all* toolbars / dialogs, i.e. a pretty big value should be choosen */
    width: 2000px !important;
}


.toolbar-tool {
    display: inline-block;
    vertical-align: middle;
    white-space: nowrap;
    /* border-right: 1px solid #bbb; */
    /* margin-left: 2px; */
}

.toolbar-toolsContainer .toolbar-tool img.qs {
    margin-left: -2px;
}

.toolbar-toolsContainer .toolbar-tool input.text {
    border-color: #ccc !important;
    padding-bottom: 2px;
    padding-top: 1px;
}

.toolbar-tool img[src*=toolbarSeparator]{
    padding-left: 3px;
}

.toolbar-toolLeft {
}

.toolbar-toolRight {
}

.toolbar-menuTool {
    line-height: 0; /* line-height darf nicht von .RadSplitter vererbt werden, siehe Bug 231769 */
}

#MainToolBarDiv .toolbar_div {
    padding: 2px;
    background-color: #d6e0e9;
}



/* Styles for Toolbar Icons (Save, New, Delete ,...) */
.toolbar-icon {
    color: #000;
    background-color: #FFF;
    border: #ccc 1px solid;
    border-radius: 2px;
    padding: 4px;
    font-size: 11pt;
    width: 25px;
    height: 25px;
}

    .toolbar-icon:hover {
        cursor: pointer;
        background-color: #ddd;
    }

    .toolbar-icon:disabled {
        background-color: #aaa;
        cursor: default
    }

    .toolbar-icon > i {
        line-height: normal;
    }


.toolbar-icon-access-calendar {
    color: #000;
    background-color: #FFF;
    border: #ccc 1px solid;
    border-radius: 2px;
    padding: 2px;
    font-size: 10pt;
    width: 21px;
    height: 21px;
    margin: 0 2px;
}

    .toolbar-icon-access-calendar:hover {
        cursor: pointer;
        background-color: #ddd;
    }

    .toolbar-icon-access-calendar:disabled {
        cursor: default;
        background-color: #aaa;
    }

.toolbar-icon-access-calendar > i {
    line-height: normal;
}

.toolbar-icon-extra-margin {
    margin: 3px;
}