html,
body {
  -webkit-user-select: none;
  user-select: none;
  min-height: 100vh;
  font-family: 'Roboto', sans-serif;
}

#rootPanel {
  overflow: hidden;
  position: relative;
  width: 100px;
  height: 100px;
}
#savePngRoot {
  display: none;
}
#savePngControlPanel {
  margin: 10px;
  border: 1px solid black;
  border-radius: 4px;
  padding: 20px;
  box-shadow: rgba(0, 0, 0, 0.5) 4px 4px 10px;
}
#savePngControlPanel table input[type="text"] {
  width: 95px;
}
#savePngControlPanel table > tbody > tr > td {
  padding: 4px;
}
#savePngControlPanel table > tbody > tr:nth-of-type(3) > td {
  text-align: right;
}
.panelExpandContractToggle {
  position: absolute;
  top: 50%;
  margin-top: -15px;
  width: 30px;
  height: 30px;
  background-color: #333;
  cursor: pointer;
}
.panelExpandContractToggle img:last-of-type {
  display: none;
}
.panelExpandContractToggleLeft {
  left: 0;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}
.panelExpandContractToggleRight {
  right: 0;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
}
#libraryPanel {
  position: absolute;
  box-sizing: border-box;
  top: 0;
  left: 0;
  bottom: 0;
  /** width: 257px; **/
  background-color: #333333;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
#libraryExpandPanel {
  position: absolute;
  top: 8px;
  left: 283px;
  font-size: 40px;
  font-weight: normal;
  color: #f2f2f2;
  text-shadow:
   -1px -1px 0 #000,
    1px -1px 0 #000,
    -1px 1px 0 #000,
     1px 1px 0 #000;
  height: 30px;
  cursor: pointer;
}

.overlay {
    height: 100%;
    left: 273px;
    width: 0;
    position: fixed;
    z-index: 552;
    top: 0;
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0, 0.9);
    overflow-x: hidden;
    overflow-y: hidden;
    transition: 0.5s;
}

.overlay-content {
    position: absolute;
    top: 60px;
    left: 40px;
    text-align: center;
    margin-top: 30px;
}

.overlay a {
    padding: 8px;
    text-decoration: none;
    font-size: 36px;
    color: #818181;
    display: block;
    transition: 0.3s;
}

.overlay a:hover, .overlay a:focus {
    color: #f1f1f1;
}

.overlay .closebtn {
    position: absolute;
    top: -16px;
    left: 3px;
    font-size: 60px;
    z-index:600;
}

@media screen and (max-height: 450px) {
  .overlay a {font-size: 20px}
  .overlay .closebtn {
    font-size: 40px;
    top: 15px;
    right: 35px;
  }
}

#librarySearch {
  width: 257px;
  height: 44px;
  padding: 5px;
}
#filtersPanel {
  width: 257px;
  height: 51px;
  background-color: #b2b2b2;
}
#filtersPanel .filterToggle {
  cursor: pointer;
  float: left;
  margin-right: 1px;
}
#filtersPanel .filterToggle:last-of-type {
  margin-right: 0;
}
#filtersPanel .filterToggle .filterToggleIcon {
  /*border: 1px solid black;*/
  background-color: white;
}
#filtersPanel .filterToggle .filterToggleHighlight {
  margin-top: 1px;
  height: 7px;
  background-color: #222;
}
#filtersPanel .filterToggle .filterToggleHighlight img {
  display: none;
}
#filtersPanel .filterToggle .filterToggleHighlightEnabled {
  background-color: #36e53f;
  box-shadow: rgba(0, 0, 0, 0.25) 1px 0 1px;
}
#filtersPanel .filterToggle .filterToggleHighlightEnabled img {
  display: block;
}
#libraryContent {
  box-sizing: border-box;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
/*  -webkit-overflow-scrolling: touch */

  /*height: 400px;*/
}

#paletteContent {
  box-sizing: border-box;
  overflow-x: hidden;
  overflow-y: scroll;
  scroll-behavior: smooth;
  max-height: 600px;
/*  -webkit-overflow-scrolling: touch */

  /* height: 77.1%; */
}

/* #paletteContent::-webkit-scrollbar:vertical {
  width: 16px;
}

#paletteContent::-webkit-scrollbar-track
{
-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
background-color: #F5F5F5;
}


#paletteContent::-webkit-scrollbar
{
-webkit-appearance: none;
width: 16px;
background-color: #F5F5F5;
}

#paletteContent::-webkit-scrollbar-thumb
{
background-color: #000000;
border: 2px solid #555555;
} */

/* #libraryContent::-webkit-scrollbar:vertical {
    width: 16px;
}

#libraryContent::-webkit-scrollbar-track
{
  -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
  background-color: #F5F5F5;
}

#libraryContent::-webkit-scrollbar
{
  -webkit-appearance: none;
  width: 16px;
  background-color: #F5F5F5;
}

#libraryContent::-webkit-scrollbar-thumb
{
	background-color: #000000;
	border: 2px solid #555555;
} */

#libraryPreview {
  position: fixed;
  box-sizing: border-box;
  height: 220px;
  border-top: 1px solid #555;
  bottom: 0px;
}
#libraryPreview #libraryPreviewExpandCollapseButton {
  position: absolute;
  top: 0;
  left: 0;
  width: 30px;
  height: 30px;
  background-color: #555555;
  cursor: pointer;
}
#libraryPreview #libraryPreviewTitle {
  position: absolute;
  top: 0;
  left: 30px;
  height: 30px;
  display: block;
  padding: 3px 10px 2px 10px;
  font-size: 18px;
  font-weight: normal;
  color: #f2f2f2;
  border-bottom: 2px solid #555555;
  text-shadow:
   -1px -1px 0 #000,
    1px -1px 0 #000,
    -1px 1px 0 #000,
     1px 1px 0 #000;
  width: 243px;
}
#libraryPreview #libraryPreviewHeader {
  padding: 0px;
  background-color: #888;  
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  cursor: pointer;
}
#libraryPreview #libraryPreviewCanvas {
  position: absolute;
  top: 40px;
  left: 10px;
  width: 140px;
  height: 140px;
  background-color: white;
  border: 1px solid black;
  border-color: black;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.allTiles
{
  width: 30px;
  height: 30px;
}

.removeAllTiles
{
  float: right;
  width: 30px;
  height: 30px;
}
/* Start Library format styles */
.tileLibraryContainer
{
  height: 100%;
  width: 600px;
  overflow-x: hidden;
}

.tileLibraryContainer:first-of-type
{
  padding-top: 0;
}

.libraryTileSetHeader
{
  width: 600px;
  background-color: #888;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  cursor: pointer;
}

.libraryTileSetHeaderTitle
{
  float: right;
  padding: 3px 10px 2px 10px;
  font-size: 18px;
  font-weight: normal;
  color: #f2f2f2;
  text-shadow:
   -1px -1px 0 #000,  
    1px -1px 0 #000,
    -1px 1px 0 #000,
     1px 1px 0 #000;
  width: 540px;
}

.libraryTileSetHeaderExpandToggleIcon
{
  float: left;
  background-color: #555555;
  height: 30px;
  width: 60px;
}

.libraryTileSetContent
{
  padding-top: 12px;
  padding-left: 12px;
  padding-right: 12px;
}

