#scriptingGUI {
    bottom: 0px;
    left: 46px;
    text-align: center;
    width: calc(100% - 266px);
    height: 300px;
    z-index: 4;
    /* transition: height 0.2s ease; */
    border-radius: 9px 9px 0px 0px;
}

#errorMessage {
    margin-left: 3px;
    margin-top: 3px;
    color: red;
    display:hidden;
    position: absolute;
    font-weight: bold;
}

#scriptObjectDiv {
    width: 100%;
    height: 100%;
}

#scriptEditor {
    text-align: left;
    width: calc(100% - 152px);
    height: calc(100% - 36px);
    left: 149px;
    top: 24px;
    font-size: 14px;
    border-style: solid;
    border-width: 1px;
    border-color: #AAA;
}

#scriptEditorSidebar {
    position: absolute;
    width: calc(149px);
    height: calc(100% - 36px);
    left: 2px;
    top: 24px;
    background-color: #333;

    border-style: solid;
    border-width: 1px;
    border-color: #AAA;

    overflow-x: hidden;
    overflow-y: auto;
}

#noSelectionDiv {
    color: #DDD;
    height: calc(100% - 36px);
    background-color: #444;
    border-style: solid;
    border-width: 1px;
    border-color: #666;
    margin-left: 2px;
    margin-right: 2px;
    margin-top: 24px;
    overflow: hidden;
}
#noSelectionText {
    position: relative;
    height: 100%;
    width: 100%;
    top: calc(50% - 8px);
}

#scriptEditorObjectName {
    position: absolute;
    width: 100%;
    height: 30px;
    top: 0px;
    left: 0px;
    color: white;
    overflow: hidden;
}

#scriptEditorObjectThumbnail {
    position: absolute;
    width: 100px;
    height: 100px;
    top: 30px;
    left: 0px;
}

#scriptingIDEHeader {
    left: 0px;
    top: 0px;
    width: calc(100% - 7px);
    height: 23px;
    position: absolute;
    color: white;
    padding-top: 6px;
    padding-left: 7px;
    text-align: left;

    font-size: 14px;

    background-color: none;
    /*cursor: pointer;*/

    box-shadow: none;

    -webkit-transition: background-color 500ms linear;
    -ms-transition: background-color 500ms linear;
    transition: background-color 500ms linear;

    border-radius: 7px;
}
/*#scriptingIDEHeader:hover {
    box-shadow: inset 0 0 1px #fff;
}*/

#closeScriptingGUIButton {
    right: 5px;
    top: 1px;
    position: absolute;
    background-image: url('../resources/close-tab.svg');
    width: 14px;
    height: 14px;
    background-size: 13px 13px;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 2px;
}

#openScriptingGUIButton {
    right: 5px;
    top: 1px;
    position: absolute;
    background-image: url('../resources/open-tab.svg');
    width: 14px;
    height: 14px;
    background-size: 13px 13px;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 2px;
}

#beautifyButton {
    right: 51px;
    top: 1px;
    position: absolute;
    background-image: url('../resources/beautify.png');
    width: 14px;
    height: 14px;
    background-size: 13px 13px;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 2px;
}

#expandScriptingGUIButton {
    right: 28px;
    top: 1px;
    position: absolute;
    background-image: url('../resources/fullscreen.png');
    width: 14px;
    height: 14px;
    background-size: 13px 13px;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 2px;
}

#minimizeScriptingGUIButton {
    right: 28px;
    top: 1px;
    position: absolute;
    background-image: url('../resources/unfullscreen.png');
    width: 14px;
    height: 14px;
    background-size: 13px 13px;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 2px;
}

#resizeScriptingGUIBar {
    position: absolute;
    background-color: rgba(0,0,0,0);
    cursor: ns-resize;
    height: 24px;
    width: 100%;
    left: 0px;
    top: 0px;
}

/* reference section */

#scriptEditorReference {
    margin-left: 0px;
    margin-top: 5px;
    margin-bottom: 15px;
}

.sidebarGroup {
    text-align: left;
    overflow: hidden;
    height: 16px;
    cursor: pointer;
}

.sidebarTitle {
    font-weight: bold;
    margin-left: 6px;
    border-radius: 3px;
    color: #BBB;
    padding-left: 3px;

    width: 90%;

    -webkit-transition: background-color 50ms linear;
    -ms-transition: background-color 50ms linear;
    transition: background-color 50ms linear;
    -webkit-transition: color 50ms linear;
    -ms-transition: color 50ms linear;
    transition: color 50ms linear;
}
.sidebarTitle:hover {
    background-color: #31E19C;
    color: black;
}

.sidebarGroupElement {
    cursor: pointer;
    margin-left: 18px;
    border-radius: 3px;
    color: #BBB;
    padding-left: 3px;
}
.sidebarGroupElement:hover {
    background-color: #31E19C;
    color: black;

    -webkit-transition: background-color 50ms linear;
    -ms-transition: background-color 50ms linear;
    transition: background-color 50ms linear;
    -webkit-transition: color 50ms linear;
    -ms-transition: color 50ms linear;
    transition: color 50ms linear;
}