/*!
 * Stitches - HTML5 Sprite Generator
 * http://draeton.github.io/stitches
 *
 * HTML5 Sprite Sheet Generator
 *
 * Copyright 2013 Matthew Cobbs
 * Licensed under the MIT license.
 */
.stitches-progress {
    height: 4px;
    background-color: #e5e5e5;
}
.stitches-progress .progress {
    margin: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
}
.stitches-drop-box {
    flex-grow: 1;
    flex-shrink: 1;
    overflow: auto;
    position: relative;
}
.stitches-overlay {
    display: none;
    position: absolute;
    z-index: 1000;
    width: 100%;
    height: 100%;
    background-color: #e5e5e5;
    background-image: url(../img/stripes90.gif);
}
.stitches-overlay.in {
    opacity: 0.4;
}
.stitches-wrap {
    z-index: 0;
    width: 100%;
    height: 100%;
    background-color: #e5e5e5;
    overflow: auto;
    position: absolute;
}
.stitches-canvas {
    position: relative;
    z-index: 0;
    width: 0;
    height: 0;
    background-image: url(../img/checkerboard10.png);
}
/*!
 * Stitches - HTML5 Sprite Generator
 * http://draeton.github.io/stitches
 *
 * Toolbar Module
 *
 * Copyright 2013 Matthew Cobbs
 * Licensed under the MIT license.
 */
.stitches-toolbar {
    margin: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding: 6px;
    background-color: #fafafa;
    border-bottom: 1px solid #d4d4d4;
}
.stitches-toolbar button.files {
    position: relative;
    overflow: hidden;
}
.stitches-toolbar button.files input {
    position: absolute;
    top: 0;
    left: 10%;
    width: 80%;
    height: 100%;
    opacity: 0;
}
/*!
 * Stitches - HTML5 Sprite Generator
 * http://draeton.github.io/stitches
 *
 * Palette Module
 *
 * Copyright 2013 Matthew Cobbs
 * Licensed under the MIT license.
 */
.stitches-palette {
    display: none;
    
    width: 480px;
    margin-left: auto !important;
    margin-right:1.75rem;
}
.stitches-palette.fade.in {
    display: block;
    opacity: 1;
}
.stitches-downloads {
    width: 600px;
}
.stitches-downloads .stitches-palette-body {
    max-height: 250px;
    overflow: auto;
}
.stitches-downloads .stitches-example i {
    float: left;
    margin: 6px;
}
@media (max-width: 767px) {
    .stitches-palette {
        top: 0;
        right: 0;
        width: 100%;
        border-left: 0;
        border-right: 0;
    }
}
/*!
 * Stitches - HTML5 Sprite Generator
 * http://draeton.github.io/stitches
 *
 * Sprite Module
 *
 * Copyright 2013 Matthew Cobbs
 * Licensed under the MIT license.
 */
.stitches-sprite {
    display: none;
    z-index: 0;
    position: absolute;
    cursor: pointer;
}
.stitches-sprite.placed {
    display: block;
}
.stitches-sprite:hover {
    z-index: 1;
    background-color: #e5e5e5;
    background-image: url(../img/stripes90.gif);
}
.stitches-sprite:hover img {
    opacity: 0.7;
}
.stitches-sprite.active {
    z-index: 2;
}
.stitches-sprite.active img {
    outline: 2px solid #3a87ad;
}
body, html {
    height: 100%;
    width: 100%;
}
.texturepacker {
    min-width: 400px;
    min-height: 200px;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-content: stretch;
    border: 1px solid #777;
}
.texturepacker > img {
    display: none;
}