@import url(https://fonts.googleapis.com/css?family=Roboto);

html, body {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  background-color: #262626;
/*  font-family: 'Roboto', sans-serif;*/
  font-family: "Source Sans Pro";
}

.toolbar {
  width: 300px;
  height: 100%;
  min-height: 100%;
  padding-top: 36px;
  background-color: #222222;
  color: #cccccc;
  border-right: 3px double #282828;
  box-shadow: 0px 0px 100px rgba(0, 0, 0, 0.5);
  overflow: hidden;
}

.window {
  position: absolute;
  overflow: hidden;
}

.window .section {
  padding: 5px;
  border-radius: 5px;
}
 
.toolbar *, .window * {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
} 

.toolbar .section {
  width: 92%;
  margin: 10px auto;
  padding: 5px;
  background-color: #333333;
  border-radius: 5px;
}

.toolbar .section h2, .window .section h2 {
  background-color: #1d9fdb;
  border-top: 1px solid #83d8ff;
  border-radius: 3px 3px 0px 0px;
  margin: 0px;
  padding: 6px 8px;
  color: #ffffff;
  text-align: center;
  text-shadow: 1px 1px rgba(0, 0, 0, 0.5);
  font-size: 18px;
  font-weight: 600;
  line-height: 20px;
  letter-spacing: 0px;
}

.toolbar .section h2 span, .window .section h2 span {
  font-size: 0.7em;
}

.toolbar .section h2 .name {
  font-size: 0.9em;
  padding: 5px 70px;
  cursor: move;
}

.window .section h2 .name {
  font-size: 0.9em;
  padding: 5px 24px;
  cursor: move;
}


.toolbar .section h2 .glyphicon:before, .window .section h2 .glyphicon:before {
  padding: 5px;
}

.toolbar .section h2 .glyphicon:hover, .window .section h2 .glyphicon:hover {
  color: #cccccc;
}

.toolbar .section > div, .window .section > div {
  position: relative;
  background-color: #cccccc;
  border: 1px solid #222222;
  border-top: 0px;
  box-shadow: inset 0px 0px 5px #222222;
  padding: 4px;
  border-radius: 0px 0px 3px 3px;
  overflow: hidden;
}

.section button, .window .section button {
  color: #ffffff;
  font-size: 11px;
  text-shadow: 0px -1px #333333;
  text-decoration: none;
  box-shadow: inset 0px 1px #777777;
  background-color: #555555;
  border: 2px solid #222222;
  padding: 3px 6px;
  border-radius: 5px;
  cursor: pointer;
}

.section button:hover, .window .section button:hover {
  background-color: #1d9fdb;
  border: 2px solid #ffffff;
}

.toolbarSectionObjects {
  
}

.toolbarSectionObjects .toolbarSectionObject {
  /*height: 10px;*/
  color: #ffffff;
  text-shadow: -1px -1px rgba(0, 0, 0, 0.5);
  font-size: 12px;
  line-height: 10px;
  padding: 5px 10px 5px 10px;
  background-color: #666666;
  border-top: 1px solid #999999;
  border-bottom: 1px solid #333333;
  cursor: pointer;
  
  -webkit-transition: -webkit-transform 0.2s ease-out;
  -moz-transition: -moz-transform 0.2s ease-out;
  -ms-transition: -moz-transform 0.2s ease-out;
  transition: transform 0.2s ease-out;
}

.toolbarSectionObjects .selected {
  background-color: #1d9fdb;
}

.toolbarSectionObjects .hovered {
  background-color: #999999;
}

.toolbarSectionObjects .toolbarSectionObject .left {
  display: inline;
  width: 20px;
  height: 20px;
  float: left;
  text-align: center;
}

.toolbarSectionObjects .toolbarSectionObject .center {
  display: inline;
  margin-left: 24px;
  line-height: 16px;
}

.toolbarSectionObjects .toolbarSectionObject .right {
  display: inline;
  width: 20px;
  height: 20px;
  float: right;
  text-align: center;
}

.canvasContainer {
  position: absolute;
  top: 50px;
/*  left: 400px;*/
  width: 720px;
  height: 720px;
/*  box-shadow: inset 4px 4px 0px #0066cc,inset -4px -4px 0px #0066cc; */
  border: 4px solid #0066cc;
/*  overflow: hidden; */
}

.canvasViewport {
  width: 480px;
  height: 480px;
  margin: 40px 40px;
  background-color: white;
}

.canvas {
  
}

.canvasOuter {
  position: absolute;
  left: 0;
  top: 0;
}

.draggable-moving {
  opacity: 0.25;
  -webkit-transform: scale(0.9);
  -moz-transform: scale(0.9);
  -ms-transform: scale(0.9);
  transform: scale(0.9);  
}