.libraryTile
{
  cursor: pointer;
  width: 69px;
  height: 69px;
  margin-right: 10px;
  margin-bottom: 10px;
  background-color: white;
  border: 1px solid black;
  outline-color: black;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.selectedLibraryFloorTile
{
 box-shadow: 0px 0px 10px #F122E4, 0px 0px 10px #F122E4;
}

.selectedLibraryTile
{
 box-shadow: 0px 0px 10px #EBFF00, 0px 0px 10px #EBFF00;
}

.libraryTile:nth-child(7n + 0)
{
  margin-right: 0px;
}
/* End Library format styles */

/* Start palette format styles */
.paletteHeaderBox
{
  width: 274;
  background-color: #555555;
  border-color: #333333;
  border-top-style: hidden;
  border-right-style: hidden;
  border-bottom-style: solid;
  border-left-style: hidden;
}

.paletteHeaderText
{
  padding: 3px 10px 2px 10px;
  font-size: 18px;
  font-weight: normal;
  color: #f2f2f2;
  text-shadow:
   -1px -1px 0 #000,  
    1px -1px 0 #000,
    -1px 1px 0 #000,
     1px 1px 0 #000;  
}

.paletteEditButton
{
  float: right;
  width: 30px;
  height: 30px;
}

.tilePaletteContainer
{
  height: 100%;
  width: 257px;
  overflow-x: hidden;
}

.tilePaletteContainer:first-of-type
{
  padding-top: 0;
}

.paletteTileSetHeader
{
  width: 257px;
  background-color: #888;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  cursor: pointer;
}

.paletteTileSetHeaderTitle
{
  display: inline-block;
  padding: 3px 10px 2px 10px;
  font-size: 18px;
  font-weight: normal;
  color: #f2f2f2;
  text-shadow:
   -1px -1px 0 #000,  
    1px -1px 0 #000,
    -1px 1px 0 #000,
     1px 1px 0 #000;
}

.paletteTileSetHeaderExpandToggleIcon
{
  float: left;
  background-color: #555555;
  height: 30px;
  width: 30px;
}

.paletteTileSetContent
{
  padding-top: 12px;
  padding-left: 12px;
  padding-right: 12px;
}

.paletteTile
{
  cursor: pointer;
  width: 69px;
  height: 69px;
  margin-right: 10px;
  margin-bottom: 10px;
  background-color: white;
  border: 1px solid black;
  outline-color: black;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.selectedPaletteFloorTile
{
 box-shadow: 0px 0px 10px #F122E4, 0px 0px 10px #F122E4;
}

.selectedPaletteTile
{
 box-shadow: 0px 0px 10px #EBFF00, 0px 0px 10px #EBFF00;
}

.paletteTile:nth-child(3n + 0)
{
  margin-right: 0px;
}
/* End palette format styles */

/* Start Library Menu Buttons */
.libraryMenuButton {
  border-radius: 4px;
  background-color: #a50808;
  border: none;
  color: white;
  padding: 15px 16px;
  text-align: center;
  display: inline-block;
  font-size: 16px;
  margin: 4px 2px;
  -webkit-transition-duration: 0.4s;
  transition-duration: 0.4s;
  width: 200px;
}

.libraryMenuButton:hover {
  box-shadow: 0 12px 16px 0 rgba(0,0,0,0.24),0 17px 50px 0 rgba(0,0,0,0.19);
}

.libraryMenuButton:focus {
  outline: 0;
  box-shadow: 0 17px 50px 0 rgba(0,0,0,0.19);
  background-color: #09ad2b;
}
/* End Library Menu Buttons */

/* Start Select Active Palette Dropdown */
select#activePaletteSelector {
  -webkit-appearance: button;
  -webkit-border-radius: 2px;
  -webkit-box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.1);
  -webkit-padding-end: 20px;
  -webkit-padding-start: 2px;
  -webkit-user-select: none;
  background-position: 97% center;
  background-repeat: no-repeat;
  border: 1px solid #AAA;
  color: #555;
  font-size: inherit;
  margin-bottom: 10px;
  overflow: hidden;
  padding: 5px 10px;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: 200px;
  color: #fff;
  background-image: url("../images/15xvbd5.png");
  background-color: #a50808;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 4px;
  padding-left: 15px;
}
/* End Select Active Palette Dropdown */

#palettePanel {
  position: absolute;
  box-sizing: border-box;
  top: 0;
  left: 0;
  bottom: 0;
  width: 257px;
  border-right: 1px solid #333;
}
#paletteToolbarContent {
  position: absolute;
  box-sizing: border-box;
  left: 0;
  top: 0;
  right: 0;
  height: 40px;
}
#paletteToolbarContent img {
  cursor: pointer;
}
#paletteToolbarContent img:hover {
  background-color: black;
}
#paletteTilesContent {
  position: absolute;
  box-sizing: border-box;
  top: 0;
  left: 0;
  right: 0;
  height: 40px;
}
#paletteLayersContent {
  position: absolute;
  box-sizing: border-box;
  left: 0;
  right: 0;
  bottom: 0;
  height: 300px;
  border-top: 1px solid #333;
  padding: 20px;
  overflow-y: scroll;
}
#paletteLayersContent .layerInfoPanel {
  cursor: pointer;
  height: 46px;
  margin-bottom: 2px;
  border: 1px solid transparent;
  border-radius: 4px;
  padding: 2px;
  user-select: none;
}
#paletteLayersContent .layerInfoPanel .layerVisibilityToggle {
  float: left;
  width: 40px;
  height: 40px;
  border-radius: 2px;
  background-color: #333;
}
#paletteLayersContent .layerInfoPanel .layerDescription {
  float: left;
  height: 40px;
  padding: 8px 0 8px 10px;
  width: 153px;
}
#paletteLayersContent .layerOpacity {
  position: absolute;
  top: 0px;
  right: 0px;
  width: 40px;
  height: 40px;
  z-index: 999;
}
#paletteLayersContent .layerInfoPanel .layerDescription .layerDescriptionText {
  width: 80%;
  height: 100%;
  text-overflow: ellipsis;
  overflow: hidden;
}
#paletteLayersContent .layerInfoPanel .layerDescription .layerDescriptionEdit {
  display: none;
  width: 80%;
  height: 100%;
}
#paletteLayersContent .layerInfoPanel .layerDescription .layerDescriptionEdit input[type="text"] {
  width: 99px;
  color: black;
  margin-right: 4px;
}
#paletteLayersContent .layerInfoPanel .layerDescription .layerDescriptionEdit button {
  margin-top: -5px;
}
#paletteLayersContent .selectedLayerInfoPanel {
  border-color: black;
}
#paletteLayersToolbar {
  margin-bottom: 5px;
}
#paletteLayersToolbar div:first-of-type {
  float: left;
  font-size: 1.5em;
}
#paletteLayersToolbar button {
  float: right;
  margin-left: 20px;
}
#toolbarPanel {
  position: absolute;
  top: 0;
  right: 0;
  height: 320px;
  width: 40px;
}
#toolbarPanel #mainToolbar {
  position: absolute;
  top: 0;
  right: 0;
  width: 40px;
  height: 320px;
  background-color: #555555;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
#toolbarPanel #snapToGridButton #snapToGridEnabledIcon {
  display: none;
}
#toolbarPanel #paintToolFlyoutToolbar {
  display: none;
  position: absolute;
  top: 0;
  left: -280px;
  height: 40px;
  width: 280px;
  background-color: #555555;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
#toolbarPanel #shapeToolFlyoutToolbar {
  display: none;
  position: absolute;
  top: 40px;
  left: -240px;
  height: 40px;
  width: 240px;
  background-color: #555555;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
#toolbarPanel #miscToolFlyoutToolbar {
  display: none;
  position: absolute;
  top: 80px;
  left: -240px;
  height: 40px;
  width: 240px;
  background-color: #555555;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
#toolbarPanel #layersFlyout {
  display: none;
  position: absolute;
  top: 0;
  left: -304px;
  width: 304px;
  min-height: 280px;
  max-height: 280px;
  border: 2px solid rgba(0, 0, 0, 0.25);
  border-radius: 2px;
  background-color: #e1e1e1;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
