body {
  background: white;
/*  background-image: url(../images/bgImage.png);*/
}

span i { color: var(--secondary-dark);}
span i:hover { background: white; }


span#uploadIcon { width: min-content; }
#the-canvas {
    height: 80vh; /* Adjust this value as needed */
}
 #canvas {
        width: 100%;
      }
.drag-items {
   flex-grow: 1;
  max-width: 300px;
}


.drag-items img {
  width: 80px;
  box-sizing: border-box;
  padding: 10px;
   border-radius: 5px;
   cursor: pointer;
   border: 1px solid transparent;
   user-select: none;
   z-index: 2;

}
.drag-items img:hover {
/*  background: white;*/
/*   border: 1px solid black;*/
/*  box-shadow: rgb(0 0 0 / 8%) 12px 16px 20px 5px*/

}

i.fas {
  background: white;
  padding: 20px;
  border-radius: 5px;
  border: 1px solid black;
  transition: .2s ease-in-out;
  
}
i.fas:hover { box-shadow: rgb(0 0 0 / 8%) 12px 16px 20px 5px }

input[type="color"]{
 cursor: pointer;
}
.konvajs-content {
/* height:400px !important; */
/* height:auto !important; */
}

input[type="color"]:hover { box-shadow: rgb(0 0 0 / 8%) 12px 16px 20px 5px }

@media only screen and (max-width: 600px) { 
  .drag-items {
    max-width: 400px;
        background: white;
    border: 1px solid #eaeaea;
    padding: 10px;
    border-radius: 5px;
    box-shadow: rgb(0 0 0 / 8%) 0 3px 28px;
  }
  .the-controls-m  {
    display: flex !important;
  }
  .the-controls {
    display: none;
  }
  .export-span {
    margin-top: 15px;
    margin-left: 15px;
  }
  #the-canvas {
    height: 45vh; /* Adjust this value as needed */
}
 /* .konvajs-content, canvas {
 height:500px !important; 
}*/
  .hide-m{
      display: none;
  }
  .drag-items img  {
       touch-action: none;
    height: auto;
    width: 30px;
    padding: 0;
    margin: 10px;
  }
  i.fas {
    padding: 0;
    border-radius: 0;
    border: none;
  }
}