﻿/** Toolbar **/
#savingStatus {
    display: none;
    color: #31708f;
    font-size: 14px;
}

#saveSuccessful {
    display: none;
    color: #3c763d;
    font-size: 14px;
}

#saveFailed {
    display: none;
    color: #a94442;
    font-size: 14px;
}

.toolbar {
    height: 98px;
    background-color: lightsteelblue;
    border-bottom: solid;
    border-width: 2px;
    border-color: darkgray;
}

.toolbar .disabled {
    pointer-events: none;
    cursor: default;
    opacity: .3;
}

.statusbar {
    padding: 0px;
    margin: 0px;
    transition: background-color .25s linear;
}

.toolbarStatusIcon {
    display: block;
    width: 66px;
    height: 96px;
    margin-left: 0;
    margin-right: 10px;
    float: right;
    position: relative;
    padding-top: 26px;
    text-align: center;
    top: 0;
    left: 0;
    font-size: 12px;
}

.metroButton {
    width: 96px;
    height: 96px;
    margin-left: 0px;
    margin-right: 10px;
    margin-top: 0px;
    float: left;
    -webkit-transition: all .2s ease-in 0s;
    -moz-transition: all .2s ease-in 0s;
    -o-transition: all .2s ease-in 0s;
    transition: all .2s ease-in 0s;
    background-position: center center;
    background-color: steelblue;
}

.metroButton .icon {
    position: absolute;
    padding-top: 12px;
    font-size: 42px;
    color: white;
    text-align: center;
    width: 96px;
}

.metroButton .svg-icon {
    position: absolute;
    padding-top: 16px;
    fill: white;
    text-align: center;
    width: 96px;
}

.metroButton .svg-icon img {
    width: 48px;
    height: 48px;
}

.metroButton .subIcon {
    position: absolute;
    width: 32px;
    padding-left: 54px;
    display: inline-block;
    text-align: center;
    font-size: 24px;
    color: darkslategrey;
    padding-top: 42px;
}

.metroButton .subIconSymbol img {
    width: 26px;
    height: 26px;
}

.metroButton .text {
    position: relative;
    color: white;
    padding-left: 10px;
    padding-right: 10px;
    height: 96px;
    padding-bottom: 5px;
    vertical-align: bottom;
    display: table-cell;
    font-family: Arial;
    font-size: 12px;
    font-weight: normal;
    color: #FFFFFF;
    line-height: 1em;
}

.metroButton:hover {
    background-color: cadetblue;
    text-decoration: none;
}

.metroButton:focus {
    text-decoration: none;
}

/** End Toolbar */