#toolbarPanel #layersFlyout #layersToolbar {
  height: 40px;
  background-color: black;
}
#toolbarPanel #layersFlyout #layersToolbar div {
  width: 40px;
  height: 40px;
  cursor: pointer;
}
#toolbarPanel #layersFlyout #layersToolbar div:first-of-type {
  float: left;
}
#toolbarPanel #layersFlyout #layersToolbar div:last-of-type {
  float: right;
}
#toolbarPanel #layersFlyout #layersList {
  max-height: 236px;
  overflow-y: scroll;
}
#toolbarPanel #layersFlyout #layersList::-webkit-scrollbar {
  width: 10px;
}
#toolbarPanel #layersFlyout #layersList::-webkit-scrollbar-track {
  box-shadow: inset 0 0 2px rgba(0, 0, 0, 0.3);
}
#toolbarPanel #layersFlyout #layersList::-webkit-scrollbar-thumb {
  background-color: darkgray;
  outline: 1px solid slategrey;
}
#toolbarPanel #layersFlyout #layersList .layerRow {
  height: 40px;
  border-top: 1px solid #797979;
  cursor: pointer;
}
#toolbarPanel #layersFlyout #layersList .layerRow .layerVisibilityToggle {
  float: left;
  position: relative;
  width: 40px;
  height: 40px;
}
#toolbarPanel #layersFlyout #layersList .layerRow .layerVisibilityToggle > div {
  position: absolute;
  left: 4px;
  top: 4px;
  width: 32px;
  height: 32px;
  border-radius: 4px;
  background-color: #555555;
}
#toolbarPanel #layersFlyout #layersList .layerRow .layerVisibilityToggle img {
  position: absolute;
  left: 0;
  top: 0;
  width: 40px;
  height: 40px;
}
#toolbarPanel #layersFlyout #layersList .layerRow .layerDescription {
  float: left;
  margin-left: 10px;
  width: 240px;
  cursor: pointer;
}
#toolbarPanel #layersFlyout #layersList .layerRow .layerDescription .layerDescriptionText {
  margin-top: 8px;
  font-size: 18px;
  color: #515151;
}
#toolbarPanel #layersFlyout #layersList .layerRow .layerDescription .layerDescriptionEdit {
  display: none;
  width: 100%;
  height: 100%;
  margin-top: 8px;
}
#toolbarPanel #layersFlyout #layersList .layerRow .layerDescription .layerDescriptionEdit input[type="text"] {
  width: 175px;
  color: black;
  margin-right: 4px;
}
#toolbarPanel #layersFlyout #layersList .layerRow .layerDescription .layerDescriptionEdit button {
  margin-top: -5px;
}
#toolbarPanel #layersFlyout #layersList .selectedLayerRow {
  background-color: #0291ff;
}
#toolbarPanel #layersFlyout #layersList .selectedLayerRow .layerDescription .layerDescriptionText {
  color: white;
}
#toolbarPanel #settingsFlyoutToolbar {
  display: none;
  position: absolute;
  top: 280px;
  left: -160px;
  height: 40px;
  width: 160px;
  background-color: #555555;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
#toolbarPanel .toolbarButton {
  cursor: pointer;
}
#toolbarPanel .toolIcon {
  cursor: pointer;
}
#toolbarPanel .selectedToolIcon {
  background-color: black;
}
#toolbarPanel .toolFlyout {
  cursor: pointer;
  background-image: url(../images/tool-flyout-indicator-icon.png);
}
#toolbarPanel .selectedToolFlyout {
  background-color: black;
}
#toolbarPanel .selectedToolFlyout {
  background-color: black;
}
#toolbarPanel .flyoutToolbar .toolbarButton {
  float: left;
}
#toolbarPanel .flyoutToolbar .toolIcon {
  float: left;
}
#mapCanvas {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}
#mapCanvasBG {
  background-color: #ebeeee;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: -99;
}
#tileLibraryDragContainer {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 100;
}
#openMapModalNoMapsMessageSpan {
  display: none;
}

#previewLogo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin-left: 100px;
  opacity: .5;
  z-index: -98;
}
#previewLogo img {
  max-width: 100%;
  height:auto;
  width:auto;
}
#previewLogoSplash {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin-left: 100px;
  opacity: 1;
  z-index: 99; 
}
#previewLogoSplash img {
  max-width: 100%;
  height:auto;
  width:auto;
}

#versionTag {
  position: absolute;
  bottom: -20px;
  left: 10px;
  transform: translate(-50%, -50%);
  margin-left: 100px;
  opacity: .5;
  z-index: 505;
  color: #fff;
}

#versionTag small {
  max-width: 100%;
  height:auto;
  width:auto;
}

#signInBtn  {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #4a87ea;
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
  z-index: 900;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  transform: translate(0%, 0%);
  -webkit-transform: translate(0%, 0%);
  -ms-transform: translate(0%, 0%);
  border: none;
}
#signInBtn:focus {
  outline: none;
  border: none;
}
#signInBtn .shape:after {
  height: 15px;
  width: 3px;
}
#signInBtn .shape:before,
#signInBtn .shape:after {
  content: "";
  background: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(360deg);
  -webkit-transform: translate(-50%, -50%) rotate(360deg);
  -ms-transform: translate(-50%, -50%) rotate(360deg);
}
#signInBtn .shape:before {
  width: 15px;
  height: 3px;
}
#signInBtn .shape {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

#authenticated {
  min-width: 100px;
  overflow: hidden;
  height: 40px;
  position: absolute;
  top: 10px;
  right: 20px;
  background-color: #4a87ea;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  cursor: pointer !important;
  z-index: 900;
  display: none;
}

#authenticated p {
  display: inline-block;
  color: #FFF;
  margin-bottom: 0;
  font-weight: normal;
  text-align: center;
  vertical-align: middle;
  cursor: pointer !important;
  background-image: none;
  border: 1px solid transparent;
  white-space: nowrap;
  padding: 9px 26px;
  font-size: 14px;
  line-height: 1.42857143;
  border-radius: 4px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
#authenticated p span {
  font-size: 10px;
  margin-left: 5px;
}
#signUpPnl, #signInPnl {
  width: 300px;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -150px;
  background-color: white;
  border: 1px solid black;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  cursor: hand !important;
  z-index: 900;
  padding: 10px;
}
#signInPnl {
  min-height: 200px;
  margin-top: -100px;
}
#signUpPnl {
  min-height: 350px;
  margin-top: -175px;
}
#signUpPnl form, #signInPnl form {
  cursor: pointer;
  margin-bottom: 20px;
}
#signUpPnl form label, #signInPnl form label {
  margin-top: 5px;
}
#signUpPnl form input, #signInPnl form input {
  width: 100%;
}
#signUpPnl form button, #signInPnl form button {
  margin: 5px;
}
#signUpPnl p.error-msg, #signInPnl p.error-msg {
  margin: 5px;
  color: #b04444;
}
/** libraryPreviewTile area **/

#tileRotation {
  position: absolute;
  bottom: 64px;
  left: 215px;
}
#tileRotation p {
  position: absolute;
  top: -1px;
  right: 20px;
  width: 35px;
  height: 25px;
  background-color: #555;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  cursor: pointer;
  z-index: 500;
  display: inline-block;
  color: #eee;
  margin-bottom: 0;
  font-weight: normal;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  background-image: none;
  border: 1px solid transparent;
  white-space: nowrap;
  padding: 2px 2px;
  font-size: 14px;
  line-height: 1.42857143;
  border-radius: 0px 0px 4px 4px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}


#tileScaleStep {
  position: absolute;
  bottom: 31px;
  left: 160px;
  display: none;
}

