* {
  margin: 0;
  padding: 0;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  font-family: 'Nunito Sans', sans-serif;
}

.fieldset {
  text-align: left;
}

.fieldset .legend {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
  font-size: 12px;
  font-weight: bold;
  margin: 12px 0;
}

.fieldset .legend:hover {
  cursor: pointer;
}

.fieldset .legend img {
  width: 4px;
  height: 6px;
  margin-right: 6px;
  -webkit-transform: translateY(-1px);
          transform: translateY(-1px);
}

.fieldset .legend img.dropped {
  -webkit-transform: translateY(-1px) rotate(90deg);
          transform: translateY(-1px) rotate(90deg);
}

.mt-0, .legend.mt-0 {
  margin-top: 0;
}

.mb-4 {
  margin-bottom: 48px;
}

#draw-container {
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100vw;
  height: 100vh;
  overflow: hidden;
}

#draw-container #draw-tools {
  position: absolute;
  top: -1px;
  right: 0;
  width: 220px;
  height: calc(100% + 1px);
  padding: 10px;
  text-align: center;
  border-left: 1px solid #e5e5e5;
  background-color: white;
  overflow-y: auto;
}

#draw-container #draw-tools #info-page {
  width: 100%;
  font-size: 12px;
  text-align: left;
}

#draw-container #draw-tools #info-page ul {
  list-style-position: inside;
}

#draw-container #draw-tools #info-page > ul {
  list-style-type: none;
}

#draw-container #draw-tools #colors-container {
  width: 198px;
  margin-bottom: 8px;
  line-height: 14px;
}

#draw-container #draw-tools #colors-container .pick-color {
  display: inline-block;
  width: calc((220px / 10) - 2px);
  height: calc((220px / 10) - 2px);
  border: 1px solid black;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0 1px;
}

#draw-container #draw-tools #colors-container .pick-color:hover {
  border: none;
  -webkit-transform: scale(0.8);
          transform: scale(0.8);
}

#draw-container #draw-tools #below-colors {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  text-align: left;
}

#draw-container #draw-tools #below-colors #size-options {
  display: inline-block;
  width: calc(24px * 3 + 6px);
  line-height: 26px;
}

#draw-container #draw-tools #below-colors #size-options div {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 2px;
  margin: 0 1px;
  width: 24px;
  height: 24px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background-color: #eee;
}

#draw-container #draw-tools #below-colors #size-options div:hover {
  background-color: #ddd;
}

#draw-container #draw-tools #below-colors #size-options div.selected {
  color: white;
  background-color: #ccc;
}

#draw-container #draw-tools #below-colors #size-options div.selected:hover {
  background-color: #ccc;
}

#draw-container #draw-tools #below-colors #size-options div span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 60%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background-color: black;
}

#draw-container #draw-tools #below-colors #picked-color-container {
  display: inline-block;
  position: relative;
  height: 44px;
  margin-right: calc(36.66667px * 1.4 + 4px);
}

#draw-container #draw-tools #below-colors #picked-color-container div {
  position: absolute;
  width: 36.66667px;
  height: 36.66667px;
  border: 2px solid white;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-shadow: 0 0 0 1px black;
          box-shadow: 0 0 0 1px black;
}

#draw-container #draw-tools #below-colors #picked-color-container #secondary-color {
  top: 9.16667px;
  left: 9.16667px;
}

#draw-container #draw-tools #buttons-container button {
  display: block;
  width: 100%;
  max-height: 36px;
  min-height: -webkit-min-content;
  min-height: -moz-min-content;
  min-height: min-content;
  height: 36px;
  margin: 10px 0;
  font-size: 14px;
  line-height: 0;
  border: 1px solid black;
  border-radius: 5px;
  background-color: #eee;
}

#draw-container #draw-tools #buttons-container button:hover {
  cursor: pointer;
  background-color: #ddd;
}

#draw-container #draw-tools #buttons-container button:focus {
  outline: none;
  background-color: #ddd;
}

#draw-container #draw-tools #buttons-container button.selected {
  color: white;
  background-color: royalblue;
  border: 1px solid royalblue;
}

#draw-container #draw-tools #buttons-container button:disabled {
  opacity: 0.5;
}

#draw-container #draw-tools #buttons-container button:disabled:hover {
  cursor: context-menu;
}

#draw-container #draw-tools .hr {
  overflow: hidden;
  width: calc(100% + 20px);
  -webkit-transform: translateX(-10px);
          transform: translateX(-10px);
  margin-top: 12px;
}

#draw-container #draw-tools .hr div {
  border-top: 1px solid #e5e5e5;
}

#draw-container #draw-tools #font-settings-content {
  font-size: 12px;
  text-align: center;
}

#draw-container #draw-tools #font-settings-content .form-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#draw-container #draw-tools #font-settings-content .form-group:nth-child(1) {
  margin-bottom: 12px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

#draw-container #draw-tools #font-settings-content .form-group:nth-child(1) input[type='number'] {
  width: 100%;
  height: 24px;
  padding: 1px 2px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: 12px;
  line-height: 0;
  margin-left: 4px;
}

#draw-container #draw-tools #font-settings-content .form-group:nth-child(2) {
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
}

#draw-container #draw-tools #font-settings-content .form-group:nth-child(2) .child {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#draw-container #draw-tools #font-settings-content .form-group:nth-child(2) .child input {
  margin-right: 4px;
}

