/*
Usage:
- linear-gradient((color1, color2, color3)) - returns linear-gradient with evenly distributed colors,
   if 3 colors used then the position of each will be 33,33%
- linear-gradient((color1 0%, color2 30%, color3 80%)) - returns linear-gradient with manually distributed colors,
   first param - color, second - position. Also you can use px or other valid units for set position.
*/
/* based on "visually-hidden" mixin in LDS for accessibility goals */
/* Do not edit */
.window-component {
    display: flex;
    flex-direction: column;
}

.window-component .window-component-title-bar {
    display: flex;
    padding: 3px 8px;
}

.window-component .window-component-title-bar .window-component-title {
    flex: 1;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

.window-component .window-component-title-bar .window-component-controls {
    flex: 0 1 auto;
}

.window-component .window-component-title-bar .window-component-controls button {
    padding: 0;
    height: auto;
    margin-left: 8px;
}

.window-component .window-component-body {
    flex: 1;
    padding: 8px;
}

.window-component {
    border: 1px solid #333333;
}

.window-component .window-component-title-bar {
    background-color: #333333;
    color: white;
}

.window-component .window-component-title-bar .window-component-controls button {
    background-color: transparent;
}

.window-component .window-component-body {
    background-color: #f3f1ef;
}

/*# sourceMappingURL=windowComponent.css.map */