#tileScaleStepValue {
  position: absolute;
  z-index: 500;
  width: 37px;
  height: 22px;
  background-color: #eee;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  cursor: pointer;
  display: inline-block;
  color: #222;
  margin-bottom: 0;
  font-weight: normal;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  background-image: none;
  border: 1px solid transparent;
  white-space: nowrap;
  padding: 2px 2px;
  font-size: 14px;
  line-height: 1.42857143;
  border: 1px solid #222;
  border-radius: 4px 4px 4px 4px;
}

#tileRotationStep {
  position: absolute;
  bottom: 84px;
  left: 216px;
}
#tileRotationStep input {
  position: absolute;
  top: -1px;
  right: 20px;
  width: 37px;
  height: 22px;
  background-color: #eee;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  cursor: pointer;
  z-index: 500;
  display: inline-block;
  color: #222;
  margin-bottom: 0;
  font-weight: normal;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  background-image: none;
  border: 1px solid transparent;
  white-space: nowrap;
  padding: 2px 2px;
  font-size: 14px;
  line-height: 1.42857143;
  border: 1px solid #222;
  border-radius: 4px 4px 0px 0px;
}


/* ========== PEN OPTIONS ========== */

#penOptions {
  position: absolute;
  top: 30px;
  left: 30px;
  width: 100%;
  height: auto;

  display: flex;
  flex-direction: row;
}

/* ========== Pen Tip Drop Down ========= */

select#penTipSelector {
  -webkit-appearance: button;
  -webkit-border-radius: 2px;
  -webkit-box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.1);
  -webkit-padding-end: 20px;
  -webkit-padding-start: 2px;
  -webkit-user-select: none;
  background-position: 97% center;
  background-repeat: no-repeat;
  border: none;
  color: #555;
  font-size: inherit;
  margin-bottom: 10px;
  overflow: hidden;
  padding: 5px 10px;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: 130px;
  color: #fff;
  background-image: url("../images/15xvbd5.png");
  background-color: #a50808;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 4px;
  padding-left: 15px;
}
/* ========== Pen Size Slider???? ========== */


#sizeSlider input[type="range"] {
  width: 100%;
}

#sizeSlider #sizeValue {
  position: absolute;
  bottom: 20px;
  left: 280px;
}

#sizeSlider output {
  position: absolute;
  bottom: 21px; 
  left: 270px;
}

/* ========== Shadow Blur Size Slider ========== */
/* #penOptions #shadowBlurSizeSlider {
  position: absolute;
  left: 536px;
  top: 85px;
  height: 15px; 
  width: 210px;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

#shadowBlurSizeSliderLabel {
  position: relative;
  bottom: 25px;
  left: -8px;
  font-size: 14px;
  font-weight: normal;
  color: #f2f2f2;
  width: 96px;
  text-shadow:
   -1px -1px 0 #000,
    1px -1px 0 #000,
    -1px 1px 0 #000,
     1px 1px 0 #000;
}

#penOptions #shadowBlurSize input {
  position: absolute;
  left: 93x;
  width: 43px;
  height: 31px;
  background-color: #eee;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  cursor: pointer;
  z-index: 500;
  display: inline-block;
  color: #222;
  margin-bottom: 0;
  font-weight: normal;
  text-align: right;
  vertical-align: middle;
  cursor: pointer;
  background-image: none;
  border: 1px solid transparent;
  white-space: nowrap;
  padding: 0px 5px 0px 0px;
  font-size: 14px;
  line-height: 1.42857143;
  border: 1px solid #222;
  border-radius: 0px 4px 4px 0px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  z-index:10;
} */

/* ========== Simplify Max Points Slider ========== */
/* #penOptions #simplifyPointsSlider {
  position: absolute;
  left: 806px;
  top: 85px;
  height: 15px; 
  width: 120px;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

#simplifyPointsSliderLabel {
  position: relative;
  bottom: 25px;
  left: -8px;
  font-size: 14px;
  font-weight: normal;
  color: #f2f2f2;
  width: 200px;
  text-shadow:
   -1px -1px 0 #000,
    1px -1px 0 #000,
    -1px 1px 0 #000,
     1px 1px 0 #000;
}

#penOptions #simplifyPoints input {
  position: absolute;
  left: 53x;
  width: 43px;
  height: 31px;
  background-color: #eee;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  cursor: pointer;
  z-index: 500;
  display: inline-block;
  color: #222;
  margin-bottom: 0;
  font-weight: normal;
  text-align: right;
  vertical-align: middle;
  cursor: pointer;
  background-image: none;
  border: 1px solid transparent;
  white-space: nowrap;
  padding: 0px 5px 0px 0px;
  font-size: 14px;
  line-height: 1.42857143;
  border: 1px solid #222;
  border-radius: 0px 4px 4px 0px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  z-index:10;
} */

/* ========== Shadow Offset X & Y Slider ========== */
/* #penOptions #shadowSizeXSlider {
  position: absolute;
  left: 536px;
  top: 130px;
  height: 15px; 
  width: 210px;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

#shadowSizeXSliderLabel {
  position: relative;
  bottom: 25px;
  left: -8px;
  font-size: 14px;
  font-weight: normal;
  color: #f2f2f2;
  width: 200px;
  text-shadow:
   -1px -1px 0 #000,
    1px -1px 0 #000,
    -1px 1px 0 #000,
     1px 1px 0 #000;
}

#penOptions #shadowSizeX input {
  position: absolute;
  left: 53x;
  width: 43px;
  height: 31px;
  background-color: #eee;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  cursor: pointer;
  z-index: 500;
  display: inline-block;
  color: #222;
  margin-bottom: 0;
  font-weight: normal;
  text-align: right;
  vertical-align: middle;
  cursor: pointer;
  background-image: none;
  border: 1px solid transparent;
  white-space: nowrap;
  padding: 0px 5px 0px 0px;
  font-size: 14px;
  line-height: 1.42857143;
  border: 1px solid #222;
  border-radius: 0px 4px 4px 0px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  z-index:10;
}

#penOptions #shadowSizeYSlider {
  position: absolute;
  left: 536px;
  top: 175px;
  height: 15px; 
  width: 210px;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

#shadowSizeYSliderLabel {
  position: relative;
  bottom: 25px;
  left: -8px;
  font-size: 14px;
  font-weight: normal;
  color: #f2f2f2;
  width: 200px;
  text-shadow:
   -1px -1px 0 #000,
    1px -1px 0 #000,
    -1px 1px 0 #000,
     1px 1px 0 #000;
}

#penOptions #shadowSizeY input {
  position: absolute;
  left: 53x;
  width: 43px;
  height: 31px;
  background-color: #eee;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  cursor: pointer;
  z-index: 500;
  display: inline-block;
  color: #222;
  margin-bottom: 0;
  font-weight: normal;
  text-align: right;
  vertical-align: middle;
  cursor: pointer;
  background-image: none;
  border: 1px solid transparent;
  white-space: nowrap;
  padding: 0px 5px 0px 0px;
  font-size: 14px;
  line-height: 1.42857143;
  border: 1px solid #222;
  border-radius: 0px 4px 4px 0px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  z-index:10;
} */

/* ========== Outline Size Slider ========== */
/* #penOptions #outlineSizeSlider {
  position: absolute;
  left: 265px;
  top: 85px;
  height: 15px; 
  width: 210px;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

#outlineSizeSliderLabel {
  position: relative;
  bottom: 25px;
  left: -8px;
  font-size: 14px;
  font-weight: normal;
  color: #f2f2f2;
  width: 200px;
  text-shadow:
   -1px -1px 0 #000,
    1px -1px 0 #000,
    -1px 1px 0 #000,
     1px 1px 0 #000;
} */

