* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Poppins";
}

body {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background: linear-gradient(to left, rgba(59, 147, 255, 0.8784313725), rgba(59, 147, 255, 0.8784313725)), url(img/shape_background.svg);
}

.container {
  display: flex;
  width: min(100%, 1140px);
  padding: 10px;
  gap: 10px;
}
.container .colorPlate {
  width: 30px;
  height: 30px;
  position: absolute;
  inset: 13px 0px 0px 13px;
  z-index: 2;
  display: none;
}
.container .colorPlate .fa-palette {
  width: 100%;
  height: 100%;
  color: #3b93ff;
  font-size: 25px;
  text-align: center;
  line-height: 25px;
}
.container section {
  background: #fcfcfc;
  border-radius: 8px;
}
.container .tools-board {
  width: 270px;
  padding: 15px 22px 0;
}
.container .tools-board .row {
  margin-bottom: 20px;
}
.container .tools-board .row .options {
  list-style: none;
  margin: 10px 0 0 5px;
}
.container .tools-board .row .options .option {
  display: flex;
  margin-bottom: 10px;
  align-items: center;
  cursor: pointer;
}
.container .tools-board .row .options .option:is(:hover, .active) img {
  filter: invert(17%) sepia(90%) saturate(3000%) hue-rotate(900deg) brightness(200%) contrast(100%);
}
.container .tools-board .row .options .option:is(:hover, .active) span,
.container .tools-board .row .options .option label {
  color: #4a98f7;
}
.container .tools-board .row .options .option #fill-color {
  height: 14px;
  aspect-ratio: 1;
  cursor: pointer;
}
.container .tools-board .row .options .option input:checked ~ label {
  color: #4a98f7;
}
.container .tools-board .row .options .option span,
.container .tools-board .row .options .option label {
  color: #5a6168;
  padding-left: 10px;
}
.container .tools-board .row .options .option img {
  width: 15px;
  height: 15px;
  -o-object-fit: contain;
     object-fit: contain;
}
.container .tools-board .row .options .option #size-slider {
  width: 100%;
  margin-top: 5px;
  height: 5px;
}
.container .tools-board .row .options .option#transparent {
  width: 100%;
  display: unset;
}
.container .tools-board .row .options .option#transparent input[type=range] {
  width: 100%;
  margin-top: 5px;
  height: 5px;
}
.container .tools-board .row .options .option#transparent input:checked ~ span {
  background: #3b93ff;
}
.container .tools-board .row .options .option#transparent:is(:hover, .active) span {
  color: #4a98f7;
}
.container .colors .options {
  display: flex;
  justify-content: space-between;
}
.container .colors .options .option {
  width: 20px;
  aspect-ratio: 1;
  background: teal;
  border-radius: 50%;
  margin-top: 3px;
  position: relative;
}
.container .colors .options .option #color-picker {
  opacity: 0;
  cursor: pointer;
  height: 10px;
}
.container .colors .options .option.selected:before {
  content: "";
  position: absolute;
  inset: 50% 0 0 50%;
  transform: translate(-50%, -50%);
  height: 12px;
  aspect-ratio: 1;
  background: inherit;
  border-radius: inherit;
  border: 2px solid #f5f5f5;
}
.container .colors .options .option:first-child.selected::before {
  border-color: #ccc;
}
.container .colors .options .option:nth-child(1) {
  background-color: #000;
}
.container .colors .options .option:nth-child(2) {
  background-color: #fff;
}
.container .colors .options .option:nth-child(3) {
  background-color: #e02020;
}
.container .colors .options .option:nth-child(4) {
  background-color: #6dd400;
}
.container .colors .options .option:nth-child(5) {
  background-color: #4a98f7;
}
.container .buttons button {
  width: 100%;
  color: white;
  border: none;
  outline: none;
  padding: 11px;
  margin-bottom: 13px;
  border-radius: 4px;
  cursor: pointer;
  transition: 0.3s;
  font-size: 15px;
}
.container .buttons .clear-canvas {
  color: #6c757d;
  border: 1px solid #959a9e;
}
.container .buttons .clear-canvas:hover {
  background: #6c757d;
  color: white;
}
.container .buttons .save-img {
  background: #4a98f7;
  border: 1px solid #4a98f7;
}

.drawing-board {
  flex: 1;
}
.drawing-board canvas {
  width: 100%;
  height: 100%;
  border-radius: 8px;
}

@media (max-width: 992px) {
  .container .colorPlate {
    display: block;
  }
  .tools-board {
    width: 270px;
    height: 95vh;
    position: absolute;
    box-shadow: 0px 10px 3px 3px rgba(109, 109, 109, 0.329);
    transform: translateX(-280px);
    transition: 0.4s;
    overflow-y: scroll;
  }
  .mobileViewtoolsBoard {
    transform: translateX(0px);
  }
  .drawing-board {
    min-height: 95vh;
  }
}/*# sourceMappingURL=style.css.map */