@charset "utf-8";
.required-font {
  color: red;
  font-size: 16px;
  margin-right: .5rem;
}
.input-error {
  color: red;
  line-height: 22px;
  font-size: 16px;
  position: absolute;
  text-indent: 1rem;
}
.select {
  position: relative;
}
.select::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  margin-top: -4px;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-top: 8px solid #545454;
}
input,
select,
textarea {
  outline-color: #297aff;
  outline-width: 1px;
  overflow: auto;
}
input::-webkit-input-placeholder,
select::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  color: #c9c9c9;
}
input::-moz-placeholder,
select::-moz-placeholder,
textarea::-moz-placeholder {
  color: #c9c9c9;
}
input:-moz-placeholder,
select:-moz-placeholder,
textarea:-moz-placeholder {
  color: #c9c9c9;
}
select {
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
}
select::-ms-expand {
  display: none;
}
.line-field {
  display: flex;
  align-items: center;
  margin-top: 1.5rem;
}
.line-field > div {
  flex: 1;
  box-sizing: border-box;
}
.line-field.textarea-field {
  align-items: flex-start;
}
.line-field.textarea-field span {
  margin-top: 1rem;
}
.line-field > span {
  font-size: 16px;
  color: #545454;
  line-height: 30px;
  text-align: right;
  margin-right: 2rem;
  display: inline-block;
  width: 90px;
}
.line-field select,
.line-field input {
  height: 44px;
  background: #FBFBFB;
  border: 1px solid #DCDCDC;
  border-radius: 4px;
  font-size: 16px;
  color: #545454;
  line-height: 30px;
  padding-left: 1rem;
  box-sizing: border-box;
  width: 100%;
}
.line-field textarea {
  font-size: 16px;
  width: 100%;
  background: #FBFBFB;
  border: 1px solid #DCDCDC;
  border-radius: 4px;
  padding: 1rem;
  box-sizing: border-box;
}
