* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

button {
  margin: 0;
  padding: 0;
  border: 0;
  background-color: transparent;
}

#toolbar {
  position: fixed;
  left: 0.5rem;
  bottom: 1rem;
  z-index: 1;
  width: 58px;
}
@media (min-width: 1000px) {
  #toolbar {
    top: 1rem;
    right: 1rem;
    left: inherit;
    display: flex;
    align-items: center;
    justify-content: center;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    gap: 1.5rem;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    background-color: #1E792C;
  }
}
#toolbar input[type=color] {
  min-height: 1.7rem;
  width: 1.7rem;
  cursor: pointer;
}
#toolbar button {
  width: inherit;
  display: grid;
  place-items: center;
  transition: 0.3s all;
  border: 1px solid transparent;
  cursor: pointer;
}
@media (min-width: 1000px) {
  #toolbar button {
    height: 1.7rem;
  }
}
#toolbar button img {
  width: 1.5rem;
  height: 1.5rem;
}
#toolbar button.active {
  padding: 0.1rem;
  height: 2.1rem;
  min-height: 2.1rem;
  width: 2.1rem;
  border: 1px solid #fff;
  transition: 0.3s all;
}
#toolbar .toolbar-left {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: column;
  gap: 1rem;
  width: 58px;
  height: 272px;
  padding: 1.3rem 0.9rem 0.9rem 0.9rem;
  border-radius: 50px 50px 0 0;
  background-color: #1E792C;
}
@media (min-width: 1000px) {
  #toolbar .toolbar-left {
    flex-flow: row;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    border-radius: 0;
    padding: 0;
    gap: 1.5rem;
    background-color: transparent;
  }
}
#toolbar .toolbar-left #fontSizeButton,
#toolbar .toolbar-left #strokeSizeDropdown {
  width: 1.8rem;
  height: 1.8rem;
  font-weight: bold;
  border: 1px solid #fff;
  display: grid;
  place-items: center;
}
#toolbar .toolbar-bottom {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  height: 58px;
  width: 184px;
  padding: 0.9rem 1.3rem 0.9rem 1.2rem;
  margin-top: -0.9rem;
  border-radius: 0 50px 50px 50px;
  background-color: #1E792C;
}
@media (min-width: 1000px) {
  #toolbar .toolbar-bottom {
    position: static;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    padding: 0;
    margin-top: 0;
    gap: 1.5rem;
    background-color: transparent;
  }
}

/* Hide dropdown-content by default */
.dropdown-content {
  display: none;
  position: absolute;
  font-weight: 400;
  background-color: #f9f9f9;
  min-width: 160px;
  height: 100px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
  overflow: scroll;
}
.dropdown-content .active {
  color: #fff;
  background-color: #1E792C;
}

#strokeSizeDropdown {
  cursor: pointer;
}
#strokeSizeDropdown .dropdown-content {
  top: 6.7rem;
  left: 3.6rem;
  min-width: 70px;
}
@media (min-width: 1000px) {
  #strokeSizeDropdown .dropdown-content {
    top: 3.8rem;
    left: 6.4rem;
  }
}

#fontSizeDropdown {
  cursor: pointer;
}
#fontSizeDropdown .dropdown-content {
  top: 12.2rem;
  left: 3.6rem;
  min-width: 70px;
}
@media (min-width: 1000px) {
  #fontSizeDropdown .dropdown-content {
    top: 3.8rem;
    left: 12.8rem;
  }
}

#imageDropdown {
  cursor: pointer;
}
#imageDropdown .dropdown-content {
  top: 4rem;
  left: 3.6rem;
  height: 210px;
}
@media (min-width: 1000px) {
  #imageDropdown .dropdown-content {
    top: 3.8rem;
    left: 13rem;
  }
}
#imageDropdown .dropdown-content > div {
  display: grid;
  place-items: center;
}
#imageDropdown img {
  max-width: 50px;
}

.dropdown-content div {
  padding: 12px 16px;
  cursor: pointer;
}

.dropbtn {
  color: #fff;
  cursor: pointer;
}/*# sourceMappingURL=css.css.map */