@charset "UTF-8";
/* Mixins
================================================== */
/* Breakpoints
================================================== */
/* Color
================================================== */
/* Labels
================================================== */
label,
legend,
.label,
.legend {
  display: inline-block;
}

fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

label.error {
  color: red;
}

/* Input & textarea
================================================== */
input[type=text],
input[type=email],
input[type=search],
input[type=date],
input[type=tel],
input[type=number],
input[type=password],
select,
textarea {
  outline: 0;
  box-shadow: none;
  border: solid 1px;
  background-color: #fff;
  font-size: 1em;
  padding: 0.5em 1em;
  outline: none;
  margin: 0;
  display: inline-block;
  position: relative;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
  transition: background-color 0.5s;
  -webkit-appearance: none;
  -moz-appearance: none;
  -o-appearance: none;
  appearance: none;
}
input[type=text]:focus,
input[type=email]:focus,
input[type=search]:focus,
input[type=date]:focus,
input[type=tel]:focus,
input[type=number]:focus,
input[type=password]:focus,
select:focus,
textarea:focus {
  outline: none !important;
}
input[type=text].error,
input[type=email].error,
input[type=search].error,
input[type=date].error,
input[type=tel].error,
input[type=number].error,
input[type=password].error,
select.error,
textarea.error {
  border-color: red;
}

textarea {
  resize: vertical;
  min-height: 6em;
}

/* Select
================================================== */
select {
  cursor: pointer;
}

select[multiple] {
  background-image: none;
}

select option {
  color: #000 !important;
  background-color: #FFF !important;
}

/* Autofill text
================================================== */
input:-webkit-autofill,
textarea:-webkit-autofill,
select:-webkit-autofill {
  background: transparent !important;
  -webkit-box-shadow: 0 0 0px 1000px #eee inset;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  -webkit-transition: background-color 5000s ease-in-out 0s;
  transition: background-color 5000s ease-in-out 0s;
}

/* Checkboxes  & Radio buttons
================================================== */
.checkradio, .checkboxes,
.radios {
  display: inline-block;
  padding: 0;
  position: relative;
}
.checkradio input, .checkboxes input,
.radios input {
  display: none;
  visibility: hidden;
  width: 0;
  height: 0;
}
.checkradio label, .checkboxes label,
.radios label {
  display: inline-block;
  width: auto;
  padding: 0 0 0 1.5em;
  height: auto;
  position: relative;
  font-weight: normal;
  cursor: pointer;
  margin-right: 1em;
}
.checkradio label:before, .checkboxes label:before,
.radios label:before {
  content: "";
  position: absolute;
  width: 1em;
  height: 1em;
  top: 0.2em;
  left: 0;
  display: inline-block;
  border: solid 1px;
  background: #fff;
  cursor: pointer;
}

.checkboxes input[type=checkbox]:checked + label:after {
  content: "✔";
  position: absolute;
  top: 0em;
  height: 1em;
  width: 1em;
  left: 0;
  text-align: center;
  -ms-background-size: contain;
  background-size: contain;
}

.radios label:before {
  border-radius: 100%;
}
.radios input[type=radio]:checked + label:after {
  position: absolute;
  top: 0.2em;
  height: 1em;
  width: 1em;
  border: solid 1px;
  left: 0;
  content: "";
  display: block;
  background: #000;
  border-radius: 100%;
}