/* .squaredTwo */
.squaredTwo {
  width: 22px;
  height: 22px;
  position: relative;
  margin: 10px 2px auto;
  /*background: #fcfff4;
  background: -webkit-linear-gradient(top, #fcfff4 0%, #dfe5d7 40%, #b3bead 100%);
  background: linear-gradient(to bottom, #fcfff4 0%, #dfe5d7 40%, #b3bead 100%);
  box-shadow: inset 0px 1px 1px white, 0px 1px 3px rgba(0, 0, 0, 0.5);*/
  border: 1px solid rgb(228, 230, 232);
}
.squaredTwo label {
  width: 20px;
  height: 20px;
  cursor: pointer;
  position: absolute;
  left: 0px;
  top: 0px;
  /*background: -webkit-linear-gradient(top, #222222 0%, #45484d 100%);
  background: linear-gradient(to bottom, #222222 0%, #45484d 100%);
  box-shadow: inset 0px 1px 10px rgba(0, 0, 0, 0.5), 0px 1px 0px white;*/
}
.squaredTwo label:after {
  content: '';
  width: 9px;
  height: 5px;
  position: absolute;
  top: 6px;
  left: 6px;
  border: 3px solid #fcfff4;
  border-top: none;
  border-right: none;
  background: transparent;
  opacity: 0;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.squaredTwo-active {
   width: 22px;
  height: 22px;
  position: relative;
  margin: 10px 2px auto;
  /*background: #fcfff4;
  background: -webkit-linear-gradient(top, #fcfff4 0%, #dfe5d7 40%, #b3bead 100%);
  background: linear-gradient(to bottom, #fcfff4 0%, #dfe5d7 40%, #b3bead 100%);
  box-shadow: inset 0px 1px 1px white, 0px 1px 3px rgba(0, 0, 0, 0.5);*/
   border: 1px solid rgb(228, 230, 232);
}

.squaredTwo-active label{
  opacity: 1;
  width: 20px;
  height: 20px;
  cursor: pointer;
  position: absolute;
  left: 0px;
  top: 0px;
  /*background: -webkit-linear-gradient(top, #222222 0%, #45484d 100%);
  background: linear-gradient(to bottom, #222222 0%, #45484d 100%);
  box-shadow: inset 0px 1px 10px rgba(0, 0, 0, 0.5), 0px 1px 0px white;*/
}
.squaredTwo-active label:after {
  content: '';
  width: 9px;
  height: 5px;
  position: absolute;
  top: 6px;
  left: 6px;
  border: 3px solid #fcfff4;
  border-top: none;
  border-right: none;
  background: transparent;
  opacity: 1;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}



/*.squaredTwo label:hover {

    content: '';
  width: 9px;
  height: 5px;
  position: absolute;
  top: 5px;
  left: 4px;
  border: 3px solid #fcfff4;
  border-top: none;
  border-right: none;
  background: transparent;
  opacity: 0;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}*/

.squaredTwo label:hover::after {
  opacity:1;
}
.squaredTwo-active label:hover::after {
  opacity: 1;
}

.squaredTwo input[type=checkbox] {
  visibility: hidden;
}
.squaredTwo input[type=checkbox]:checked + label:after {
  opacity: 1;
}
.squaredTwo-active input[type=checkbox] {
  visibility: hidden;
}
.squaredTwo-active input[type=checkbox]:checked + label:after {
  opacity: 1;
}
/* end .squaredTwo */