/* input textarea */
.comment-new .input__message,
.comment-reply .input__reply,
#reply-mb-modal .modal-content .input__modal__reply {
  width: 100%;
  background-color: #EAEAEA;
  color: #888B8F;
  border: 1px solid transparent;
  outline: none;
  padding: 10px 20px;
  resize: vertical;
}

.comment-new .input__message:focus,
.comment-reply .input__reply:focus,
#reply-mb-modal .modal-content .input__modal__reply:focus {
  border-color: #F1341C;
}

#reply-mb-modal .modal-content .input__modal__reply {
  resize: none !important;
}
/* input textarea */

/* btn */
.comment-new .btns,
.comment-reply .btns,
#reply-mb-modal .modal-content .btns {
  text-align: right;
  padding-top: 10px;
}

.comment-new .btn__cancel__message,
.comment-new .btn__send__message,
.comment-reply .btn__cancel__reply,
.comment-reply .btn__send__reply,
#reply-mb-modal .modal-content .btn__cancel__reply,
#reply-mb-modal .modal-content .btn__send__reply {
  border: none;
  outline: none;
  box-shadow: none;
  background-color: transparent;
  font-size: 15px;
  letter-spacing: 0.38px;
  border-radius: 20px;
  padding: 3px 10px;
  transition: all 0.3s ease-in-out;
}

.comment-new .btn__cancel__message,
.comment-reply .btn__cancel__reply,
#reply-mb-modal .modal-content .btn__cancel__reply {
  color: #5B687B;
  margin-right: 10px;
}

.comment-new .btn__send__message,
.comment-reply .btn__send__reply,
#reply-mb-modal .modal-content .btn__send__reply {
  color: #0096FF;
}

.comment-new .btn__send__message:disabled,
.comment-reply .btn__send__reply:disabled,
#reply-mb-modal .modal-content .btn__send__reply:disabled {
  background-color: #808080 !important;
  color: #FFF !important;
  transition: none;
}
/* btn */

.comment-reply {
  padding-top: 40px;
  opacity: 0;
  display: none;
}

#reply-mb-modal .modal-content {
  background-color: #FFF;
  border-radius: 6px;
  padding: 32px 16px;
}

@media screen and (max-width: 1023px) {
  .comment-reply {
    display: none;
  }
}

@media (hover: hover) {
  .comment-new .btn__cancel__message:hover,
  .comment-reply .btn__cancel__reply:hover {
    color: #F1341C;
  }

  .comment-new .btn__send__message:hover,
  .comment-reply .btn__send__reply:hover {
    color: #FFF;
    background-color: #0096FF;
  }
}
