.ask-question-in-content {
  width: 100%;
  max-width: 740px;
  background: #f3f5fc;
  border: 1px solid #e1eafd;
  padding: 24px 24px 32px;
  margin: 24px auto;
  position: relative;
}
.ask-question-in-content .ask__title {
  font-weight: bold;
  font-size: 20px;
  line-height: 28px;
  margin-bottom: 4px;
}
@media (max-width: 767px) {
  .ask-question-in-content .ask__title {
    font-size: 18px;
    line-height: 26px;
  }
}
.ask-question-in-content .ask__subtitle {
  font-size: 14px;
  line-height: 20px;
  margin-bottom: 17px;
}
.ask-question-in-content .ask-textarea {
  width: 100%;
  min-height: 72px;
  max-height: 144px;
  margin-bottom: 8px;
  border: none;
  overflow: auto;
  outline: none;
  box-shadow: none;
  resize: vertical;
  font-size: 16px;
  line-height: 24px;
  padding: 0;
  font-family: inherit;
  background: transparent;
}
.ask-question-in-content .ask-textarea::placeholder {
  color: #969698;
}
.ask-question-in-content .ask-textarea-wrp {
  width: 100%;
  padding: 11px 16px 17px;
  background: #fff;
  border-radius: 2px;
  border: 2px solid #ebebeb;
}
.ask-question-in-content .ask__submit {
  border: none;
  margin: 0;
  width: auto;
  outline: none;
  font: inherit;
  line-height: normal;
  -webkit-font-smoothing: inherit;
  -moz-osx-font-smoothing: inherit;
  -webkit-appearance: none;
  height: 24px;
  padding: 0 16px;
  display: flex;
  align-items: center;
  color: white;
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 1px;
  background: #ed5e42;
  border-radius: 2px;
  cursor: pointer;
}
.ask-question-in-content .ask__submit::-moz-focus-inner {
  border: 0;
  padding: 0;
}
.ask-question-in-content .ask__submit:disabled {
  cursor: default;
  background: #f0f0f0;
}
@media (min-width: 1025px) {
  .ask-question-in-content .ask__submit:not(:disabled):hover {
    background: #e63816;
  }
}
.ask-question-in-content .ask-after-sent {
  display: none;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: inherit;
}
.ask-question-in-content .ask__successImg {
  width: 160px;
  height: 160px;
  background-image: url(img/qna-success.svg);
}
.ask-question-in-content .ask__successMessage {
  font-weight: bold;
  font-size: 16px;
  line-height: 25px;
  max-width: 291px;
}
.ask-question-in-content--success .ask-after-sent {
  display: flex;
}

.ask-question-in-content--dark {
  background: #43545c;
  border: none;
  color: white;
}
.ask-question-in-content--dark .ask-textarea-wrp {
  background: #263238;
  border: none;
}
.ask-question-in-content--dark .ask-textarea {
  color: white;
}
.ask-question-in-content--dark .ask-textarea::placeholder {
  color: #8f9b9f;
}
.ask-question-in-content--dark .ask__submit:disabled {
  background: #2c3940;
  color: #4a5c65;
}

.ask-question-in-content--night {
  background: #303030;
  border: none;
  color: white;
}
.ask-question-in-content--night .ask-textarea-wrp {
  background: #000;
  border: none;
}
.ask-question-in-content--night .ask-textarea {
  color: white;
}
.ask-question-in-content--night .ask-textarea::placeholder {
  color: #8a8a8a;
}
.ask-question-in-content--night .ask__submit:disabled {
  background: #282828;
  color: #494b4d;
}