/* #penOptions #outlineSize input {
  position: absolute;
  left: 53x;
  width: 43px;
  height: 31px;
  background-color: #eee;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  cursor: pointer;
  z-index: 500;
  display: inline-block;
  color: #222;
  margin-bottom: 0;
  font-weight: normal;
  text-align: right;
  vertical-align: middle;
  cursor: pointer;
  background-image: none;
  border: 1px solid transparent;
  white-space: nowrap;
  padding: 0px 5px 0px 0px;
  font-size: 14px;
  line-height: 1.42857143;
  border: 1px solid #222;
  border-radius: 0px 4px 4px 0px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  z-index:10;
} */

/* ========== Sliders ========== */
#penSizeSlider, #outlineSizeSlider, #shadowBlurSizeSlider, #shadowDistanceSlider
{
  position: relative;
  left: 22.5px;
  height: 140px; 
  width: 15px;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

#penSizeSliderLabel, #outlineSizeSliderLabel, #shadowBlurSizeSliderLabel, #shadowDistanceSliderLabel
{
  position: relative;
  left: -10px;
  top: 144px;
  width: 60px;
  font-size: 14px;
  font-weight: normal;
  color: #f2f2f2;
  text-shadow:
   -1px -1px 0 #000,
    1px -1px 0 #000,
    -1px 1px 0 #000,
     1px 1px 0 #000;
}

#sliderHandle, #penSliderHandle, #outlineSliderHandle, #shadowDistanceSliderHandle, #shadowBlurSliderHandle,
#exportWidthSliderHandle, #exportHeightSliderHandle, #exportDpiSliderHandle
{
  width: 30px;
  height: 20px;
  left: -8px;
  text-align: center;
  vertical-align: middle;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

#penOptions #penSize, #shadowBlurSize, #outlineSize, #shadowDistanceSize
{
  position: absolute;
  top: 6px;
  left: 70px;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  display: none;
}

#penOptions #penSize input, #outlineSize input, #shadowDistanceSize input {
  position: absolute;
  left: 13x;
  width: 43px;
  height: 31px;
  background-color: #eee;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  cursor: pointer;
  z-index: 500;
  display: inline-block;
  color: #222;
  margin-bottom: 0;
  font-weight: normal;
  text-align: right;
  vertical-align: middle;
  cursor: pointer;
  background-image: none;
  border: 1px solid transparent;
  white-space: nowrap;
  padding: 0px 5px 0px 0px;
  font-size: 14px;
  line-height: 1.42857143;
  border: 1px solid #222;
  border-radius: 0px 4px 4px 0px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  z-index:10;
}
/* ========== Export Width Slider ========== */
#exportWidthSlider {
  position: relative;
  height: 15px; 
  width: 210px;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

#exportWidthSliderLabel {
  position: relative;
  bottom: 25px;
  left: -8px;
  font-size: 14px;
  font-weight: normal;
  color: #f2f2f2;
  width: 200px;
  text-shadow:
   -1px -1px 0 #000,
    1px -1px 0 #000,
    -1px 1px 0 #000,
     1px 1px 0 #000;
}

#exportWidthValue input {
  position: absolute;
  left: 53x;
  width: 43px;
  height: 31px;
  background-color: #eee;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  cursor: pointer;
  z-index: 500;
  display: inline-block;
  color: #222;
  margin-bottom: 0;
  font-weight: normal;
  text-align: right;
  vertical-align: middle;
  cursor: pointer;
  background-image: none;
  border: 1px solid transparent;
  white-space: nowrap;
  padding: 0px 5px 0px 0px;
  font-size: 14px;
  line-height: 1.42857143;
  border: 1px solid #222;
  border-radius: 0px 4px 4px 0px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  z-index:10;
}

/* ========== Export Height Slider ========== */
#exportHeightSlider {
  position: relative;
  height: 15px; 
  width: 210px;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

#exportHeightSliderLabel {
  position: relative;
  bottom: 25px;
  left: -8px;
  font-size: 14px;
  font-weight: normal;
  color: #f2f2f2;
  width: 200px;
  text-shadow:
   -1px -1px 0 #000,
    1px -1px 0 #000,
    -1px 1px 0 #000,
     1px 1px 0 #000;
}

#exportHeightValue input {
  position: absolute;
  left: 53x;
  width: 43px;
  height: 31px;
  background-color: #eee;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  cursor: pointer;
  z-index: 500;
  display: inline-block;
  color: #222;
  margin-bottom: 0;
  font-weight: normal;
  text-align: right;
  vertical-align: middle;
  cursor: pointer;
  background-image: none;
  border: 1px solid transparent;
  white-space: nowrap;
  padding: 0px 5px 0px 0px;
  font-size: 14px;
  line-height: 1.42857143;
  border: 1px solid #222;
  border-radius: 0px 4px 4px 0px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  z-index:10;
}

/* ========== Export Height Slider ========== */
#exportDpiSlider {
  position: relative;
  height: 15px; 
  width: 210px;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

#exportDpiSliderLabel {
  position: relative;
  bottom: 25px;
  left: -8px;
  font-size: 14px;
  font-weight: normal;
  color: #f2f2f2;
  width: 200px;
  text-shadow:
   -1px -1px 0 #000,
    1px -1px 0 #000,
    -1px 1px 0 #000,
     1px 1px 0 #000;
}

#exportDpiValue input {
  position: absolute;
  left: 53x;
  width: 43px;
  height: 31px;
  background-color: #eee;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  cursor: pointer;
  z-index: 500;
  display: inline-block;
  color: #222;
  margin-bottom: 0;
  font-weight: normal;
  text-align: right;
  vertical-align: middle;
  cursor: pointer;
  background-image: none;
  border: 1px solid transparent;
  white-space: nowrap;
  padding: 0px 5px 0px 0px;
  font-size: 14px;
  line-height: 1.42857143;
  border: 1px solid #222;
  border-radius: 0px 4px 4px 0px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  z-index:10;
}

#penOptions #penSizeToggle{
  position: absolute;
  top: -3px;
  left: -20px;
  width: 30px;
  height: 30px;
  background-color: #555555;
  cursor: pointer;
}


#simplifyPointsSliderHandle
{
  width: 30px;
  height: 20px;
  left: -8px;
  text-align: center;
  vertical-align: middle;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

#exportWidth, #exportHeight, #exportDpiSize
{
  position: absolute;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

#usePatternFill {
  position: absolute;
  bottom: 10px;
  left: 25%;
  transform: translate(-50%, -50%);
  margin-left: 100px;
  z-index: 10;
}

#usePatternFill input {
  max-width: 100%;
  height:auto;
  width:auto;
}

#usePatternWall {
  position: absolute;
  bottom: 30px;
  left: 25.2%;
  transform: translate(-50%, -50%);
  margin-left: 100px;
  z-index: 10;
}

#usePatternWall input {
  max-width: 100%;
  height:auto;
  width:auto;
}

#penColor {
  position: relative;
  z-index: 100;
}

#penFillColor {
  position: relative;
  z-index: 100;
}

#penShadowColor {
  position: relative;
  z-index: 100;
}

#penOutlineColor {
  position: relative;
  z-index: 100;
}

#penOptions #penColorLabel {
  position: absolute;
  background-color: #eee;
  left: -55px;
  right: 30px;
  top: 3px;
  margin-bottom: 0;
  font-weight: normal;
  text-align: left;
  vertical-align: middle;
  cursor: pointer;
  background-image: none;
  border: 1px solid transparent;
  white-space: nowrap;
  padding: 3px 6px;
  font-size: 14px;
  line-height: 1.42857143;
  border-radius: 4px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  z-index: 10;
}

#penOptions #penFillLabel {
  position: absolute;
  background-color: #eee;
  left: -55px;
  right: 30px;
  top: 3px;
  margin-bottom: 0;
  font-weight: normal;
  text-align: left;
  vertical-align: middle;
  cursor: pointer;
  background-image: none;
  border: 1px solid transparent;
  white-space: nowrap;
  padding: 2px 2px 2px 15px;
  font-size: 14px;
  line-height: 1.42857143;
  border-radius: 4px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  z-index: 10;
}

