.canvas {
    width: 100%;
    height: 360px;
    position: relative;
    cursor: none;
    border: 1px solid rgba(255, 255, 255, 0.5);
    overflow: hidden;
}

  .canvas h2{
    position: absolute;
    font-weight: 400;
    width: 100%;
    text-align: center;
    z-index: 2;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
  }    

.canvas .drawSvg{
    
  width: 100%;
  height: 100%;
}


.cursor{
  top: 50%;
  left: 50%;
}

.cursor, .dot {
  display: block;
  width: 5px;
  height: 5px;
  border-radius: 100%;
  position: absolute;
  opacity: .5;
  pointer-events: none;
  transition: opacity .1s ease-in-out;
  z-index:1050;
}

.drawSvg rect{
  transition: fill .2s;
  width: 100%;
}

.draw ul li.bgColor{
  border-radius: 4px;
}

.mobile{
  display: none;
}

@media only screen and (max-width: 720px) {

    .canvasContainer {
        align-items: flex-start !important;
    }

  .draw{
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column-reverse;
  }

  .drawSvg{
    top: 0;
  }  

  .mobile{
    display: flex;
  }




  .allColors{
    width: 100%;
    margin-top: 100px;
  }

  .lineColor .activeColor{
    right: 35%;
  }

  .bgColor .activeColor{
    left: 35%;
  }

  .cursor{
    display: none;
  }
  .drawSvg, .canvas{
    width: 100%;
    height: 100%;
    box-sizing: border-box;
  }

    .canvas {
        height: 300px !important;
    }

   .action .canvas .drawSvg{
    width: 100%;
    height: 100%;
    max-height: 100%;
  }

  .drawUi{
    width: 100%;
    flex-direction: column-reverse;
  }

  .drawUi ul{
    display: flex;
    margin: 0;
    margin-top: 24px;
    flex-wrap: wrap;
  }

  .drawUi ul li{
    margin: 6px;
  }


}