.feedback-form {
  display: flex;
  flex-direction: column;
  margin: 2rem 0;
  width: 100%;
  padding: 1rem 1.5rem;
  background: #252936;
  border-radius: 0.5rem;
}
.feedback-form__block {
  margin: 0 -1rem;
}
.feedback-form__block--row {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.feedback-form__field {
  position: relative;
  width: 100%;
  padding: 0 1rem 0.5rem;
}
.feedback-form__field .error {
  position: absolute;
  top: calc(100% - 0.5rem);
  left: 1rem;
  z-index: 1;
  background: #9e364d;
  font-size: 0.8rem;
  color: #e7c0c0;
  border-radius: 0.25rem;
  padding: 0.5rem 1rem !important;
}
.feedback-form__field .error:before {
  content: "";
  position: absolute;
  left: 1rem;
  top: -10px;
  border: 5px solid transparent;
  border-bottom: 5px solid #9e364d;
}
.feedback-form__input {
  padding: 0.75rem 1rem;
  border: 1px Solid #31384e;
  border-radius: 0.25rem;
  width: 100%;
  max-width: 100%;
  color: #fff;
  line-height: 1.4;
  background: transparent;
  transition: border-color 0.3s Linear;
}
.feedback-form__input:focus {
  border: 1px Solid #0080ff !important;
}
.feedback-form__input--error {
  border: 1px Solid #9e364d;
}
.feedback-form__textarea {
  padding: 0.75rem 1rem;
  border: 1px Solid #31384e;
  border-radius: 0.25rem;
  width: 100%;
  max-width: 100%;
  min-width: 100%;
  min-height: 100px;
  color: #fff;
  line-height: 1.4;
  background: transparent;
  transition: border-color 0.3s Linear;
}
.feedback-form__textarea:focus {
  border: 1px Solid #0080ff !important;
}
.feedback-form__textarea--error {
  border: 1px Solid #9e364d;
}
.feedback-form__label-agree {
  font-size: 13px;
  color: #c0c0c0;
  transition: color 0.3s Linear;
}
.feedback-form input[type=checkbox] {
  display: block;
}

.feedback-form-success-splash {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #222838;
  opacity: 0.8;
  z-index: 999;
}

.feedback-form-success {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: 500px;
  z-index: 1000;
  border-radius: 0.25rem;
  padding: 1rem 1.5rem;
  background: #4967a4;
  color: #d7e2f7;
  box-shadow: 0 0 2rem 0 rgba(44, 122, 226, 0.34);
}

@media screen and (max-width: 768px) {
  .feedback-form__block--row {
    flex-direction: column;
  }
}
.starrequired {
  color: #d93333;
  margin: 0 0 0 0.25rem;
}