#penOptions #penShadowColorLabel {
  position: absolute;
  background-color: #eee;
  left: -55px;
  right: 30px;
  top: 3px;
  margin-bottom: 0;
  font-weight: normal;
  text-align: left;
  vertical-align: middle;
  cursor: pointer;
  background-image: none;
  border: 1px solid transparent;
  white-space: nowrap;
  padding: 3px 2px;
  font-size: 14px;
  line-height: 1.42857143;
  border-radius: 4px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  z-index: 10;
}

#penOptions #penOutlineColorLabel {
  position: absolute;
  background-color: #eee;
  left: -55px;
  right: 30px;
  top: 3px;
  margin-bottom: 0;
  font-weight: normal;
  text-align: left;
  vertical-align: middle;
  cursor: pointer;
  background-image: none;
  border: 1px solid transparent;
  white-space: nowrap;
  padding: 3px 2px;
  font-size: 14px;
  line-height: 1.42857143;
  border-radius: 4px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rbga(0, 0, 0, 0.19);
  z-index: 10;
}
/** tip **/

#penOptions #penTip {
  position: absolute;
  left: 60px;
}

#penOptions #penTipLabel {
  position: absolute;
  background-color: #eee;
  right: 30px;
}

#penOptions #penFill {
  position: absolute;
  top: 90px;
  left: 130px;
}

#penOptions #penFill input{
  display: none;
}

#penOptions #penFillTLabel {
  position: absolute;
  top: -1px;
  right: 20px;
  width: 120px;
  height: 25px;
  background-color: #A50808;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  cursor: pointer;
  z-index: 500;
}

#penOptions #penFillTexture {
  position: absolute;
  top: 120px;
  left: 130px;
}

#penOptions #penFillTexture input{
  display: none;
}

#penOptions #penFillTextureLabel {
  position: absolute;
  top: -1px;
  right: 20px;
  width: 120px;
  height: 25px;
  background-color: #A50808;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  cursor: pointer;
  z-index: 500;
}

#penOptions #penFillTexture p {
  display: inline-block;
  color: #FFF;
  margin-bottom: 0;
  font-weight: normal;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  background-image: none;
  border: 1px solid transparent;
  white-space: nowrap;
  padding: 2px 2px;
  font-size: 14px;
  line-height: 1.42857143;
  border-radius: 4px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

#penOptions #penWallTexture {
  position: absolute;
  top: 60px;
  left: 130px;
}

#penOptions #penWallTexture input{
  display: none;
}

#penOptions #penWallTextureLabel {
  position: absolute;
  top: -1px;
  right: 20px;
  width: 120px;
  height: 25px;
  background-color: #A50808;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  cursor: pointer;
  z-index: 500;
}

#penOptions #penWallTexture p {
  display: inline-block;
  color: #FFF;
  margin-bottom: 0;
  font-weight: normal;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  background-image: none;
  border: 1px solid transparent;
  white-space: nowrap;
  padding: 2px 2px;
  font-size: 14px;
  line-height: 1.42857143;
  border-radius: 4px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

#penOptions #penWallColor {
  position: absolute;
  top: 30px;
  left: 130px;
}

#penOptions #penWallColor input{
  display: none;
}

#penOptions #penWallColorLabel {
  position: absolute;
  top: -1px;
  right: 20px;
  width: 120px;
  height: 25px;
  background-color: #A50808;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  cursor: pointer;
  z-index: 500;
}

#penOptions #penWallColor p {
  display: inline-block;
  color: #FFF;
  margin-bottom: 0;
  font-weight: normal;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  background-image: none;
  border: 1px solid transparent;
  white-space: nowrap;
  padding: 2px 2px;
  font-size: 14px;
  line-height: 1.42857143;
  border-radius: 4px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

#penOptions #penFill p {
  display: inline-block;
  color: #FFF;
  margin-bottom: 0;
  font-weight: normal;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  background-image: none;
  border: 1px solid transparent;
  white-space: nowrap;
  padding: 2px 2px;
  font-size: 14px;
  line-height: 1.42857143;
  border-radius: 4px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

#penOptions #penOutline {
  position: absolute;
  top: 30px;
  left: 400px;
}

#penOptions #penOutline input{
  display: none;
}

#penOptions #penOutlineLabel {
  position: absolute;
  right: 20px;
  width: 120px;
  height: 25px;
  background-color: #A50808;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  cursor: pointer;
  z-index: 500;
}

#penOptions #penOutline p {
  display: inline-block;
  color: #FFF;
  margin-bottom: 0;
  font-weight: normal;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  background-image: none;
  border: 1px solid transparent;
  white-space: nowrap;
  padding: 2px 2px;
  font-size: 14px;
  line-height: 1.42857143;
  border-radius: 4px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

#penOptions #penAutoClose {
  position: absolute;
  top: 110px;
  left: 940px;
}

#penOptions #penAutoClose input{
  display: none;
}

#penOptions #penAutoCloseLabel {
  position: absolute;
  right: 20px;
  width: 120px;
  height: 25px;
  background-color: #A50808;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  cursor: pointer;
  z-index: 500;
}

#penOptions #penAutoClose p {
  display: inline-block;
  color: #FFF;
  margin-bottom: 0;
  font-weight: normal;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  background-image: none;
  border: 1px solid transparent;
  white-space: nowrap;
  padding: 2px 2px;
  font-size: 14px;
  line-height: 1.42857143;
  border-radius: 4px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

#penOptions #penLineMode {
  position: absolute;
  top: 140px;
  left: 940px;
}

#penOptions #penLineMode input{
  display: none;
}

#penOptions #penLineModeLabel {
  position: absolute;
  right: 20px;
  width: 120px;
  height: 25px;
  background-color: #A50808;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  cursor: pointer;
  z-index: 500;
}

#penOptions #penLineMode p {
  display: inline-block;
  color: #FFF;
  margin-bottom: 0;
  font-weight: normal;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  background-image: none;
  border: 1px solid transparent;
  white-space: nowrap;
  padding: 2px 2px;
  font-size: 14px;
  line-height: 1.42857143;
  border-radius: 4px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

#penOptions #penSimplify {
  position: absolute;
  top: 30px;
  left: 940px;
}

#penOptions #penSimplify input{
  display: none;
}

#penOptions #penSimplifyLabel {
  position: absolute;
  right: 20px;
  width: 120px;
  height: 25px;
  background-color: #A50808;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  cursor: pointer;
  z-index: 500;
}

#penOptions #penSimplify p {
  display: inline-block;
  color: #FFF;
  margin-bottom: 0;
  font-weight: normal;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  background-image: none;
  border: 1px solid transparent;
  white-space: nowrap;
  padding: 2px 2px;
  font-size: 14px;
  line-height: 1.42857143;
  border-radius: 4px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

#penOptions #penShadow {
  position: absolute;
  top: 30px;
  left: 670px;
}

#penOptions #penShadow input{
  display: none;
}

#penOptions #penShadowLabel {
  position: absolute;
  right: 20px;
  width: 120px;
  height: 25px;
  background-color: #A50808;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  cursor: pointer;
  z-index: 500;
}

#penOptions #penShadow p {
  display: inline-block;
  margin-bottom: 0;
  vertical-align: middle;
  cursor: pointer;
  background-image: none;
  border: 1px solid transparent;
  white-space: nowrap;
  padding: 2px 2px;
  color: #FFF;
  font-weight: normal;
  text-align: center;
  font-size: 14px;
  line-height: 1.42857143;
  border-radius: 4px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

#penOptions #penShadowOffsetX {
  position: absolute;
  top: 160px;
  left: 140px;
  display: none;
}

