.styled-checkbox {
  display: none !important;
}
.styled-checkbox + label {
  width: 20px;
  height: 20px;
  border: 1px solid;
  display: inline-block;
  position: relative;
  transition: all .25s ease;
  vertical-align: middle;
}
.styled-checkbox:checked + label {
  background: #ffffff;
  border-color: #539d08;
}
.styled-checkbox:checked + label:after {
  content: '';
  position: absolute;
  left: 4px;
  top: 8px;
  background: #539d08;
  width: 2px;
  height: 2px;
  box-shadow: 2px 0 0 #539d08, 4px 0 0 #539d08, 4px -2px 0 #539d08, 4px -4px 0 #539d08, 4px -6px 0 #539d08, 4px -8px 0 #539d08;
  transform: rotate(45deg);
}

.styled-select {
  height: 42px;
  overflow: hidden;
  width: 100%;
  position: relative;
  border: 1px solid #539d08;
  line-height: 42px;
  z-index: 2;
  background: #fff;
}
.styled-select:before {
  content: '\e900';
  font-family: 'labelhabitation-icons';
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: absolute;
  right: 0;
  top: 0;
  width: 42px;
  height: 42px;
  border-left: 1px solid;
  text-align: center;
  line-height: 42px;
  z-index: -1;
  color: #539d08;
}
.styled-select:after {
  display: none;
}
.styled-select select {
  background: transparent;
  border: none;
  font-size: 14px;
  height: 42px;
  line-height: 42px;
  padding: 0 5px;
  /* If you add too much padding here, the options won't show in IE */
  width: calc(100% + 33px);
  border-radius: 0;
}
.styled-select select:hover, .styled-select select:focus, .styled-select select:active {
  outline: none;
}

@media (max-width: 767px) {
  .styled-select select {
    height: 42px;
    line-height: 42px;
  }
}

/*# sourceMappingURL=bctweaks.css.map */