@charset "utf-8";
/* CSS Document */
*{box-sizing: border-box;}
html,body{
  width:100%;
  height:100%;
  margin:0;
  padding:0;
}
#canvasHolder{
  width:100%;
  float:left;
  height:700px;
  clear:both;
  margin-bottom:0px;

  canvas{
    float:left;
    height:700px;
    width:820px;
    left:50%;
    position:relative;
    margin-left:-360px;
    border:10px solid #000;
   cursor:crosshair;
    }
}

#imageSelector{
  width:720px;
  float:left;
  position:relative;
  left:50%;
  margin-left:-360px;
  margin-top:20px;
  img{
    float:left;
    width:23%;
    margin:5px 1% 5px 1%;
    height:150px;
    // border:1px solid #000;
    &:hover{
      background:#f2f2f3;
      cursor:pointer;
    }
  }
}

.controls{
  float:left;
  position:relative;
  background-color:#fff;
  clear:both;
  width:720px;
  left:50%;
  padding:20px;
  margin-left:-360px;
  
  div{
    margin:0px 20px 0px 20px;
    float:left;    
    i{
      color:#000;
      float:left;
      position:relative;
      font-size:30pt;
      &:hover{
        opacity:0.7;
        cursor:pointer;
      }
    }
  }
  
  input[type='color']{
    -webkit-appearance: none;
    width:100%;
    height:110%;
    border:0px;
    padding:0px;
    padding-top:25px;
    outline:0px;
    background:rgba(0,0,0,0);
    margin:0px;
    position:absolute;
    cursor:pointer;
    opacity:0;
    left:0;
  }
  
  input[type=range] {
    -webkit-appearance: none;
    border: 2px solid 000;
    border-radius:20px;
    margin-top:12px;
    width:150px;
    height:10px;
    background:#333;
    transition:all 0.3s ease;
    cursor:pointer;
   
}
input[type=range]::-webkit-slider-runnable-track {
    height: 0px;
    background: #ddd;
    border: none;
    border-radius: 3px;
}
input[type=range]::-webkit-slider-thumb {
    -webkit-appearance: none;
    border: none;
    height: 30px;
    width: 30px;
    border-radius: 50%;
    background: #555;
    margin-top: -15px;
   
}
input[type=range]:focus {
    outline: none;
}

}
