/* 
 * Custom SCSS file for Kora website
 * This file compiles automatically to custom.css
 * 
 * Author: Creative Digital Ltd
 * Email: mike@creativedigital.co.nz
 */
.elementor-field-type-checkbox span {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 15px;
  align-items: center;
}

.elementor-field-type-checkbox input[type=checkbox] {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 30px;
  height: 30px;
  cursor: pointer;
  position: relative;
  border: none;
  box-shadow: none;
  outline: none;
}
.elementor-field-type-checkbox input[type=checkbox]:checked::after {
  content: "";
  position: absolute;
  left: 11px;
  top: 6px;
  width: 8px;
  height: 15px;
  border: solid #0067b1;
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
}
.elementor-field-type-checkbox input[type=checkbox]:focus {
  box-shadow: 0 0 0 3px rgba(33, 150, 243, 0.3);
}
.elementor-field-type-checkbox input[type=checkbox]:disabled {
  background-color: #f5f5f5;
  opacity: 0.6;
  cursor: not-allowed;
}
.elementor-field-type-checkbox input[type=checkbox]:disabled:checked::after {
  border-color: #ccc;
}

.elementor-form .elementor-field-type-text input[type=text]:focus, .elementor-form .elementor-field-type-text input[type=text]:active {
  background-color: #fff !important;
  box-shadow: 0 0 0 3px rgba(33, 150, 243, 0.3) !important;
  outline: none !important;
}
.elementor-form .elementor-field-type-email input[type=email]:focus, .elementor-form .elementor-field-type-email input[type=email]:active {
  background-color: #fff !important;
  box-shadow: 0 0 0 3px rgba(33, 150, 243, 0.3) !important;
  outline: none !important;
}

.form-orange .elementor-field-type-checkbox input[type=checkbox] {
  background-color: #fad399;
}
.form-orange .elementor-field-type-checkbox input[type=checkbox]:checked {
  background-color: #fad399;
}

.form-purple .elementor-field-type-checkbox input[type=checkbox] {
  background-color: #fcf5fa;
}
.form-purple .elementor-field-type-checkbox input[type=checkbox]:checked {
  background-color: #fcf5fa;
}/*# sourceMappingURL=custom.css.map */