* {
  box-sizing: border-box;
}

body {
  overflow: hidden;
}

.wrapper {
  display: flex;
  width: 100%;
}

#fabric-canvas-wrapper {
  height: 90vh;
  width: 100%;
}

#canvas {
  border: 1px solid #a6a6a6;
  border-radius: 5px;
}

#dev-toolbar {
  display: none;
}

.toolbar-wrapper {
  width: 50px;
  margin-top: 230px;
}

.toolbar {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-right: 10px;
  margin-top: 10px;
}

.tool-button {
  background: none;
  border: none;
  padding: 0;
  line-height: 10px;
}

#delete-object {
  display: none;
}

.stroke-example-btn {
  background: none;
  border-radius: 5px;
  border: 1px solid #fff;
  display: flex;
  justify-content: center;
}

.stroke-example {
  display: block;
  width: 25px;
  height: 5px;
  border-radius: 100px;
  transform: rotate(-45deg);
  background: #000;
  margin-top: 10px;
  margin-bottom: 10px;
}

.tool-button img {
  width: 25px;
  height: 25px;
}

/* Coloris */

.clr-field button {
  width: 100%;
  height: 100%;
  border-radius: 8px;
  display: none;
}

.clr-close {
  width: 80%;
  margin: 10px auto;
  height: 100%;
  border-radius: 5px;
  font-family: 'Lexend', sans-serif;
  padding: 10px 0;
}

#clr-color-value {
  display: none;
}

#clr-color-preview {
  display: none;
}

.clr-swatches {
  margin-top: 20px;
}

.coloris {
  opacity: 0;
}

.color-picker {
  width: 100%;
  height: 35px;
  padding-left: 8px;
}

.coloris-button {
  position: absolute;
  z-index: 1;
  display: inline-block;
  width: 35px;
  height: 35px;
  background-color: #000;
  mask-image: url('./icons/bucket.svg');
  -webkit-mask-image: url('./icons/bucket.svg');
  mask-size: cover;
  -webkit-mask-size: cover;
  mask-position: center;
  -webkit-mask-position: center;
  cursor: pointer;
}
