html, body {
	height: 100vh;
	overflow: hidden;
}

body {
	font-family: 'Ubuntu', sans-serif;
	display: flex;
}

#setWidth {
	margin: auto;
	width: 1000px;
}

#setWidth .rangeContainer {
	position: relative;
	width: 400px;
}

#setWidth .range {
	width: 1000px;
	outline: none;
}

#setWidth .rangeContainer .border {
	width: 2px;
	height: 100px;
	position: absolute;
	background-color: black;
	top: 0;
	left: 0;
}

#horizontalRuler {
	position: fixed;
	overflow: hidden;
	width: 100vw;
	height: 5vh;
	bottom: 0;
	left: 0;
}

#horizontalRuler .whole {
	border-left: 2px solid black;
	padding-left: 3px;
	height: 100%;
	position: absolute;
}

#horizontalRuler .half {
	border-left: 1px solid black;
	height: 50%;
	position: absolute;
	bottom: 0;
}

#verticalRuler {
	position: fixed;
	overflow: hidden;
	width: 3vw;
	min-width: 30px;
	height: 95vh;
	top: 0;
	left: 0;
}

#verticalRuler .whole {
	width: 100%;
	border-top: 2px solid black;
	position: absolute;
	text-align: right;
	padding-top: 2px;
}

#verticalRuler .half {
	border-top: 1px solid black;
	width: 50%;
	position: absolute;
	left: 0;
}

#controls {
	position: fixed;
	right: 50px;
	top: 50px;
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

#controls p {
	margin: 0 0 10px 0;
	
}

#controls .control {
	float: left;
	border: 0px solid transparent;
	border-radius: 100%;
	width: 50px;
	height: 50px;
	line-height: 50px;
	vertical-align: middle;
	text-align: center;
	margin-left: 5px;
	background-color: #e0e0e0;
}

#controls .control img {
	width: 30px;
	margin-top: 10px;
}

#scetches {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
}

#scetches .scetch {
	position: fixed;
	top: 30vh;
	left:  30vw;
	width: 400px;
	height: 400px;
	border: 2px solid black;
	background-color: rgba(0, 0, 0, 0.1);
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}



#scetches .circle {
	border-radius: 100%;
}

#scetches .a4,
#scetches .a5,
#scetches .a6,
#scetches .a7 {
	top: 0;
	left: 0;
}

#scetches .a4 .resizer-both,
#scetches .a5 .resizer-both,
#scetches .a6 .resizer-both,
#scetches .a7 .resizer-both {
	display: none;
}

#scetches .line_a {
	position: absolute;
	left: 33.33%;
	top: 0;
	height: 100%;
	width: 1px;
	background-color: black;
}

#scetches .line_b {
	position: absolute;
	left: 66.66%;
	top: 0;
	height: 100%;
	width: 1px;
	background-color: black;
}




#scetchTemplates .scetch {
	display: none;
}

#scetches div .info,
#scetchTemplates div .info {
	text-align: center;
	margin-top: 30px;
}

#scetches div .info .mover,
#scetchTemplates div .info .mover {
	display: inline-block;
	height: 20px;
	width: 30px;
	background-color: rgba(0, 0, 0, 0.5);
	vertical-align: middle;
	cursor: move;
}

#scetches div .info a,
#scetchTemplates div .info a {
	color: inherit;
	font-size: 30px;
	text-decoration: none;
	vertical-align: middle;
}

.scetch .resizer-both {
  width: 5px;
  height: 5px;
  background: transparent;
  z-index: 10;
  position: absolute;
  right: 0;
  bottom: 0;
  cursor: nwse-resize;
  background-color: black;
}