

/*checkbox------------------*/
/* Base for label styling */
[type="checkbox"]:not(:checked),
[type="checkbox"]:checked {
  position: absolute;
  left: -9999px;
}
[type="checkbox"]:not(:checked) + label,
[type="checkbox"]:checked + label {
  position: relative;
  padding-left: 1.95em;
  cursor: pointer;
}

/* checkbox aspect */
[type="checkbox"]:not(:checked) + label:before,
[type="checkbox"]:checked + label:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 1.5em;
  height: 1.5em;
  border: 2px solid #ccc;
  background: #fff;
}
/* checked mark aspect */
[type="checkbox"]:not(:checked) + label:after,
[type="checkbox"]:checked + label:after {
  content: '✔';
  position: absolute;
  top: 0; left: 0;
  font-size: 1.5em;
  line-height: 0.8;
  color: #fff;
  transition: all .2s;
  background-color: #4285f4;
    border:2px solid #4285f4;
  font-family: Helvetica, Arial, sans-serif;
}
/* checked mark aspect changes */
[type="checkbox"]:not(:checked) + label:after {
  opacity: 0;
  transform: scale(0);
}
[type="checkbox"]:checked + label:after {
  opacity: 1;
  transform: scale(1);
}
/* disabled checkbox */
[type="checkbox"]:disabled:not(:checked) + label:before,
[type="checkbox"]:disabled:checked + label:before {
  box-shadow: none;
  border-color: #bbb;
  background-color: #ddd;
}
[type="checkbox"]:disabled:checked + label:after {
  color: #999;
}
[type="checkbox"]:disabled + label {
  color: #aaa;
}

.tctv-form .xiro-form-body .pmd-textfield label {
    color: #5f5f5f;
    margin-bottom: 5px;
    font-size: 20px;
    font-weight: 700;
}

.xiro-form-checkbox .pmd-textfield .checkboxes label {
    box-shadow: 0 1px 3px rgba(0,0,0,.12), 0 1px 2px rgba(0,0,0,.24);
    background: #f7f7f7;
    border-radius: 4px;
    padding: 6px 3px 5px 20px;
    margin-bottom: 4px;
    margin-left: 7px;
    font-size: 11px;
    font-weight: 700;
    color: #000;
}
.xiro-form-checkbox .pmd-textfield .checkboxes label:hover {
  box-shadow: 0 10px 20px rgba(0,0,0,.19), 0 6px 6px rgba(0,0,0,.23);
    transition: all ease-in-out 0.3s;
    -moz-transition: all ease-in-out 0.3s;
    -ms-transition: all ease-in-out 0.3s;
    -o-transition: all ease-in-out 0.3s;
    -webkit-transition: all ease-in-out 0.3s;
}

.xiro-form-checkbox [type="checkbox"]:not(:checked) + label:before, 
.xiro-form-checkbox [type="checkbox"]:checked + label:before {
    content: '';
    position: absolute;
    left: 2px;
    top: 5px;
    width: 1.5em;
    height: 1.5em;
    border: 2px solid #ccc;
    background: #fff;
    border-radius: 50%;
}

.xiro-form-checkbox [type="checkbox"]:not(:checked) + label:after, 
.xiro-form-checkbox [type="checkbox"]:checked + label:after {
    content: '✔';
    position: absolute;
    top: 5px;
    left: 2px;
    font-size: 1.5em;
    line-height: 0.8;
    color: #fff;
    transition: all .2s;
    background-color: #4285f4;
    border: 3px solid #4285f4;
    font-family: Helvetica, Arial, sans-serif;
    border-radius: 50%;
}


.checkbox-sl-search .checkboxes{
    margin: 0 !important;
    padding: 0 !important;
}
