html,
body {
    margin: 0;
    height: 100%;
}

#app {
    display: flex;
    height: 100%;
    width: 100%;
    background-color: #0a6ab6;
}

#mainContainer {
    flex: 1;
    display: flex;
}

#sidebar {
    width: 260px;
    height: 100%;
    overflow: auto;
    overflow-x: hidden;
    background-color: #0e0e0e;
    outline-offset: -2px;
    outline: rgb(39, 39, 39) solid 2px;
    direction: rtl;
}

.sidebarItem {
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 180px;
    height: 100px;
    color: #ddd;
    cursor: pointer;

    outline: #292929 solid 2px;
}

.sidebarThumbnail {
    width: 180px;
    height: 100px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

}

#sandbox {
    flex: 1;
    width: 100%;
    height: 100%;
}

#sandboxArea {
    display: block;
    width: 100%;
    height: 85%;
    margin: 0;
    background-color: rgb(53, 53, 53);
}

footer {
    height: 14.5%;
    display: grid;
    grid-template-columns: 60% 40%;
    background-color: #0a6ab6;
    font-family: prstart;
    font-size: 12px;
    padding: 1px;


    -webkit-user-select: none;
    /* Safari */
    -moz-user-select: none;
    /* Firefox */
    -ms-user-select: none;
    /* IE10+/Edge */
    user-select: none;
    /* Standard */
}

#elements {
    display: block;
    margin-left: 5px;
    display: grid;
    grid-template-columns: auto auto auto auto auto auto auto auto;
    grid-template-rows: auto auto auto auto auto;
}

.element {
    display: inline-block;
    cursor: pointer;
    text-align: left;
    font-size: 12px;
}

.properties {
    color: #FFFFFF;
    display: grid;
    grid-template-columns: auto auto auto;
}

.settingGrid {
    display: grid;
    margin-left: auto;
    margin-right: auto;
    grid-template-columns: 5% 90% 5%;
    padding: 1px;
}

.setting {
    display: grid;
    margin-left: auto;
    margin-right: auto;
    padding: 1px;
}

.inline {
    display: flex;
}

.settingItem {
    cursor: pointer;
    padding: 6px;
    float: right;
    text-align: center;
}

.propIncrement {
    cursor: pointer;
    margin-top: 6px;
}

.propDecrement {
    cursor: pointer;
    margin-top: 4px;
}

#sauce>a {
    color: #FFFFFF;
    text-decoration: none;
}

.brushIndicator {
    position: absolute;
    width: 5px;
    height: 5px;
}

#brush0 {
    background-color: #FF0000;
    margin-top: 0px;
}

#brush1 {
    background-color: #0000FF;
    margin-top: 6px;
}

.outline {
    -webkit-text-stroke: 0.7px #000000;
}

@font-face {
    font-family: prstart;
    src: url('prstart.ttf');
}

/* width */
::-webkit-scrollbar {
    width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
    background: #292929;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #888;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #555;
}

.loader {
    border: 8px solid #f3f3f3;
    /* Light grey */
    border-top: 8px solid #3498db;
    /* Blue */
    border-radius: 50%;
    width: 30px;
    height: 30px;
    animation: spin 2s linear infinite;
}

.small-loader {
    margin-top: 5px;
    float: left;
    border: 2px solid #f3f3f3;
    /* Light grey */
    border-top: 2px solid #3498db;
    /* Blue */
    border-radius: 50%;
    width: 10px;
    height: 10px;
    animation: spin 2s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.disableSelection {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    outline: 0;
}