#penOptions #penShadowOffsetXLabel {
  position: absolute;
  background-color: #eee;
  left: -50px;
  display: none;
}

#penOptions #penShadowOffsetY {
  position: absolute;
  top: 160px;
  left: 260px;
  display: none;
}

#penOptions #penShadowOffsetYLabel {
  position: absolute;
  background-color: #eee;
  left: -50px;
  display: none;
}

#penOptions #penShadowBlur {
  position: absolute;
  top: 170px;
  left: 390px;
  display: none;
}

#penOptions #penShadowBlurLabel {
  position: absolute;
  background-color: #eee;
  left: -30px;
  display: none;
}

/*** color **/

.color {
	padding: .5em;
	margin-right: .4em;
	border: 1px solid #aaa;
	border-radius: 3px;
	width: 140px;
  z-index: 650;
}
.div-toggles {
	position: relative;

	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
	display: block;
  z-index: 650;
}
.div-toggles .trigger {
	position: relative;
	display: inline-block;
	width: 50px;
	padding: 4px;
	height: 34px;
	border: 1px solid #000;
	border-radius: 2px;
	background: #555;
	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  z-index: 650;
	/*box-shadow: inset 0 -17px 8px rgba(0,0,0,0.3), inset 0 -4px 7px rgba(0,0,0,0.3);*/
}
.div-toggles .trigger:after {
	content: "";
	display: block;
	position: absolute;
	top: 50%;
	right: 5px;
	margin-top: -2px;
	border: 5px solid #000;
	border-color: #eee transparent transparent;
  z-index: 650;
}
.div-toggles .trigger:before {
	content: "";
	display: block;
	position: absolute;
	top: 50%;
	right: 4px;
	margin-top: -1px;
	border: 5px solid;
	border-color: #eee transparent transparent;
  z-index: 650;
}
.div-toggles .active:before {
	margin-top: -7px;
	border-color: transparent transparent #eee;
  z-index: 650;
}
.div-toggles .active:after {
	margin-top: -8px;
	border-color: transparent transparent #eee;
  z-index: 650;
}
.div-toggles .trigger div {
	display: inline-block;
	width: 23px;
	height: 23px;
	border: 1px solid #333;
	background: #fff url('data:image/gif;base64,R0lGODlhDAAMAIABAMzMzP///yH5BAEAAAEALAAAAAAMAAwAAAIWhB+ph5ps3IMyQFBvzVRq3zmfGC5QAQA7');
  z-index: 650;
}
.div-toggles .trigger div div {
	/*border: 1px solid #666;
	border-color: #666 #ccc #ccc #666;*/
	background: #aaa;
  z-index: 650;
}
.cp-color-picker {
  z-index: 700;
}

/**** TUTORIAL CSS **/
#modalNext {
  /*position: absolute;*/
  margin-top: 10px;
}

.modal-content{
  width: 800px;
  z-index:500;
}

.fade {
  overflow: hidden;
}

.modal-body #modalText {
  background-image: none;
  border: 1px solid transparent;
  white-space: wrap;
  padding: 2px 2px;
  color: #333;
  font-weight: normal;
  font-size: 14px;
  line-height: 1.42857143;
  border-radius: 4px;
  z-index: 520;
}

.modal-body #tab {
  padding-left: 4em;
  list-style-type: circle;
}
.modal-body #gif img {
  display: none;
}

.modal-footer {
  position: relative;
  bottom: 5px;
  z-index: 510;
}

.modal-footer button {
  background-color: #002a4e;
  color: #fff;
}

.modal-body #helpImg {
  position: relative;
  float: left;
  width:  270px;
  height: 270px;
  margin: 0px 10px 10px 0px;
  padding: 10px 10px 10px 10px;
  z-index: 520;
}

.modal-body #wipImg {
  position: relative;
  float: left;
  width:  75px;
  height: 70px;
  margin: 0px 10px 10px 0px;
  padding: 10px 10px 10px 10px;
  z-index: 520;
}

/**  page loader **/

.sk-folding-cube {
  margin: 20px auto;
  width: 60px;
  height: 60px;
  position: relative;
  -webkit-transform: rotateZ(45deg);
          transform: rotateZ(45deg);
}

.sk-folding-cube .sk-cube {
  float: left;
  width: 50%;
  height: 50%;
  position: relative;
  -webkit-transform: scale(1.1);
      -ms-transform: scale(1.1);
          transform: scale(1.1); 
}
.sk-folding-cube .sk-cube:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #366;
  z-index: 999;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  -webkit-animation: sk-foldCubeAngle 2.4s infinite linear both;
          animation: sk-foldCubeAngle 2.4s infinite linear both;
  -webkit-transform-origin: 100% 100%;
      -ms-transform-origin: 100% 100%;
          transform-origin: 100% 100%;
}
.sk-folding-cube .sk-cube2 {
  -webkit-transform: scale(1.1) rotateZ(90deg);
          transform: scale(1.1) rotateZ(90deg);
}
.sk-folding-cube .sk-cube3 {
  -webkit-transform: scale(1.1) rotateZ(180deg);
          transform: scale(1.1) rotateZ(180deg);
}
.sk-folding-cube .sk-cube4 {
  -webkit-transform: scale(1.1) rotateZ(270deg);
          transform: scale(1.1) rotateZ(270deg);
}
.sk-folding-cube .sk-cube2:before {
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}
.sk-folding-cube .sk-cube3:before {
  -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s; 
}
.sk-folding-cube .sk-cube4:before {
  -webkit-animation-delay: 0.9s;
          animation-delay: 0.9s;
}
@-webkit-keyframes sk-foldCubeAngle {
  0%, 10% {
    -webkit-transform: perspective(140px) rotateX(-180deg);
            transform: perspective(140px) rotateX(-180deg);
    opacity: 0; 
  } 25%, 75% {
    -webkit-transform: perspective(140px) rotateX(0deg);
            transform: perspective(140px) rotateX(0deg);
    opacity: 1; 
  } 90%, 100% {
    -webkit-transform: perspective(140px) rotateY(180deg);
            transform: perspective(140px) rotateY(180deg);
    opacity: 0; 
  } 
}

@keyframes sk-foldCubeAngle {
  0%, 10% {
    -webkit-transform: perspective(140px) rotateX(-180deg);
            transform: perspective(140px) rotateX(-180deg);
    opacity: 0; 
  } 25%, 75% {
    -webkit-transform: perspective(140px) rotateX(0deg);
            transform: perspective(140px) rotateX(0deg);
    opacity: 1; 
  } 90%, 100% {
    -webkit-transform: perspective(140px) rotateY(180deg);
            transform: perspective(140px) rotateY(180deg);
    opacity: 0; 
  }
}
h1.loader {
  text-align: center;
  text-transform: uppercase;
  font-family: 'Nunito', sans-serif;
  font-size: 1.6875em;
  color: transparent;
  letter-spacing: 0.01em;
}

.loader span {
  text-shadow:
    0 0 2px rgba(204, 208, 212,0.9),
    0 15px 25px rgba(0, 0, 0, 0.3),
    0 -2px 3px rgba(0, 0, 0, 0.1),
    0 -5px 10px rgba(255, 255, 255, 0.5),
    0 5px 10px rgba(0, 0, 0, 0.3),
    0 3px 4px rgba(255, 255, 255, 0.2),
    0 0 20px rgba(255, 255, 255, 0.45);
  
    animation: loading 0.85s ease-in-out infinite alternate;
}

@keyframes loading {
	to {text-shadow:
    0 0 2px rgba(204, 208, 212,0.2),
    0 0 3px rgba(0, 0, 0, 0.02),
    0 0 0 rgba(0, 0, 0, 0),
    0 0 0 rgba(255, 255, 255, 0),
    0 0 0 rgba(0, 0, 0, 0),
    0 0 0 rgba(255, 255, 255, 0),
    0 0 0 rgba(255, 255, 255, 0);}
}