#draw-container #draw-canvas {
  width: calc(100% - 220px);
  height: 100%;
  background-color: maroon;
}

@media only screen and (max-width: 850px) {
  #draw-container {
    position: fixed;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    width: 100vw;
    height: 100vh;
    overflow: hidden;
  }
  #draw-container #draw-tools {
    position: absolute;
    top: -1px;
    right: 0;
    width: 180px;
    height: calc(100% + 1px);
    padding: 10px;
    text-align: center;
    border-left: 1px solid #e5e5e5;
    background-color: white;
    overflow-y: auto;
  }
  #draw-container #draw-tools #info-page {
    width: 100%;
    font-size: 12px;
    text-align: left;
  }
  #draw-container #draw-tools #info-page ul {
    list-style-position: inside;
  }
  #draw-container #draw-tools #info-page > ul {
    list-style-type: none;
  }
  #draw-container #draw-tools #colors-container {
    width: 162px;
    margin-bottom: 8px;
    line-height: 14px;
  }
  #draw-container #draw-tools #colors-container .pick-color {
    display: inline-block;
    width: calc((180px / 10) - 2px);
    height: calc((180px / 10) - 2px);
    border: 1px solid black;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    margin: 0 1px;
  }
  #draw-container #draw-tools #colors-container .pick-color:hover {
    border: none;
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
  }
  #draw-container #draw-tools #below-colors {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    text-align: left;
  }
  #draw-container #draw-tools #below-colors #size-options {
    display: inline-block;
    width: calc(24px * 3 + 6px);
    line-height: 26px;
  }
  #draw-container #draw-tools #below-colors #size-options div {
    position: relative;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 2px;
    margin: 0 1px;
    width: 24px;
    height: 24px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    background-color: #eee;
  }
  #draw-container #draw-tools #below-colors #size-options div:hover {
    background-color: #ddd;
  }
  #draw-container #draw-tools #below-colors #size-options div.selected {
    color: white;
    background-color: #ccc;
  }
  #draw-container #draw-tools #below-colors #size-options div.selected:hover {
    background-color: #ccc;
  }
  #draw-container #draw-tools #below-colors #size-options div span {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 60%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    background-color: black;
  }
  #draw-container #draw-tools #below-colors #picked-color-container {
    display: inline-block;
    position: relative;
    height: 36px;
    margin-right: calc(30px * 1.4 + 4px);
  }
  #draw-container #draw-tools #below-colors #picked-color-container div {
    position: absolute;
    width: 30px;
    height: 30px;
    border: 2px solid white;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-shadow: 0 0 0 1px black;
            box-shadow: 0 0 0 1px black;
  }
  #draw-container #draw-tools #below-colors #picked-color-container #secondary-color {
    top: 7.5px;
    left: 7.5px;
  }
  #draw-container #draw-tools #buttons-container button {
    display: block;
    width: 100%;
    max-height: 36px;
    min-height: -webkit-min-content;
    min-height: -moz-min-content;
    min-height: min-content;
    height: 36px;
    margin: 10px 0;
    font-size: 14px;
    line-height: 0;
    border: 1px solid black;
    border-radius: 5px;
    background-color: #eee;
  }
  #draw-container #draw-tools #buttons-container button:hover {
    cursor: pointer;
    background-color: #ddd;
  }
  #draw-container #draw-tools #buttons-container button:focus {
    outline: none;
    background-color: #ddd;
  }
  #draw-container #draw-tools #buttons-container button.selected {
    color: white;
    background-color: royalblue;
    border: 1px solid royalblue;
  }
  #draw-container #draw-tools #buttons-container button:disabled {
    opacity: 0.5;
  }
  #draw-container #draw-tools #buttons-container button:disabled:hover {
    cursor: context-menu;
  }
  #draw-container #draw-tools .hr {
    overflow: hidden;
    width: calc(100% + 20px);
    -webkit-transform: translateX(-10px);
            transform: translateX(-10px);
    margin-top: 12px;
  }
  #draw-container #draw-tools .hr div {
    border-top: 1px solid #e5e5e5;
  }
  #draw-container #draw-tools #font-settings-content {
    font-size: 12px;
    text-align: center;
  }
  #draw-container #draw-tools #font-settings-content .form-group {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  #draw-container #draw-tools #font-settings-content .form-group:nth-child(1) {
    margin-bottom: 12px;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  #draw-container #draw-tools #font-settings-content .form-group:nth-child(1) input[type='number'] {
    width: 100%;
    height: 24px;
    padding: 1px 2px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    font-size: 12px;
    line-height: 0;
    margin-left: 4px;
  }
  #draw-container #draw-tools #font-settings-content .form-group:nth-child(2) {
    -webkit-box-pack: space-evenly;
        -ms-flex-pack: space-evenly;
            justify-content: space-evenly;
  }
  #draw-container #draw-tools #font-settings-content .form-group:nth-child(2) .child {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  #draw-container #draw-tools #font-settings-content .form-group:nth-child(2) .child input {
    margin-right: 4px;
  }
  #draw-container #draw-canvas {
    width: calc(100% - 180px);
    height: 100%;
    background-color: #e5e5e5;
  }
}
/*# sourceMappingURL=style.css.map */