/* Mixins
================================================== */
/* Breakpoints
================================================== */
/* Color
================================================== */
/* Labels
================================================== */
label,
legend,
.label,
.legend {
  display: inline-block;
}

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

/* Input & textarea
================================================== */
input {
  border-radius: 0 !important;
}

input[type=text],
input[type=email],
input[type=search],
input[type=date],
input[type=tel],
input[type=number],
input[type=password],
select,
textarea {
  border-radius: 0;
  outline: 0;
  box-shadow: none;
  border-top: 0 !important;
  border-left: 0 !important;
  border-right: 0 !important;
  color: var(--color-black);
  border-bottom: solid 1px;
  line-height: 1.25;
  background-color: transparent;
  font-size: 1em;
  padding: 0.5em 0;
  outline: none;
  margin: 0;
  display: inline-block;
  position: relative;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
  transition: 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;
}

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

/* Select
================================================== */
select {
  cursor: pointer;
  background: url(../../images/select.svg) no-repeat right center;
}
@media (max-width: 768px) {
  select {
    background-size: 0.7em;
  }
}

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 rgba(0, 0, 0, 0) 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;
}

.nf-form-cont .ninja-forms-req-symbol {
  color: #000;
}
.nf-form-cont .nf-error-msg {
  color: var(--color-orange);
}
.nf-form-cont .nf-field-label .nf-label-span, .nf-form-cont .nf-field-label label {
  font-weight: normal;
}
.nf-form-cont .nf-progress-container {
  display: none;
}
.nf-form-cont .nf-breadcrumbs li {
  display: none;
}
.nf-form-cont .nf-breadcrumbs li a {
  font-weight: normal !important;
  font-size: 1em;
}
.nf-form-cont .nf-breadcrumbs li.active {
  display: block;
}
.nf-form-cont .nf-fu-fileinput-button {
  text-transform: none;
  padding: 0;
  border: none !important;
  border-radius: 0;
  color: var(--color-black);
  font-size: 1em;
  font-family: "Baskervville", serif;
  background: transparent !important;
}
.nf-form-cont .nf-fu-fileinput-button:focus, .nf-form-cont .nf-fu-fileinput-button:hover {
  color: var(--color-grey);
}
.nf-form-cont .nf-fu-fileinput-button {
  position: absolute;
  right: 0;
  top: -1.8em;
}
.nf-form-cont .nf-fu-button-cancel {
  display: none !important;
}
.nf-form-cont .nf-fu-progress {
  box-shadow: none;
  height: 1px;
  background-color: #000;
  margin-bottom: 5px !important;
}
.nf-form-cont .nf-fu-progress-bar {
  background-color: var(--color-orange);
}
.nf-form-cont .files_uploaded p {
  font-size: 0.7em;
  border: solid 1px;
  border-radius: 2em;
  padding: 0.5em 2em;
  display: inline-block;
  position: relative;
  padding-right: 3em;
}
.nf-form-cont .files_uploaded p .delete {
  text-indent: -9999px;
  width: 1em;
  height: 1em;
  display: inline-block;
  position: relative;
  position: absolute;
  right: 1em;
}
.nf-form-cont .files_uploaded p .delete:before {
  content: "X";
  position: absolute;
  left: 0;
  text-indent: 0;
}
.nf-form-cont input.nf-previous {
  display: none;
}
.nf-form-cont input.nf-next {
  border: none;
  background: transparent;
  border-bottom: solid 1px;
  padding: 0.5em 0;
  width: 100%;
  display: block;
  text-transform: uppercase;
  text-align: left;
  cursor: pointer;
  color: var(--color-black);
  transition: 0.5s;
  font-family: "basier_squareregular";
  font-weight: normal;
}
.nf-form-cont input.nf-next:focus, .nf-form-cont input.nf-next:hover {
  color: var(--color-grey);
}
.nf-form-cont li.nf-next-item {
  width: 100%;
  text-align: right;
  float: none;
  background: url(../../images/next.svg) no-repeat right center;
  cursor: pointer;
}
@media (max-width: 768px) {
  .nf-form-cont li.nf-next-item {
    background-size: 0.7em;
  }
}