﻿body {
    padding: 0px;
    margin: 0px;
}

.mainContainer {
    position: absolute;
    top: 0px;
    right: 0px;
    bottom: 0px;
    left: 0px;
    overflow-x: hidden;
    overflow-y: auto;
}

.icon {
    display: inline-block;
    width: 1.1em;
    height: 1.1em;
}

    .icon > svg {
        width: 100%;
        height: 100%;
    }

.toolName {
    font-weight: 600;
    display: inline-block;
    padding: 3px 9px;
    width: 100%;
    background-color: deeppink; /*[{Header-Default-Background}]*/
    border: 1px solid chartreuse; /*[1px solid {Header-SeparatorLine-Background}]*/
    border-left-width: 0px;
    border-right-width: 0px;
    white-space: nowrap;
}

.summaryList {
    list-style-type: none;
    padding: 0px;
    margin: 0px;
}

.summaryItems {
    list-style-type: none;
    padding: 0px 1em;
    margin: 0px;
}

.summaryItems > li {
    padding: 3px 0px;
}

.summaryItem {
    display: -ms-inline-flexbox;
    display: inline-flex;
    -ms-flex-item-align: center;
    align-items: center;
    margin: 0px;
    margin-left: calc(1.1em + 8px);
    padding: 2px;
    border: 1px solid transparent;
}

.summaryText {
    -ms-flex: auto;
    flex: auto;
    white-space: nowrap;
    color: fuchsia; /*[{plugin-color}]*/
}

.summaryButton, button.summaryButton {
    cursor: pointer;
    background-image: none;
    background-color: transparent;
}

    .summaryButton:hover, button.summaryButton:hover, .summaryButton:focus, button.summaryButton:focus {
        color: lawngreen; /*[{Environment-CommandBarTextHover-Background}]*/
        border-color: lawngreen; /*[{Environment-CommandBarBorder-Background}]*/
        background-color: fuchsia; /*[{Environment-CommandBarMouseOverBackgroundBegin-Background}]*/
    }

    .summaryButton:active, button.summaryButton:active {
        color: lawngreen; /*[{Environment-CommandBarTextMouseDown-Background}]*/
        border-color: fuchsia; /*[{Environment-CommandBarBorder-Background}]*/
        background-color: fuchsia; /*[{Environment-CommandBarMouseDownBackgroundBegin-Background}]*/
    }

    .summaryButton:disabled, button.summaryButton:disabled, .summaryButton:disabled > .summaryText, button.summaryButton:disabled > .summaryText {
        color: lawngreen; /*[{Environment-CommandBarTextInactive-Background}]*/
        border-color: transparent;
        background-color: transparent;
        cursor: default;
    }

.summaryItem.hasIcon {
    margin-left: 0px;
}

    .summaryItem > .icon, summaryItem > .icon {
        width: 0px;
        height: 0px;
    }

    .summaryItem.hasIcon > .icon, summaryItem.hasIcon > .icon {
        width: 1.1em;
        height: 1.1em;
        margin-right: 8px;
        flex: 0 0 1.1em;
    }