﻿.visibleItem {

}

.hiddenItem {
    display: none;
}

.fixedContainer {
    height: inherit;
    display: grid;
    overflow: hidden;
}

.floatContainer:after {
    content: "";
    display: table;
    clear: both;
}

.groupFloatBox {
    float: left;
    width: calc(33.3% - 10px);
    margin: 5px;
    border-radius: 4px;
    background: linear-gradient(180deg, #DDDDDD 0%, #999999 100%);
    min-height: 200px;
}

.floatBox {
    float: left;
    width: 33.3%;
}

.floatBoxSmall {
    float: left;
    width: 33.3%;
}

.floatBoxFull {
    float: left;
    width: 99.9%;
}

.floatBoxAnimationGrow {
    animation: grow 0.25s linear forwards;
}

.floatBoxAnimationShrink {
    animation: shrink 0.25s linear forwards;
}

@keyframes grow {
    0% {
        width: 33.3%;
    }

    99% {
        width: 66.6%;
    }

    100% {
        width: 99.9%;
    }
}

@keyframes shrink {
    0% {
        width: 99.9%;
    }

    99% {
        width: 66.6%;
    }

    100% {
        width: 33.3%;
    }
}

.boxCanvas {
    grid-area: 1 / 1;
    margin: 0px;
    overflow: hidden;
}

.boxControlsVisible {
    position: absolute;
    top: 0px;
    bottom: 0px;
    right: 0px;
    background-color: rgba(200, 200, 200, 0.25);
    overflow: auto;
    width: 250px;
    padding: 5px;
}

.boxControlsInvisible {
    display: none;
}

@media screen and (min-width: 0px) and (max-width: 1000px) {
    .groupFloatBox {
        float: left;
        width: calc(100% - 10px);
        margin: 5px;
        border-radius: 4px;
        background: linear-gradient(180deg, #DDDDDD 0%, #999999 100%);
        min-height: 200px;
    }

    .floatBox {
        width: 100%;
    }

    .floatBoxSmall {
        width: 100%;
    }

    @keyframes grow {
        0% {
            width: 100%;
        }
        100% {
            width: 100%;
        }
    }

    @keyframes shrink {
        0% {
            width: 100%;
        }
        100% {
            width: 100%;
        }
    }

    .boxControlsVisible {
        position: absolute;
        bottom: 0px;
        left: 0px;
        right: 0px;
        background-color: rgba(200, 200, 200, 0.25);
        overflow: auto;
        top: auto;
        padding: 5px;
        width: auto;
        height: 250px;
    }

    .boxControlsInvisible {
        display: none;
    }
}

@media screen and (min-width: 1001px) and (max-width: 1599px) {
    .groupFloatBox {
        float: left;
        width: calc(50% - 10px);
        margin: 5px;
        border-radius: 4px;
        background: linear-gradient(180deg, #DDDDDD 0%, #999999 100%);
        min-height: 200px;
    }

    .floatBox {
        width: 50%;
    }

    .floatBoxSmall {
        width: 50%;
    }

    @keyframes grow {
        0% {
            width: 50%;
        }

        99% {
            width: 66.6%;
        }

        100% {
            width: 99.9%;
        }
    }

    @keyframes shrink {
        0% {
            width: 99.9%;
        }

        99% {
            width: 66.6%;
        }

        100% {
            width: 50%;
        }
    }

    .boxControlsVisible {
        position: absolute;
        bottom: 0px;
        left: 250px;
        right: 0px;
        background-color: rgba(200, 200, 200, 0.25);
        overflow: auto;
        top: auto;
        padding: 5px;
        width: auto;
        height: 250px;
    }

    .boxControlsInvisible {
        display: none;
    }
}

.marginBox {
    margin: 5px;
}

.buttonIndexLogo{
    font-size: 100px;
}

.buttonIndexTable{
    width: 100%;
}

.buttonIndex {
    width: 100%;
    height: 200px;
    border-radius: 4px;
    align-items: center;
    border: 0;
    background: none;
    /*-webkit-appearance: none;*/
    background-color: rgb(230, 230, 230);
    opacity: 0.8;
    transition: background-color 0.5s linear;
}

    .buttonIndex:hover {
        background-color: rgb(200, 200, 200);
    }

.buttonNew {
    width: 100%;
    height: 100px;
    border-radius: 4px;
    align-items: center;
    line-height: 3rem;
    border: 0;
    background: none;
    /*-webkit-appearance: none;*/
    background-color: rgb(230, 230, 230);
    opacity: 0.8;
    transition: background-color 0.5s linear;
}

    .buttonNew:hover {
        background-color: rgb(200, 200, 200);
    }

.buttonDynamic {
    width: 100%;
    min-height: 100px;
    border-radius: 4px;
    align-items: center;
    line-height: 3rem;
    border: 0;
    background: none;
    /*-webkit-appearance: none;*/
    background-color: rgb(230, 230, 230);
    opacity: 0.8;
    transition: background-color 0.5s linear;
}

    .buttonDynamic:hover {
        background-color: rgb(200, 200, 200);
    }

.buttonDel {
    font-size: 50px;
    width: 100px;
    height: 100px;
    border-radius: 4px;
    align-items: center;
    line-height: 3rem;
    border: 0;
    background: none;
    /*-webkit-appearance: none;*/
    background-color: rgb(230, 230, 230);
    opacity: 0.8;
    transition: background-color 0.5s linear;
}

    .buttonDel:hover {
        background-color: rgb(200, 200, 200);
    }

.buttonInfo {
    font-size: 50px;
    width: 100px;
    height: 100px;
    border-radius: 4px;
    align-items: center;
    line-height: 3rem;
    border: 0;
    background: none;
    /*-webkit-appearance: none;*/
    background-color: rgb(230, 230, 230);
    opacity: 0.8;
    transition: background-color 0.5s linear;
}

    .buttonInfo:hover {
        background-color: rgb(200, 200, 200);
    }

.buttonDrawing {
    font-size: 25px;
    width: 55px;
    height: 55px;
    border-radius: 4px;
    align-items: center;
    line-height: 3rem;
    border: 0;
    background: none;
    /*-webkit-appearance: none;*/
    background-color: rgb(230, 230, 230);
    opacity: 0.8;
    transition: background-color 0.5s linear;
}

    .buttonDrawing:hover {
        background-color: rgb(200, 200, 200);
    }

.buttonLanguage {
    width: 40px;
    height: 40px;
    border-radius: 4px;
    vertical-align: middle;
    border: 0;
    background: none;
    /*-webkit-appearance: none;*/
    padding: 3px;
}

    .buttonLanguage:active {
        background-color: rgba(255, 255, 255, 0.25);
        color: white;
    }

    .buttonLanguage:hover {
        background-color: rgba(255, 255, 255, 0.1);
        color: white;
    }

.buttonFlat {
    width: 100%;
    height: 46px;
    border-radius: 4px;
    align-items: center;
    line-height: 3rem;
    border: 0;
    background: none;
    /*-webkit-appearance: none;*/
    background-color: rgb(230, 230, 230);
    opacity: 0.8;
    transition: background-color 0.5s linear;
}

    .buttonFlat:hover {
        background-color: rgb(200, 200, 200);
    }

.settingsCaption {
    padding-left: 5px;
    font-size: x-small;
}

.editorCaption {
    font-size: x-small;
}

.editorCell {
    width: 100%;
}

.editorSelect {
    width: 100%;
    height: 26px;
    border-radius: 4px;
    border: 0;
    /*-moz-appearance: none;*/
    /*-webkit-appearance: none;*/
    background-color: rgb(230, 230, 230);
    background-repeat: no-repeat;
    background-position-x: right;
    background-position-y: center;
    transition: background-color 0.5s linear;
}

    .editorSelect:hover {
        background-color: rgb(200, 200, 200);
    }


.editorTextBox {
    width: 100%;
    height: 26px;
    border-radius: 4px;
    align-items: center;
    border: 0;
    background: none;
    /*-webkit-appearance: none;*/
    /*-moz-appearance: none;*/
    background-color: rgb(230, 230, 230);
}

.inputTextBox {
    width: 100%;
    height: 26px;
    border-radius: 4px;
    align-items: center;
    border: 0;
    background: none;
    /*-webkit-appearance: none;*/
    /*-moz-appearance: none;*/
    background-color: rgb(230, 230, 230);
}

.settingsTextBox {
    margin-left: 5px;
    width: calc(100% - 10px);
    height: 26px;
    border-radius: 4px;
    align-items: center;
    border: 0;
    background: none;
    /*-webkit-appearance: none;*/
    /*-moz-appearance: none;*/
    background-color: rgb(230, 230, 230);
}

.textBoxTable {
    width: 100%;    
}

.addSubctractButton {
    font-size: 10px;
    width: 40px;
    height: 26px;
    border-radius: 4px;
    align-items: center;
    border: 0;
    background: none;
    /*-webkit-appearance: none;*/
    /*-moz-appearance: none;*/
    background-color: rgb(230, 230, 230);
    opacity: 0.8;
    transition: background-color 0.5s linear;
}

    .addSubctractButton:hover {
        background-color: rgb(200, 200, 200);
    }

.messageBoxButton {
    font-size: 10px;
    width: 40px;
    height: 26px;
    border-radius: 4px;
    align-items: center;
    border: 0;
    background: none;
    /*-webkit-appearance: none;*/
    /*-moz-appearance: none;*/
    background-color: rgb(230, 230, 230);
    opacity: 0.8;
    transition: background-color 0.5s linear;
}

    .messageBoxButton:hover {
        background-color: rgb(200, 200, 200);
    }

input.editorCheckBox[type="checkbox"] {
    display: none;
}

    input.editorCheckBox[type="checkbox"] + label {
        position: relative;
        display: inline-flex;
        cursor: pointer;
    }

        input.editorCheckBox[type="checkbox"] + label:before {
            width: 40px;
            height: 20px;
            border-radius: 10px;
            background-color: rgb(230, 230, 230);
            content: "";
            margin-right: 15px;
            transition: background-color 0.5s linear;
        }

        input.editorCheckBox[type="checkbox"] + label:after {
            width: 16px;
            height: 16px;
            border-radius: 8px;
            background-color: rgb(255, 255, 255);
            content: "";
            transition: margin 0.1s linear;
            position: absolute;
            left: 2px;
            top: 2px;
        }

    input.editorCheckBox[type="checkbox"]:hover + label:before {
        background-color: rgb(200, 200, 200);
    }

    input.editorCheckBox[type="checkbox"]:checked + label:before {
        background-color: rgb(50, 255, 50);
    }

    input.editorCheckBox[type="checkbox"]:hover:checked + label:before {
        background-color: rgb(50, 200, 50);
    }

    input.editorCheckBox[type="checkbox"]:checked + label:after {
        margin: 0 0 0 20px;
    }

.scrollBox {
    overflow: auto;
    margin-left: 0px;
    margin-right: 0px;
}

.toolBox {
    position: absolute;
}

.linebreakText {
    white-space: pre-line;
    display: block;
    margin: 10px;
    margin-left: 30px;
    margin-bottom: 30px;
}

.linebreakTextSmall {
    font-size: small;
    white-space: pre-line;
    display: block;
    margin: 10px;
    margin-left: 30px;
    margin-bottom: 30px;
}

.toolButton {
    text-align: left;
}

.buttonCell {
    width: auto;
    padding: 5px;
    vertical-align: bottom;
}

.messageCell {
    width: 100%;
    padding: 5px;
}

.cookieBanner {
    position: absolute;
    bottom: 0px;
    width: 100vw;
    background: rgb(190, 190, 190);
    left: 0px;
    right: 0px;
}

.cookieTable{
    margin: 10px;
}

.messageBoxBanner {
    position: absolute;
    top: 0px;
    bottom: 0px;
    left: 0px;
    right: 0px;
}

.messageBoxBorder {
    background: rgb(0, 0, 0);
    top: 0px;
    bottom: 0px;
    opacity: 0.7;
    left: 0px;
    right: 0px;
    width: 100%;
    height: 100%;
    position: absolute;
}

.messageBoxTable {
    background: rgb(255, 255, 255);
    top: 50%;
    bottom: 50%;
    left: calc(50% - 200px);
    right: calc(50% - 200px);
    position: relative;
    padding: 10px;
    max-width: 400px;
    border-radius: 4px;
}

.emoji {
    font-size: 32px;
}