body {
    background-color: #202631;
    font-family: sans-serif;
    margin: 0;
    overflow-x: hidden;
    overflow-y: hidden;
}

h1 {
    font-weight: normal;
    font-size: 130%;
}

h1 a {
    text-decoration: none;
}

a:hover {
    color: #f00;
}

.farSide {
    text-align: right;
}

#containerAsk{

    padding: 0 1ex 0;
    font-size: xx-large;
    line-height: 0;
    background-color: #4d90fe;
}
button{

    outline:none;

}
input{
    outline:none;
}

.askSide {
    text-align: center;
}

html[dir="RTL"] .farSide {
    text-align: left;
}

.level_number {
    border: solid 1px #ddd;
    border-radius: 20px;
    padding: 6px 12px;
    color: #888;
}

.level_dot {
    border: solid 1px #ddd;
    border-radius: 50%;
    width: 15px;
    height: 15px;
    display: inline-block;
}

.level_done, .level_dot:hover, .level_number:hover {
    background-color: #ddd;
    color: #000;
}

.askButton {
    margin: 1px;
    padding: 10px;
    border-radius: 4px;
    border: 1px solid #4d90fe;
    background-color: #4d90fe;
    color: #fff;
    font-size: xx-large;
}

.imageButton {
    margin: 1px;
    padding: 1px;
    border-radius: 4px;
    border: 1px solid #4d90fe;
    background-color: #4d90fe;

}

#containerCode {
    direction: ltr;
    background-color: #eee;
    padding: 5px;
    margin: 0 3ex;
    font-size: large;
    overflow: auto;
    max-height: 200px;
}

img[src$="help.png"] {
    height: 64px;
    width: 64px;
}

html[dir="RTL"] .mirrorImg {
    transform: scaleX(-1);
    -moz-transform: scaleX(-1);
    -webkit-transform: scaleX(-1);
    -o-transform: scaleX(-1);
    -ms-transform: scaleX(-1);
}

/* Dialogs */
#dialog {
    visibility: hidden;
    background-color: #364051;
    color: #fff;
    position: absolute;
    border-radius: 8px;
    border-width: 1px;
}

#dialogBorder {
    visibility: hidden;
    position: absolute;
    background-color: #364051;
    color: #000;
    border: 1px solid #000;
    border-radius: 20px;
}

#dialogShadow {
    visibility: hidden;
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: #131822;
    opacity: 0.85;
}

.dialogAnimate {
    transition-property: width height left top opacity;
    transition-duration: 0.2s;
    transition-timing-function: linear;
}

.dialogHiddenContent {
    visibility: hidden;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

#dialogHeader {
    height: 25px;
    margin: -10px -10px 15px;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    background-color: #ddd;
    cursor: move;
}

#dialog button {
    min-width: 4em;
}

.readonly .blocklyMainBackground {
    stroke: none;
}

.help-menu{font-size:13px; color:#000; background-color: #fff; padding:10px; margin:1px; border-radius:4px; cursor:pointer; display:inline-block;}
.help-menu:hover{box-shadow: 2px 2px 5px #888;}
.help-menu:active{ border: 1px solid #888 !important;}

.run-menu { color:#FFFFFF; background-color:#dd4b39; ;padding:10px; margin:1px;border-radius: 4px;; cursor:pointer; display:inline-block; } /* 主選單的樣式 */
.run-menu:hover { background-color:#9e3642; }

.autosave {padding:10px;}



.filespec{font-size:13px; color:#000; background-color: #fff; padding:10px; margin:1px; border-radius:4px; cursor:pointer; display:inline-block;}
.filespec:hover{ box-shadow: 2px 2px 5px #888;}
.filespec:active{ border: 1px solid #888 !important;}

#con_ing_pro{margin:0px -80px;  position:relative;  left:50%  }

.connect-menu{font-size:13px; color:#000; background-color: #fff; padding:10px; margin:1px; vertical-align: bottom; border-radius:4px; cursor:pointer; display:inline-block;}
.connect-menu:hover{box-shadow: 2px 2px 5px #888;}

#proj_info_span{ font-size:20px; color:#000; background-color: #fff; padding:10px; margin:1px; vertical-align: bottom; border-radius:4px; cursor:pointer; display:inline-block;}

.sub-menu a { text-align:left; display:block; text-decoration:none; color:#0000FF; }
.sub-menu a:hover { color:#0000FF; background-color:#f0f0f0; text-decoration:none; }

/* app build pro */

/* width */
::-webkit-scrollbar {
    width: 6px;
	height:6px;
}

/* Track */
::-webkit-scrollbar-track {
    border-radius: 10px;
	width:6px;
	height:6px;
	background: #576c8c; 
}
 
/* Handle */
::-webkit-scrollbar-thumb {
    background: #00b7ee; 
    border-radius: 10px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #00b7ee; 
}

/* Hide the browser's default checkbox */
.cm_container input {
    display:none;
}

/* Create a custom checkbox */
.checkmark {
	display:inline-block;
	vertical-align:middle;
    height: 20px;
    width: 20px;

	border: 1px solid white;
}

/* On mouse-over, add a grey background color */
.cm_container .checkmark:hover{
    background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
.cm_container input:checked ~ .checkmark {
    background-color: #00b7ee;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
    content: "";
    position: relative;
    display: none;
}

/* Show the checkmark when checked */
.cm_container input:checked ~ .checkmark:after {
    display: block;
}

/* Style the checkmark/indicator */
.cm_container .checkmark:after {
    left: 5px;
    top: 2px;
    width: 8px;
    height: 10px;
    border: solid white;
    border-width: 0 1px 1px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}
