.ask_form_item input {
  width: 100%;
  border-radius: 12px;
  height: 55px;
  background: rgb(255, 255, 255);
  border: none;
  text-indent: 18px;
  color: #000;
  font-family: Nunito;
  font-size: 16px;
  font-weight: 500;
  line-height: 22px;
  letter-spacing: 0%;
  text-align: left;
}

.ask_form_item input::placeholder,
.ask_form_item textarea::placeholder {
  color: rgb(137, 154, 181);
}

.dark_mode .ask_form_item input {
  border: 1px solid rgb(96, 105, 255);
  background: transparent;
  color: rgb(255, 255, 255);
}

.dark_mode .ask_form_item input::placeholder,
.dark_mode .ask_form_item textarea::placeholder {
  color: #fff;
}

.ask_form_item {
  margin-bottom: 5px;
}

.ask_form_item textarea {
  width: 100%;
  border-radius: 12px;
  height: 68px;
  background: rgb(255, 255, 255);
  border: none;
  color: #000;
  font-family: Nunito;
  font-size: 16px;
  font-weight: 500;
  line-height: 22px;
  letter-spacing: 0%;
  text-align: left;
  padding: 13px 18px;
}

.dark_mode .ask_form_item textarea {
  color: #fff;
  background: transparent;
}

.ask_form_item_actions {
  display: flex;
  align-items: center;
  padding-left: 19px;
  gap: 20px;
}

.ask_form_item_block_actions {
  border-radius: 12px;
  border: 1px solid rgb(255, 255, 255);
  background: rgb(255, 255, 255);
  padding-bottom: 16px;
}

.dark_mode .ask_form_item_block_actions {
  background: transparent;
  border: 1px solid rgb(96, 105, 255);
}

.ask_form_item_actions div {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s ease;
}

.ask_form_item_actions div svg {
  fill: rgb(202, 212, 227);
}

.dark_mode .ask_form_item_actions div svg {
  fill: rgb(98, 106, 255);
}

.ask_form_item_actions div:hover {
  transition: all 0.2s ease;
  opacity: 0.7;
}

.ask_form_item_actions p {
  color: rgb(137, 154, 181);
  font-family: Nunito;
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
  letter-spacing: 0%;
  text-align: left;
}

.ask_form_item_actions p span:nth-child(2) {
  display: none;
}

.hidden {
  display: none !important;
}

.select_category_filters .select_category_item {
  width: 50%;
}

.select_category_filters {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 15px;
  gap: 5px;
}

.select_category_filters .select_category_item {
  width: 50%;
}

.asf_form_actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.chechbox_item {
  display: flex;
  align-items: center;
  gap: 13px;
}

.chechbox_item input {
  border-radius: 6px;
  width: 25px;
  height: 25px;
  background: rgb(98, 106, 255);
  cursor: pointer;
  border: none;
}

@media only screen and (max-width: 700px) {
  .questions_filter {
    margin: 0 !important;
  }

  .asf_form_actions {
    flex-direction: column-reverse;
    align-items: start;
    gap: 15px;
  }

  .asf_form_actions .ask_from_send_btn {
    flex-direction: column;
    align-items: start;
  }

  .select_category_filters {
    flex-direction: column;
  }

  .select_category_filters .select_category_item {
    width: 100%;
  }
}

@media only screen and (max-width: 500px) {

  .ask_form_item input,
  .ask_form_item textarea,
  .ask_form_item_actions p span:nth-child(2) {
    display: block;
  }

  .ask_form_item_actions p span:nth-child(1) {
    display: none;
  }

  .ask_form_item_actions {
    width: 100%;
    justify-content: space-between;
    padding-right: 15px;
  }

  .ask_form_item_actions p {
    display: flex;
    align-items: center;
    gap: 4px;
    text-transform: capitalize;
  }

  .ask_from_send_btn button,
  .asf_form_actions,
  .ask_from_send_btn {
    width: 100%;
  }
}