/* line 69, ../scss/cform.style.scss */
.cform-hidden {
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
  width: 0;
  height: 0;
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  visibility: hidden;
  overflow: hidden;
}

/* line 79, ../scss/cform.style.scss */
.cform-template-input, .cform-file .cform-filename, .cform-text input, .cform-text textarea, .cform-checkbox, .cform-radio, .cform-select, .cform-multiselect {
  padding: 3px;
  margin: 0;
  box-sizing: border-box;
  background-color: #b6ccdd;
  border: 1px solid #2a5170;
  font-size: 1em;
  color: #2a3741;
  cursor: pointer;
}
/* line 90, ../scss/cform.style.scss */
.cform-template-input:hover, .cform-file .cform-filename:hover, .cform-text input:hover, .cform-text textarea:hover, .cform-checkbox:hover, .cform-radio:hover, .cform-select:hover, .cform-multiselect:hover {
  background-color: #b6ccdd;
  border-color: #2a3741;
  color: #2a3741;
}
/* line 97, ../scss/cform.style.scss */
.cform-template-input:focus, .cform-file .cform-filename:focus, .cform-text input:focus, .cform-text textarea:focus, .cform-checkbox:focus, .cform-radio:focus, .cform-select:focus, .cform-multiselect:focus, .cform-template-input:active, .cform-file .cform-filename:active, .cform-text input:active, .cform-text textarea:active, .cform-checkbox:active, .cform-radio:active, .cform-select:active, .cform-multiselect:active {
  background-color: #b6ccdd;
  border-color: #2a3741;
  color: #2a3741;
  outline: 0;
}

/* line 105, ../scss/cform.style.scss */
.cform-control-template, .cform-submit input, .cform-button button, .cform-file .cform-control {
  position: relative;
  padding: 5px 10px;
  margin: 0;
  background-color: #2a3741;
  border: 1px solid #2a3741;
  box-sizing: border-box;
  font-size: 1em;
  color: white;
  cursor: pointer;
}
/* line 118, ../scss/cform.style.scss */
.cform-control-template:hover, .cform-submit input:hover, .cform-button button:hover, .cform-file .cform-control:hover {
  background-color: #529632;
  border-color: #529632;
  color: white;
  outline: 0;
}

/* line 126, ../scss/cform.style.scss */
.cform-select-control-template, .cform-select .cform-control {
  position: relative;
  padding: 5px 10px;
  margin: 0;
  background-color: #2a3741;
  border: 1px solid #2a3741;
  box-sizing: border-box;
  font-size: 1em;
  color: white;
  cursor: pointer;
}
/* line 139, ../scss/cform.style.scss */
.cform-select-control-template:hover, .cform-select .cform-control:hover {
  background-color: #529632;
  border-color: #529632;
  color: white;
  outline: 0;
}

/* line 148, ../scss/cform.style.scss */
.cform-submit input {
  text-align: center;
}

/* line 154, ../scss/cform.style.scss */
.cform-button button {
  text-align: center;
}

/* line 160, ../scss/cform.style.scss */
.cform-file {
  position: relative;
}
/* line 163, ../scss/cform.style.scss */
.cform-file .cform-control {
  width: 120px;
  text-align: center;
}
/* line 170, ../scss/cform.style.scss */
.cform-file .cform-filename {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 120px;
  right: 0;
  padding-left: 10px;
  line-height: 2em;
  font-size: 0.75em;
  overflow: hidden;
}

/* line 184, ../scss/cform.style.scss */
.cform-text input {
  padding: 5px 10px;
}
/* line 188, ../scss/cform.style.scss */
.cform-text textarea {
  padding: 5px 10px;
}

/* line 194, ../scss/cform.style.scss */
.cform-checkbox {
  position: relative;
  display: inline-block;
  width: 18px;
  height: 18px;
  box-sizing: border-box;
  cursor: pointer;
}
/* line 204, ../scss/cform.style.scss */
.cform-checkbox .cform-marker {
  display: none;
  width: 10px;
  height: 10px;
  background-color: #2a5170;
}
/* line 211, ../scss/cform.style.scss */
.cform-checkbox.checked .cform-marker {
  display: block;
}

