ul,ol{list-style: none;}
*{margin:0;padding:0;}
.icon {
  width: 1em; height: 1em;
  vertical-align: -0.15em;
  fill: currentColor;
  overflow: hidden;
}
#xxx{
  display: block;
  background: white;
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(255, 255, 255, 0)
}

.toolWrap{
  position: fixed;
  bottom: 20px;
  left: 50%;
  margin-left: -250px;
  width:500px;
  height:60px;
  background:rgba(0,0,0, 0.7);
  border-radius:5px;
}
.actions{
  position: absolute;
  top: 0;
  right: 0;
  padding: 18px 30px;

}
.actions #clear{
  width: auto;
  height: auto;
  cursor: pointer;
}
#clear img{
  width: 18px;
  height: auto;
  vertical-align: middle;
  margin-top: -2px;
}

.actions svg{
  width: 1.5em;
  height: 1.5em;
  transition: all 0.3s;
  margin: 0 10px;
}
.actions svg.active{
  fill: red;
  transform: scale(1.2);
}

.colors{
  position: absolute;
  top: 0;
  right: 150px;
  display: flex;
  margin: 18px 0;
  padding: 0 32px;
  border-right: 1px solid #979797;
}
.colors> li{
  width: 24px;
  height: 24px;
  border-radius: 4px;
  box-shadow: 0 0 3px rgba(0,0,0,0.25);
  margin: 0 5px;
  transition: all 0.3s;
}
.colors> li.red{
  background: #F14B40;
}
.colors> li.green{
  background: #00FF33;
}
.colors> li.blue{
  background: #00DBFF;
}
.colors> li.yellow{
  background: #FFEA00;
}
.colors> li.active{
  box-shadow: 0 0 3px rgba(0,0,0,0.95);
  /* transform: scale(1.3); */
}
.colors> li img{
  width: 14px;
  height: 14px;
  vertical-align: middle;
  margin: 5px;
  display: none;
}
.colors> li.active img{
  display: block;
}

.sizes {
  position: absolute;
  left: 0;
  top: 0;
  display: flex;
  margin: 18px 0;
  padding: 0 30px;
  border-right: 1px solid #979797;
}
.sizes > li {
  border-radius: 50%;
  box-shadow: 0 0 3px rgba(0,0,0,0.25);
  margin: 0 5px;
  transition: all 0.3s;
  background-color: #999999;
}
.sizes > .thin{
  width: 12px;
  height: 12px;
  margin-top: 6px;
}
.sizes > .thin p{
  border-radius: 50%;
  width: 12px;
  height: 12px;
}
.sizes > .thin.active{
  width: 16px;
  height: 16px;
  margin-top: 4px;
  border: 2px solid rgba(255, 255, 255, 0.5)
}
.sizes > .thin.active p{
  border-radius: 50%;
  width: 12px;
  height: 12px;
  background: #fff;
  border: 2px solid rgba(0, 0, 0, 0.5)
}

.sizes > .middle{
  width: 18px;
  height: 18px;
  margin-top: 3px;
}
.sizes > .middle p{
  border-radius: 50%;
  width: 18px;
  height: 18px;
}
.sizes > .middle.active{
  width: 22px;
  height: 22px;
  margin-top: 1px;
  border: 2px solid rgba(255, 255, 255, 0.5)
}
.sizes > .middle.active p{
  border-radius: 50%;
  width: 18px;
  height: 18px;
  background: #fff;
  border: 2px solid rgba(0, 0, 0, 0.5)
}

.sizes > .thick{
  width: 24px;
  height: 24px;
}
.sizes > .thick p{
  border-radius: 50%;
  width: 24px;
  height: 24px;
}
.sizes > .thick.active{
  width: 28px;
  height: 28px;
  margin-top: -2px;
  border: 2px solid rgba(255, 255, 255, 0.5)
}
.sizes > .thick.active p{
  border-radius: 50%;
  width: 24px;
  height: 24px;
  background: #fff;
  border: 2px solid rgba(0, 0, 0, 0.5)
}

