 /*-------------- checkbox & radio & toggle ----------------*/
.checkbox-label {
    padding:0;
    font-size: 90%!important;
}

.checkbox-label label{
    padding-left: 5px;
}

label.radio,
label.checkbox,
label.toggle {
  display: inline-block;
  min-height: 20px;
  font-weight: bold;
  line-height: 34px;
  font-size: 90%;
  clear: both;
  text-align: left;
  cursor: pointer;
  margin-right: 20px;
  margin-top: 0;
  margin-bottom: 0;
}

label *, :before, :after {
  box-sizing: border-box
}

.radio + .radio, .checkbox + .checkbox, .toggle + .toggle {
  margin-top: -5px
}

.radio input,
.checkbox input,
.toggle input {
  visibility: hidden;
  position: absolute
}

.radio input ~ span,
.checkbox input ~ span,
.toggle input ~ span {
  position: relative;
  margin: 7px 5px 7px 0;
  display: inline-block;
  float: left;
  width: 22px;
  height: 22px
}

.toggle input ~ span {
  margin: 7px 0 7px 5px;
  float: right
}

.radio input ~ span:after {
  content: '';
  position: absolute;
  width: 22px;
  height: 22px;
  background: #fff;
  border: 2px solid #bbb;
  border-radius: 50%
}

.radio input ~ span:before {
  content: '';
  position: absolute;
  width: 10px;
  height: 10px;
  top: 6px;
  left: 6px;
  background: #69BFCE;
  border-radius: 50%;
  z-index: 1;
  transform: scale(0);
  transition: all .15s ease-in-out
}

.radio input:hover ~ span:after {
  border-color: #999;
  box-shadow: 0 0 0 3px rgba(218, 218, 218, .5)
}

.radio input:checked ~ span:before {
  transform: scale(1)
}

.checkbox.checkbox-middle label {
    padding-left: 0;
}

.checkbox.checkbox-middle input ~ span {
    position: relative;
    margin: 2px 10px 2px 0px;
    display: inline-block;
    float: left;
    width: 15px;
    height: 15px;
    vertical-align: middle;
}

.checkbox input ~ span:after {
    content: '';
    position: absolute;
    width: 22px;
    height: 22px;
    background: #fff;
    border: 2px solid #69BFCE;
    top: -1px;
    border-radius: 2px;
}

.checkbox.checkbox-middle input ~ span:after {
    content: '';
    position: absolute;
    width: 15px;
    height: 15px;
    background: #fff;
    border: 1px solid #69BFCE;
    top: 0px;
    border-radius: 5px;
}

.checkbox input ~ span:before,
.checkbox.grayed input ~ span:before {
  content: '\2714';
  position: absolute;
  top: 1px;
  left: 0px;
  right: 0;
  bottom: 0;
  margin: auto;
  text-align: center;
  color: #69BFCE;
  font-size: 17px;
  line-height: 18px;
  z-index: 1;
  transform: scale(0);
  transition: all .15s ease-in-out;
  font-weight: bold;
}


.checkbox.checkbox-middle input ~ span:before, .checkbox.grayed.checkbox-middle input ~ span:before {
    content: '\2714';
    position: absolute;
    top: -1px;
    left: 0px;
    right: 0;
    bottom: 0;
    margin: auto;
    text-align: center;
    color: #69BFCE;
    font-size: 10px;
    line-height: 18px;
    z-index: 1;
    transform: scale(0);
    transition: all .15s ease-in-out;
    font-weight: bold;
}

.checkbox.grayed input ~ span:before {
  color: #aaa
}

.checkbox input:checked ~ span:before {
  transform: scale(1)
}

.checkbox input:hover ~ span:after {
  border-color: #999;
  box-shadow: 0 0 0 3px rgba(218, 218, 218, .5)
}

.checkbox.fillbox input ~ span:before,
.checkbox.fillbox.grayed input ~ span:before {
  content: '';
  width: 10px;
  height: 10px;
  background: #007ec4
}

.checkbox.fillbox.grayed input ~ span:before {
  background: #aaa
}

.toggle input ~ span {
  width: 40px
}

.toggle input ~ span:after {
  content: '';
  position: absolute;
  width: 100%;
  height: 12px;
  background: #ccc;
  border-radius: 6px;
  top: 4px;
  transition: all .15s ease-in-out
}

.toggle input ~ span:before {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 50%;
  z-index: 1;
  right: 20px;
  transition: all .15s ease-in-out;
  color: rgba(218, 218, 218, .5)
}

.toggle input:checked ~ span:after {
  background: rgba(102, 175, 233, .3)
}

.toggle input:checked ~ span:before {
  right: 0;
  background: #007ec4;
  border-color: #007ec4;
  color: rgba(64, 129, 190, .2)
}

.toggle input:hover ~ span:before {
  border-color: #999;
  box-shadow: 0 0 0 3px rgba(218, 218, 218, .5)
}

.toggle input:checked:hover ~ span:before {
  border-color: #007ec4;
  box-shadow: 0 0 0 3px rgba(64, 129, 190, .2)
}

.toggle.fillbox input ~ span:after {
  height: 20px;
  top: 0;
  border-radius: 10px
}

.toggle.fillbox input ~ span:before {
  width: 18px;
  height: 18px;
  top: 1px;
  border-color: #fff
}

.toggle.fillbox input:checked ~ span:before {
  right: 1px;
  border-color: #007ec4
}

.toggle.left input ~ span {
  float: left;
  margin: 7px 5px 7px 0
}

label.label-block {
  display: block;
  margin-right: 0
}

.disabled .radio,
.disabled .checkbox,
.disabled .toggle,
.radio.disabled,
.checkbox.disabled,
.toggle.disabled {
  color: #bbb;
  cursor: default
}

.disabled .radio input ~ span:after,
.disabled .checkbox input ~ span:after,
.radio.disabled input ~ span:after,
.checkbox.disabled input ~ span:after {
  background: transparent;
  border-color: #ddd
}

.disabled .radio input ~ span:before,
.disabled .checkbox input ~ span:before,
.radio.disabled input ~ span:before,
.checkbox.disabled input ~ span:before {
  opacity: .5
}

.disabled .radio input:hover ~ span:after,
.disabled .checkbox input:hover ~ span:after,
.radio.disabled input:hover ~ span:after,
.checkbox.disabled input:hover ~ span:after {
  border-color: #ddd !important;
  box-shadow: none !important
}

.disabled .toggle input ~ span:after,
.toggle.disabled input ~ span:after {
  background: #eee
}

.disabled .toggle input ~ span:before,
.toggle.disabled input ~ span:before {
  background: #fafafa;
  border-color: #ddd !important
}

.disabled .toggle input:checked ~ span:after,
.toggle.disabled input:checked ~ span:after {
  background: rgba(156, 202, 239, .3)
}

.disabled .toggle input:checked ~ span:before,
.toggle.disabled input:checked ~ span:before {
  background: #77B6D9;
  border-color: #77B6D9 !important
}

.disabled .toggle input:hover ~ span:before,
.toggle.disabled input:hover ~ span:before {
  box-shadow: none !important;
  animation: none
}

/*-------------- checkbox & radio & toggle -END ----------------*/body {
}