/* line 217, ../scss/cform.style.scss */
.cform-radio {
  position: relative;
  display: inline-block;
  width: 18px;
  height: 18px;
  box-sizing: border-box;
  -webkit-border-radius: 9px;
  -moz-border-radius: 9px;
  -ms-border-radius: 9px;
  -o-border-radius: 9px;
  border-radius: 9px;
  cursor: pointer;
}
/* line 229, ../scss/cform.style.scss */
.cform-radio .cform-marker {
  display: none;
  width: 10px;
  height: 10px;
  background-color: #2a5170;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  border-radius: 5px;
}
/* line 238, ../scss/cform.style.scss */
.cform-radio.checked .cform-marker {
  display: block;
}

/* line 244, ../scss/cform.style.scss */
.cform-select {
  padding: 0;
  position: relative;
  border: none;
}
/* line 251, ../scss/cform.style.scss */
.cform-select .cform-control {
  border-left: 1px solid #2a3741;
  border-top: 1px solid #2a3741;
  border-right: 1px solid #2a3741;
}
/* line 257, ../scss/cform.style.scss */
.cform-select .cform-control .chevron {
  color: white;
}
/* line 261, ../scss/cform.style.scss */
.cform-select .cform-control:hover {
  border-color: #529632;
}
/* line 264, ../scss/cform.style.scss */
.cform-select .cform-control:hover .chevron {
  color: white;
}
/* line 270, ../scss/cform.style.scss */
.cform-select ul {
  position: absolute;
  top: 100%;
  left: 0;
  margin: 0;
  padding: 0;
  width: 100%;
  max-height: 0px;
  list-style: none;
  overflow: hidden;
  background-color: #b6ccdd;
  -webkit-transition: max-height 0.5s linear;
  -moz-transition: max-height 0.5s linear;
  -o-transition: max-height 0.5s linear;
  transition: max-height 0.5s linear;
}
/* line 285, ../scss/cform.style.scss */
.cform-select ul li {
  padding: 4px 8px;
  color: #2a5170;
  border-left: 1px solid #2a3741;
  border-right: 1px solid #2a3741;
}
/* line 291, ../scss/cform.style.scss */
.cform-select ul li.selected {
  background-color: #2a5170;
  border-color: #2a3741;
  color: white;
}
/* line 296, ../scss/cform.style.scss */
.cform-select ul li:hover {
  background-color: #529632;
  border-color: #2a3741;
  color: white;
}
/* line 301, ../scss/cform.style.scss */
.cform-select ul li:last-child {
  border-bottom: 1px solid #2a3741;
}
/* line 307, ../scss/cform.style.scss */
.cform-select.disabled .cform-control {
  background-color: #aaaaaa;
  color: white;
  cursor: default;
}
/* line 312, ../scss/cform.style.scss */
.cform-select.disabled .cform-control:hover {
  background-color: #aaaaaa;
  color: white;
}
/* line 319, ../scss/cform.style.scss */
.cform-select.active .cform-control {
  background-color: #529632;
  border-color: #529632;
}
/* line 323, ../scss/cform.style.scss */
.cform-select.active .cform-control .chevron {
  border-color: white;
}
/* line 328, ../scss/cform.style.scss */
.cform-select.active ul {
  max-height: 800px;
}

/* line 334, ../scss/cform.style.scss */
.cform-multiselect {
  padding: 0;
}
/* line 338, ../scss/cform.style.scss */
.cform-multiselect ul {
  margin: 0;
  padding: 0;
  width: 100%;
  list-style: none;
  background-color: #b6ccdd;
  -webkit-transition: all 0.5s linear;
  -moz-transition: all 0.5s linear;
  -o-transition: all 0.5s linear;
  transition: all 0.5s linear;
  overflow: hidden;
}
/* line 350, ../scss/cform.style.scss */
.cform-multiselect ul li {
  padding: 4px 8px;
  color: #2a5170;
}
/* line 354, ../scss/cform.style.scss */
.cform-multiselect ul li.selected {
  color: #fff;
  background-color: #2a5170;
}
/* line 358, ../scss/cform.style.scss */
.cform-multiselect ul li:hover {
  color: #fff;
  background-color: #529632;
}

/* line 366, ../scss/cform.style.scss */
.chevron::before {
  content: '';
  position: absolute;
  top: 7px;
  right: 10px;
  display: inline-block;
  width: 0.45em;
  height: 0.45em;
  border-style: solid;
  border-width: 0.15em 0.15em 0 0;
  border-color: white;
  vertical-align: center;
  transform: rotate(-45deg);
}

/* line 381, ../scss/cform.style.scss */
.chevron.bottom:before {
  transform: rotate(135deg);
}
