/* ==================================================================== */
/* CHECKBOX TYPE 7 ---------------------------------------------------- */
/* ==================================================================== */

label {
  display: inline;
  margin: 0px 3px;
}

input[type="checkbox"] {
  display: none;
}



[id^="checkbox-7-"] + label {

  cursor: pointer; 
  cursor: hand;

  background-color: transparent;
  padding: 5px 12px 5px 12px;
  border-radius: 7px;
  border: 1px solid #333;
  display: inline-block;
  position: relative;
  /* margin-right: 30px; */
  box-shadow: 0 0 2px rgba(0,0,0,0.3);
  height: auto;
  overflow: hidden;
  font-size: 14px !important;
  color: #444;
  -webkit-transition: all 0.2s linear, color 0 linear;
  transition: all 0.2s linear, color 0 linear;
  text-transform: uppercase;
}

/*[id^="checkbox-7-"] + label:after {
  font-family: 'FontAwesome';
  content: '\f070';
  position: absolute;
  top: 0px;
  right: 10px;
  font-size: 20px !important;
  text-align: center;
  color: #666;
}*/

[id^="checkbox-7-"]:checked + label {
  border: 1px solid transparent;
  color: #fff;

  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}

[id^="checkbox-7-"] + label > span {
  position: relative;
  z-index: 2;
  /*font-family: 'adelle-sans', sans-serif;*/
}

[id^="checkbox-7-"]:active + label:after {
  box-shadow: 0 0 1px rgba(0, 0, 0, 0.6), inset 0 2px 6px rgba(0, 0, 0, 0.1), inset 0 -18px 15px -10px rgba(0, 0, 0, 0.05);

}

[id^="checkbox-7-"]:checked + label:after {
  /*content: '\f06e';*/
  color: #fff;

  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}

[id^="checkbox-7-"] + label:before {
  content: ' ';
  position: absolute;
  background: #b10000;
  width: 0%;
  height: 100%;
  top: 0;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
  left: 0;
}

[id^="checkbox-7-"]:checked + label:before {
  content: ' ';
  position: absolute;
  width: 100%;
  height: 100%;
  text-shadow: 0 1px 0 rgba(0,0,0,0.1);
  top: 0;
  left: 0;
}

#checkbox-7-2 + label:before {
  width: 100%;
  height: 0;
}
#checkbox-7-2:checked + label:before {
  width: 100%;
  height: 100%;
}

#checkbox-7-3 + label:before {
  width: 100%;
  height: 0;
  bottom: 0;
  top: auto;
}
#checkbox-7-3:checked + label:before {
  width: 100%;
  height: 100%;
}

#checkbox-7-4 + label:before {
  width: 0;
  height: 100%;
  left: auto;
  right: 0;
}
#checkbox-7-4:checked + label:before {
  width: 100%;
  height: 100%;
}