.loader span:nth-child(2) {
  animation-delay:0.15s;
}

.loader span:nth-child(3) {
  animation-delay:0.30s;
}

.loader span:nth-child(4) {
  animation-delay:0.45s;
}

.loader span:nth-child(5) {
  animation-delay:0.60s;
}

.loader span:nth-child(6) {
  animation-delay:0.75s;
}

.loader span:nth-child(7) {
  animation-delay:0.90s;
}
/*
#loadingModal {
  position: absolute;
  bottom: 10px;
  right: 30px;
  z-index: 99;
}
*/

#loadingModal {
  position: absolute;
  bottom: -30px;
  right: 40px;
  transform: translate(-50%, -50%);
  margin-left: 100px;
  opacity: 1;
  z-index: 99;
}

#loadingText {
  position: absolute;
  bottom: 20px;
  right: 80px;
  transform: translate(-50%, -50%);
  margin-left: 100px;
  opacity: .8;
  z-index: 500;
  display: block;
}

#loadingText h1 {
  max-width: 100%;
  height:auto;
  width:auto;
}

#supportBtn  {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #4a87ea;
  position: absolute;
  top: 60px;
  left: 283px;
  cursor: pointer;
  z-index: 505;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  transform: translate(0%, 0%);
  -webkit-transform: translate(0%, 0%);
  -ms-transform: translate(0%, 0%);
  border: none;
}
#supportBtn:focus {
  outline: none;
  border: none;
}
/*#supportBtn .shape:after {
  height: 15px;
  width: 3px;
}
#supportBtn .shape:before,
#supportBtn .shape:after {
  content: "";
  background: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(360deg);
  -webkit-transform: translate(-50%, -50%) rotate(360deg);
  -ms-transform: translate(-50%, -50%) rotate(360deg);
}
#supportBtn .shape:before {
  width: 15px;
  height: 3px;
}*/
#supportBtn .shape {
  position: absolute;
  color: #fff;
  font-size: 18px;
  font-weight: normal;
  top: 8px;
  right: 0px;
  width: 100%;
  height: 100%;
}

/* ============================================================== */

#sortable {
  list-style-type: none;
  margin: 0;
  padding: 0;
  width: 100%;
}

#sortable li {
  /*margin: 0 3px 3px 3px;
  padding: 0.4em;
  padding-left: 1.5em;
  font-size: 1.4em;*/
  height: 40px;
  border-top: 1px solid #797979;
  cursor: pointer;
}

/*#sortable li div {
  position: absolute;
  margin-left: -1.3em;
}*/

/* ========== UI CELL PANEL LAYOUT STYLES ========== */
.buttonStyleOn {
  width: 120px;
  height: 40px;
  border: none;
  outline: none;
  background: url(/Content/images/button-on.png);
  color: white;
}

.buttonStyleOff {
  width: 120px;
  height: 40px;
  border: none;
  outline: none;
  background: url(/Content/images/button-off.png);
  color: white;
}

#toolOptions
{
  top: 30px;
  left: 30px;
  width: 100%;
  height: auto;

  display: flex;
  flex-direction: row;
}

.boxCell {
  width: auto;
  height: auto;
  margin: 4px;
  /* background: yellow; */
}

.grid-container {
  display: grid;
  width: 192px;
  grid-template-columns: 140px 52px;
}

.grid-cell {
  height: 40px;
}

/* ========== UI TOOL PANEL ACCORDION LAYOUT STYLES ========== */
article.accordion
{
  position: fixed;
  left: 275px;
  bottom: 0px;
	display: block;
  width: fit-content;
  padding-right: 8px;
	margin: 0 auto;
	background-color: #666;
	border-radius: 5px;
  box-shadow: 0 3px 3px rgba(0,0,0,0.3);
  overflow-y: hidden;
}

article.accordion section
{
	position: relative;
	display: block;
	float: left;
	width: 2em;
	height: 15em;
	margin: 0.5em 0 0.5em 0.5em;
	color: #333;
	background-color: #333;
	overflow: hidden;
	border-radius: 3px;
}

article.accordion section h2
{
	position: absolute;
	font-size: 1em;
	font-weight: bold;
	width: 12em;
	height: 2em;
	top: 12em;
	left: 0;
	text-indent: 1em;
	padding: 0;
	margin: 0;
	color: #ddd;
	-webkit-transform-origin: 0 0;
	-moz-transform-origin: 0 0;
	-ms-transform-origin: 0 0;
	-o-transform-origin: 0 0;
	transform-origin: 0 0;
	-webkit-transform: rotate(-90deg);
	-moz-transform: rotate(-90deg);
	-ms-transform: rotate(-90deg);
	-o-transform: rotate(-90deg);
	transform: rotate(-90deg);
}

article.accordion section h2 a
{
	display: block;
	width: 100%;
	line-height: 2em;
	text-decoration: none;
	color: inherit;
	outline: 0 none;
}

article.accordion section:target
{
	width: auto;
	padding: 0 1em;
	color: #333;
	background-color: #E5DED6;
}

article.accordion section:target h2
{
	position: static;
	font-size: 1.3em;
	text-indent: 0;
	color: #333;
	-webkit-transform: rotate(0deg);
	-moz-transform: rotate(0deg);
	-ms-transform: rotate(0deg);
	-o-transform: rotate(0deg);
	transform: rotate(0deg);
}

article.accordion section,
article.accordion section h2
{
	-webkit-transition: all 1s ease;
	-moz-transition: all 1s ease;
	-ms-transition: all 1s ease;
	-o-transition: all 1s ease;
	transition: all 1s ease;
}

/* ========== PEN CAP SELECTION LAYOUT STYLE ========== */
.penTipLabel {
  display: block;
  padding: 5px 10px;
  margin: 5px 0;
  font: 14px/20px Arial, sans-serif;
  background-color: #ccc;
  border-radius: 7px;
}

/* .penCapLabel:after, penTipLabel:after {
  background-color: lightgreen;
}

.penCapLabel:hover, penTipLabel:hover {
    background-color: gold;
    cursor: pointer;
} */

/* input[type="checkbox"] {
  position: relative;
  top: 1px;
} */

fieldset {
  border: 2px solid #000;
  border-radius: 10px;
}

legend {
  border: none;
  background-color: #000;
  border-radius: 10px;
  color: #fff;
  text-align: center;
  width: auto;
  font-size: 18px;
  padding-left: 10px;
  padding-right: 10px;
}

.penCapSection {
  float: left;
}

.penCapLabel {
  display: block;
  position: relative;
  padding-left: 25px;
  margin-left: 5px;
  cursor: pointer;
  font: 14px/20px Arial, sans-serif;
}

.penCapSection input {
  position: absolute;
  opacity: 0;
}

.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 20px;
  width: 20px;
  background-color: #97928E;
  border-radius: 50%;
}

.penCapLabel:hover input ~ .checkmark {
  background-color: #16130F;
}

.penCapLabel input:checked ~ .checkmark {
  background-color: #16130F;
}

.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.penCapLabel input:checked ~ .checkmark:after {
  display: block;
}

.penCapLabel .checkmark:after {
  top: 6px;
  left: 6px;
  height: 8px;
  width: 8px;
  border-radius: 50%;
  background: #E5DED6;
}

.penTipSection {
  float: left;
}
/* ========== ANGLE SLIDER STYLE ========== */
.rs-control {
  margin-left: 10px;
}
.rs-control .rs-range-color {
  background-color: #838383;
}
.rs-control .rs-path-color {
  background-color: #d4d4d4;
}
.rs-control .rs-handle {
  background-color: #333333;
}
.rs-control .rs-bg-color {
  background-color: #ffffff;
}