html, body {
 height: 100%;
 margin: 0;
 padding: 0;
}
body {
 background-color: #fff;
 font-family: Roboto, sans-serif;
 overflow: hidden;
}

/* HEADER + HEADER's PARTS*/
#head { 
 height: 75px;
 padding-right: 15px;
 background-color: #0097A7;
 color: #ffffff;
}

#optionsArea {
 float: right;
 height: 75px;
 line-height: 75px;
}
#optionsArea ul {
	margin: 0;
}
#optionsArea li {
	display: inline;
}
#optionsArea li::after {
	content: '|';
	color: #7FCBD3;
}
#optionsArea li:last-child::after {
	content: none;
}
#optionsArea a {
 font-weight: 700;
 font-size: 20px;
 margin-left: 5px;
 margin-right: 5px;
 color: #ffffff;
 text-transform: uppercase;
 text-decoration: none;
 opacity: 0.8;	
}
#optionsArea a:hover {
 opacity: 1;
}
#optionsArea #type_toolbox {
 color: #00636E;
}
#options {
	float: right;
}
#options-btn {
 float: right;
 cursor: pointer;
 padding-left: 10px;
 font-size: 40px;
 opacity: 0.8;
}
#options-btn:hover {
 opacity: 1; 
}
.btnOptions-on .fas::before {
	content: "\f0c9";
	font-size: 30px;
}
.btnOptions-off .fas::before {
	content: "\f101";
	font-size: 30px;
}
.btnOptions-on {
  margin-top:-3px;
  color: #7FCBD3;
}
.btnOptions-off {
  margin-top:-3px;
color: #7FCBD3;  
}
#file-chooser {
 display: none;
}

/* CONTENT + CONTENT's PARTS */
#content {
 width: 100%;
 height: calc(100% - 110px);
 padding: 0px;
 margin: 0px;
}

/* 1 */
#unfoldArea {
 float:left;
 width: 20px;
 height: 100%;
 padding: 0px;
 margin: 0px;
 background-color: #F8F6F6;
 text-align: center;
}

/* 2 */
#runArea {
 position: relative;
 float: left;	
 width: 460px;
 height: 100%;
 padding: 0px;
 margin: 0px;	
 background-color: #F8F6F6;
 background-image: url('media/gears.png');
 background-position: center bottom;
 background-repeat: no-repeat;
}

#runArea.nodeco {
 background-image: none;
}

/* 3 */
#devArea {
 box-sizing: border-box;
 float:left;
 height: 100%;
 order-left: 1px solid #C7C7C7;
  background-color: #ffffff;
}
.devArea-min {
 width: calc(100% - 480px);
}
.devArea-extended {
	width: calc(100% - 20px);
}
#devAreaInfos {
height: 40px;
line-height: 40px;
padding-left: 20px;
/*background-color: #0097A7;
opacity: 0.5;*/
background-color: rgba(0, 151, 167, 0.5);
white-space: nowrap;
}
#nbBlocs-icon {
	float: left;
	color: #ffffff;
	font-size: 25px;
	opacity: 0.8;
}
#nbBlocs {
	float: left;
	color:#ffffff;
	font-weight: 500;
	font-size: 1em;	
	padding-left: 20px;
}
#blocklyArea {
 width: 100%;
 height:calc(100% - 40px);
 margin: 0px;
 padding: 0px;
 background-color: #ffffff;
}

/* FOOTER */
#foot {
 height: 35px;
 line-height: 35px;
 padding-left: 20px;
 padding-right: 20px;
 background-color: #333333;
 color: #ffffff;
 font-size: 14px;
 white-space: nowrap;
}
#numVersion {
 float: left;
 opacity: 0.3;
}
#powered {
 float: right;
}

/* === runArea */

#ctrlArea { 	
 width: 400px;
 height: 52px;
 line-height: 52px;
 margin: 20px;
 margin-left: 19px;
 white-space: nowrap;
}
#buttonArea {
	float: left;
}
#execArea {
	float: left;
	margin-left: 10px;
	font-size: 30px;
	color: #DA7122;
	opacity: 0.5;
	display: none;
}
#sliderArea {
	float: right;
}
#saveArea, #helpArea {
	float: left;
	margin-left: 15px;
}

/* === unfoldArea */

#btnUnfold {
	margin-top: 5px;
	cursor: pointer;
	color: #969696;
}

.btnUnfold-off .fas::before {
	content:"\f0d9";
}
.btnUnfold-on .fas::before {
	content:"\f0da";
}

/* === Blockly INJECTION */

#blocklyDiv {
	position: absolute;
	z-index: 110;
}

.clearer {
	clear: both;
}

/* +++++++++++ Slider */
.sliderTrack {
  stroke: #aaa;
  stroke-width: 6px;
  stroke-linecap: round;
}
.sliderKnob {
  fill: #ddd;
  stroke: #bbc;
  stroke-width: 1px;
  stroke-linejoin: round;
}
.sliderKnob:hover {
  fill: #eee;
}

/* Misc */
.hidden {
	visibility: hidden;
}
.nodisplay {
	display: none;
}

/* +++++++++++  Blockly */
.blocklyTreeRow, .blocklyTreeLabel {
  cursor: pointer;
}
.blocklyTreeRow {
	margin-bottom: 3px;
}
.blocklyTreeSeparator {
  margin-top: 12px;
  margin-bottom: 12px;
  border-bottom: 1px solid #B3B3B3;
}
.blocklyToolboxDiv {
	padding: 20px;
	padding-top: 10px;
}
.blocklyTreeRoot::before {
	content: "Biblioth\00E8que";
	font-size: 1.2em;
	font-weight: 700;
	text-transform: uppercase;
	display: block;
	
	color: #BCBCBC;
	margin-bottom: 10px;
}
.blocklyFlyoutLabelText {
	font-size: 1.1em;
	font-weight: 700;
	text-transform:uppercase;
    fill: #BCBCBC;
}

/* couleurs */
.colorRed {
	color: #993333;
}
.colorGreen {
	color: #009900;
}