@media only screen and (max-width: 480px) {
  body .mihanticket .new-ticket .form .mihanticket-step .bottom-btn-wrapper {
    flex-direction: column;
    gap: 20px;
  }
  body .mihanticket .new-ticket .form .mihanticket-step .bottom-btn-wrapper .mwtc-btn {
    text-align: center;
  }
}
@media only screen and (max-width: 768px) {
  body .mihanticket .new-ticket .form .mihanticket-step .mwtc-orders-list {
    grid-template-columns: 1fr;
  }
  body .mihanticket .new-ticket .form .mihanticket-step[step=ticket-subject] .ticket-search-result-wrapper .mwtc-search-result-items {
    grid-template-columns: 1fr;
  }
}
@keyframes show_alert {
  0% {
    left: -120%;
  }
  100% {
    left: 0;
  }
}
@keyframes mwtc_spinning {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(180deg);
  }
}
.poshtvan.poshtvan_ltr .alert::before {
  right: unset;
  left: 0;
}
.poshtvan .alert {
  padding: 15px;
  border-radius: 10px;
  position: relative;
}
.poshtvan .alert::before {
  content: "";
  display: block;
  height: 80%;
  width: 5px;
  position: absolute;
  top: 50%;
  right: 0;
  border-radius: 50px;
  transform: translateY(-50%);
}
.poshtvan .alert.success {
  background-color: #edfff2;
  color: black;
}
.poshtvan .alert.success::before {
  background-color: #2bce5f;
}
.poshtvan .alert.error {
  background-color: #ffefed;
  color: black;
}
.poshtvan .alert.error::before {
  background-color: #fc503a;
}

.mihanticket a {
  text-decoration: none;
}
.mihanticket .alert {
  width: calc(100% - 85px) !important;
  margin: 10px auto !important;
  color: #fff !important;
  padding: 15px 30px !important;
  font-size: 15px !important;
  border-radius: 4px !important;
  display: block;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2) !important;
}
.mihanticket .alert.alert-warning {
  background-color: #ff791a;
}
.mihanticket .alert.alert-info {
  background-color: #1E88E5;
}
.mihanticket .alert.alert-danger {
  background-color: #d64b41;
}
.mihanticket .mwtc-spinning-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #ebf4f9;
  padding: 10px;
  border: 1px solid #e7eef2;
  border-radius: 5px;
}
.mihanticket .mwtc-spinning-wrapper .mwtc-spinning {
  animation-name: mwtc_spinning;
  animation-duration: 1s;
  animation-iteration-count: infinite;
}
.mihanticket .new-ticket .new-ticket-toolbar {
  display: flex;
}
.mihanticket .new-ticket .new-ticket-toolbar .open-new-ticket-form {
  cursor: pointer;
  line-height: 45px;
  color: #fff;
  padding: 0 30px;
  display: inline-block;
  background: #4a6dfe;
  font-weight: bold;
  margin: 20px 0 20px 10px;
  border-radius: 4px;
  box-shadow: 0 7px 15px #4a6dfe50;
}
.mihanticket .new-ticket .new-ticket-toolbar .open-new-ticket-form.close-mode {
  background-color: #ff4b6d;
  box-shadow: 0 7px 15px #ff4b6d40;
}
.mihanticket .new-ticket .form {
  display: none;
  width: 96%;
  margin: 0 auto;
}
.mihanticket .new-ticket .form label {
  display: inherit;
}
.mihanticket .new-ticket .form input[type=text],
.mihanticket .new-ticket .form input[type=email],
.mihanticket .new-ticket .form textarea,
.mihanticket .new-ticket .form select {
  border: 1px solid #d5d8dc;
  padding: 8px;
  background: #fff;
  width: 100%;
  max-width: 100%;
  border-radius: 4px;
  margin: 10px 0;
  color: #35495c;
  transition-duration: 0.3s;
}
.mihanticket .new-ticket .form .bottom-toolbar.default-mode {
  display: flex;
  flex-direction: row-reverse;
}
.mihanticket .new-ticket .form .bottom-toolbar.default-mode .submit-new-ticket {
  cursor: pointer;
  line-height: 45px;
  background: #4a6dfe;
  margin: 20px auto;
  color: #fff;
  float: none;
  padding: 0 30px;
  display: inline-block;
  border-radius: 4px;
  box-shadow: 0 5px 15px #4a6dfe50;
  -webkit-transition-duration: 0.2s;
  transition-duration: 0.2s;
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 150px;
  min-height: 45px;
}
.mihanticket .new-ticket .form .bottom-toolbar .submit-new-ticket.loading {
  pointer-events: none;
}
.mihanticket .new-ticket .form .mihanticket-step-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-bottom: 10px;
}
.mihanticket .new-ticket .form .mihanticket-step-list > span {
  padding: 10px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 15px;
  position: relative;
}
.mihanticket .new-ticket .form .mihanticket-step-list > span.active::after, .mihanticket .new-ticket .form .mihanticket-step-list > span.active::before,
.mihanticket .new-ticket .form .mihanticket-step-list > span.active .label {
  background-color: #4a6dfe;
  color: white;
}
.mihanticket .new-ticket .form .mihanticket-step-list > span.active .label {
  border: 3px solid #6f88f4;
}
.mihanticket .new-ticket .form .mihanticket-step-list > span.active .value {
  color: black;
}
.mihanticket .new-ticket .form .mihanticket-step-list > span::after {
  content: "";
  position: absolute;
  height: 3px;
  width: 40%;
  background-color: #d9d9d9;
  left: 0;
  top: 30px;
}
.mihanticket .new-ticket .form .mihanticket-step-list > span::before {
  content: "";
  position: absolute;
  height: 3px;
  width: 40%;
  background-color: #d9d9d9;
  right: 0;
  top: 30px;
}
.mihanticket .new-ticket .form .mihanticket-step-list > span .label {
  width: 40px;
  height: 40px;
  background-color: #d9d9d9;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.mihanticket .new-ticket .form .mihanticket-step-list > span .value {
  color: #9d9d9d;
  font-size: 16px;
  font-weight: 300;
}
.mihanticket .new-ticket .form .mihanticket-step {
  padding: 20px 0 30px;
}
.mihanticket .new-ticket .form .mihanticket-step:not(.active) {
  display: none;
}
.mihanticket .new-ticket .form .mihanticket-step .mwtc-section-title {
  font-size: 29px;
  font-weight: bold;
  margin-bottom: 20px;
  display: block;
  text-align: center;
}
.mihanticket .new-ticket .form .mihanticket-step .mwtc-orders-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.mihanticket .new-ticket .form .mihanticket-step .mwtc-orders-list label {
  cursor: pointer;
}
.mihanticket .new-ticket .form .mihanticket-step .mwtc-orders-list input[type=radio] {
  display: none;
}
.mihanticket .new-ticket .form .mihanticket-step .mwtc-orders-list input[type=radio]:checked + .mwtc-order-item {
  outline: 1px solid #4a6dfe;
  background-color: #4a6dfe;
}
.mihanticket .new-ticket .form .mihanticket-step .mwtc-orders-list input[type=radio]:checked + .mwtc-order-item .mwtc-title,
.mihanticket .new-ticket .form .mihanticket-step .mwtc-orders-list input[type=radio]:checked + .mwtc-order-item .item-order-id {
  color: white;
}
.mihanticket .new-ticket .form .mihanticket-step .mwtc-orders-list .mwtc-order-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  border-radius: 20px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
  background-color: #fff;
}
.mihanticket .new-ticket .form .mihanticket-step .mwtc-orders-list .mwtc-order-item .mwtc-thumbnail {
  width: 100px;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
}
.mihanticket .new-ticket .form .mihanticket-step .mwtc-orders-list .mwtc-order-item .mwtc-thumbnail img {
  width: 100%;
  height: auto;
}
.mihanticket .new-ticket .form .mihanticket-step .mwtc-orders-list .mwtc-order-item .mwtc-title {
  font-size: 18px;
  font-weight: bold;
}
.mihanticket .new-ticket .form .mihanticket-step .mwtc-orders-list .mwtc-order-item .mwtc-title .item-order-id {
  font-weight: 300;
  color: #999;
  font-size: 15px;
}
.mihanticket .new-ticket .form .mihanticket-step .bottom-btn-wrapper {
  margin: 20px 0;
  display: flex;
  justify-content: center;
  gap: 10px;
}
.mihanticket .new-ticket .form .mihanticket-step .bottom-btn-wrapper .mwtc-btn {
  padding: 20px;
  font-size: 20px;
  display: inline-block;
  border-radius: 4px;
  cursor: pointer;
}
.mihanticket .new-ticket .form .mihanticket-step .bottom-btn-wrapper .mwtc-btn.next-step-btn, .mihanticket .new-ticket .form .mihanticket-step .bottom-btn-wrapper .mwtc-btn.primary-btn {
  background-color: #4a6dfe;
  box-shadow: 0 7px 15px #4a6dfe50;
  color: white;
}
.mihanticket .new-ticket .form .mihanticket-step .bottom-btn-wrapper .mwtc-btn.prev-step-btn {
  background-color: #efeff0;
  box-shadow: 0 7px 15px #efeff050;
  color: black;
}
.mihanticket .new-ticket .form .mihanticket-step[step=faq-items] .mwtc-faq-items {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.mihanticket .new-ticket .form .mihanticket-step[step=faq-items] .mwtc-faq-items .mwtc-faq-item {
  cursor: pointer;
  background-color: white;
  border: 1px solid #ececec;
  border-radius: 10px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.mihanticket .new-ticket .form .mihanticket-step[step=faq-items] .mwtc-faq-items .mwtc-faq-item .mwtc-faq-item-title {
  font-size: 19px;
  display: flex;
  gap: 15px;
}
.mihanticket .new-ticket .form .mihanticket-step[step=faq-items] .mwtc-faq-items .mwtc-faq-item .mwtc-faq-item-title .mwtc-faq-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.3s;
}
.mihanticket .new-ticket .form .mihanticket-step[step=faq-items] .mwtc-faq-items .mwtc-faq-item .mwtc-faq-item-title .mwtc-faq-icon.mwtc-rotate {
  transform: rotate(180deg);
}
.mihanticket .new-ticket .form .mihanticket-step[step=faq-items] .mwtc-faq-items .mwtc-faq-item:not(.open) .mwtc-faq-item-content {
  display: none;
}
.mihanticket .new-ticket .form .mihanticket-step[step=faq-items] .mwtc-faq-items .mwtc-faq-item .mwtc-faq-item-content a {
  display: inline-block;
  background: linear-gradient(to left, #8845f5, #aa7af8);
  box-shadow: 0 7px 20px #8845f550;
  color: white;
  border-radius: 8px;
  padding: 5px 10px;
}
.mihanticket .new-ticket .form .mihanticket-step[step=ticket-subject] input[type=text] {
  padding: 20px;
  text-align: center;
  font-size: 20px;
}
.mihanticket .new-ticket .form .mihanticket-step[step=ticket-subject] .ticket-search-result-wrapper .mwtc-search-notice {
  background-color: #f8f9ff;
  padding: 10px;
  display: block;
  border-radius: 7px;
  border: 1px solid #e7e7e8;
}
.mihanticket .new-ticket .form .mihanticket-step[step=ticket-subject] .ticket-search-result-wrapper .mwtc-search-result-items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 15px;
}
.mihanticket .new-ticket .form .mihanticket-step[step=ticket-subject] .ticket-search-result-wrapper .mwtc-search-result-items .mwtc-result-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
  border-radius: 20px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
  background-color: #fff;
  border: 1px solid #f5f5f5;
}
.mihanticket .new-ticket .form .mihanticket-step[step=ticket-subject] .ticket-search-result-wrapper .mwtc-search-result-items .mwtc-result-item .mwtc-thumbnail {
  width: 100px;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
}
.mihanticket .new-ticket .form .mihanticket-step[step=ticket-subject] .ticket-search-result-wrapper .mwtc-search-result-items .mwtc-result-item .mwtc-thumbnail img {
  width: 100%;
  height: auto;
}
.mihanticket .new-ticket .form .mihanticket-step[step=ticket-subject] .ticket-search-result-wrapper .mwtc-search-result-items .mwtc-result-item .mwtc-title {
  font-size: 18px;
}
.mihanticket .mihanticket-list > .items .mihanticket-wait {
  color: #ccc;
  text-align: center;
  display: block;
  width: 100%;
  font-weight: 100;
  font-size: 30px;
  line-height: 4em;
}
.mihanticket .mihanticket-list > .items > .item {
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
  margin-bottom: 15px;
  background: #fff;
  border: 1px solid #f5f5f5;
}
.mihanticket .mihanticket-list > .items > .item .inner-data {
  width: 100%;
  min-height: 100px;
  grid-column: 1/span 4;
  display: flex;
  flex-direction: column-reverse;
  align-items: normal;
  justify-content: normal;
  display: none;
}
.mihanticket .mihanticket-list > .items > .item .inner-data .ticket-header {
  float: left;
  order: 2;
  width: 100%;
  margin-top: 20px;
  box-sizing: border-box;
}
.mihanticket .mihanticket-list > .items > .item .inner-data .ticket-header .action-bar {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
}
.mihanticket .mihanticket-list > .items > .item .inner-data .ticket-header .action-bar .solve-btn {
  cursor: pointer;
  background-color: #00C178;
  color: white;
  box-shadow: 0 7px 10px #00C17820;
}
.mihanticket .mihanticket-list > .items > .item .inner-data .ticket-header .action-bar .action-btn {
  font-size: 15px;
  padding: 10px 50px;
  border-radius: 4px;
  color: #00C178;
  font-weight: bold;
  background-color: #00C17830;
  box-shadow: 0 7px 10px #00C17820;
}
.mihanticket .mihanticket-list > .items > .item .inner-data .ticket-header .action-bar .back-btn {
  background-color: #ff4700;
  color: #fff;
  box-shadow: 0 7px 10px #ff470020;
}
.mihanticket .mihanticket-list > .items > .item .inner-data .ticket-header .action-bar .change-status {
  flex: auto;
}
.mihanticket .mihanticket-list > .items > .item .inner-data .ticket-header .action-bar .change-status select {
  width: 95%;
  height: 100%;
}
.mihanticket .mihanticket-list > .items > .item .inner-data .ticket-header .meta-data {
  display: flex;
  flex-direction: column;
  padding: 20px;
}
.mihanticket .mihanticket-list > .items > .item .inner-data .ticket-header .meta-data > span {
  display: grid;
  grid-template-columns: 1fr 3fr;
  font-size: 15px;
  margin: 5px 0;
}
.mihanticket .mihanticket-list > .items > .item .inner-data .ticket-header .meta-data > span label {
  color: #333;
}
.mihanticket .mihanticket-list > .items > .item .inner-data .content {
  order: 1;
  min-height: 70px;
}
.mihanticket .mihanticket-list > .items > .item .inner-data .content p {
  overflow: auto;
}
.mihanticket .mihanticket-list > .items > .item .inner-data .content .new-reply {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.mihanticket .mihanticket-list > .items > .item .inner-data .content .new-reply .submit-reply {
  cursor: pointer;
  line-height: 45px;
  background: #4a6dfe;
  margin: 10px auto;
  color: #fff;
  padding: 0 30px;
  min-width: 30%;
  text-align: center;
  display: inline-block;
  border-radius: 4px;
  box-shadow: 0 7px 15px #4a6dfe90;
  -webkit-transition-duration: 0.2s;
  transition-duration: 0.2s;
}
.mihanticket .mihanticket-list > .items > .item .inner-data .content .main-content-value {
  background: #f3f4fd;
  border-radius: 20px;
  padding: 30px;
  box-sizing: border-box;
  width: 100%;
  font-size: 18px;
  margin-bottom: 20px;
  position: relative;
}
.mihanticket .mihanticket-list > .items > .item .inner-data .content .main-content-value::after {
  background: #f3f4fd;
  width: 15px;
  height: 15px;
  content: " ";
  display: block;
  left: -5px;
  top: 30px;
  border-radius: 2px;
  transform: rotate(45deg);
  position: absolute;
}
.mihanticket .mihanticket-list > .items > .item .inner-data .content .main-content-value .date {
  opacity: 0.7;
  font-size: 15px;
}
.mihanticket .mihanticket-list > .items > .item .inner-data .content .attachment_file a {
  color: #35495C;
  background: rgba(1, 1, 1, 0.1);
  padding: 5px 10px;
  margin-top: 10px;
  display: inline-block;
  border-radius: 4px;
}
.mihanticket .mihanticket-list > .items > .item .inner-data .content .replies {
  display: flex;
  flex-direction: column;
}
.mihanticket .mihanticket-list > .items > .item .inner-data .content .replies .item {
  margin: 10px 0;
  width: 95%;
  background-color: #f3f4fd;
  border-radius: 20px;
  padding: 30px;
  position: relative;
}
.mihanticket .mihanticket-list > .items > .item .inner-data .content .replies .item::before {
  background: #f3f4fd;
  width: 15px;
  height: 15px;
  content: " ";
  display: block;
  left: -5px;
  border-radius: 2px;
  transform: rotate(45deg);
  position: absolute;
}
.mihanticket .mihanticket-list > .items > .item .inner-data .content .replies .item.other {
  align-self: flex-end;
  flex-direction: row-reverse;
  background: #0885ff;
  border-radius: 20px;
}
.mihanticket .mihanticket-list > .items > .item .inner-data .content .replies .item.other::before {
  background: #0885ff;
  right: -5px;
  left: auto;
}
.mihanticket .mihanticket-list > .items > .item .inner-data .content .replies .item.other .user-data {
  flex-direction: row-reverse;
}
.mihanticket .mihanticket-list > .items > .item .inner-data .content .replies .item.other p,
.mihanticket .mihanticket-list > .items > .item .inner-data .content .replies .item.other span,
.mihanticket .mihanticket-list > .items > .item .inner-data .content .replies .item.other a {
  color: #fff;
}
.mihanticket .mihanticket-list > .items > .item .inner-data .content .replies .item.other .attachment_file a {
  background-color: rgba(255, 255, 255, 0.1);
}
.mihanticket .mihanticket-list > .items > .item .inner-data .content .replies .item.own p,
.mihanticket .mihanticket-list > .items > .item .inner-data .content .replies .item.own span,
.mihanticket .mihanticket-list > .items > .item .inner-data .content .replies .item.own a {
  color: #35495C;
}
.mihanticket .mihanticket-list > .items > .item .inner-data .content .replies .item p {
  font-size: 18px;
}
.mihanticket .mihanticket-list > .items > .item .status > span {
  border-radius: 4px !important;
  box-shadow: 0 5px 15px #2aba5f10;
  margin: 10px auto !important;
  line-height: 40px;
  font-size: 15px;
  font-weight: bold;
  padding: 0 20px;
  text-align: center;
  display: block;
  cursor: pointer;
  float: right;
}
.mihanticket .mihanticket-list > .items > .item .status.pending > span {
  color: #1f88e5;
  background-color: #1f88e530;
  box-shadow: 0 7px 10px #1f88e520;
}
.mihanticket .mihanticket-list > .items > .item .status.answered > span {
  color: #2aba5f;
  background-color: #2aba5f30;
  box-shadow: 0 7px 10px #2aba5f20;
}
.mihanticket .mihanticket-list > .items > .item .status.investigation > span {
  background-color: #ff470030;
  color: #ff4700;
  box-shadow: 0 7px 10px #ff470020;
}
.mihanticket .mihanticket-list > .items > .item .title {
  font-size: 18px;
  font-weight: bold;
  width: 100%;
  display: block;
  cursor: pointer;
}
.mihanticket .mihanticket-list > .items > .item .ticket_id {
  font-size: 15px;
  color: #999;
}
.mihanticket .mihanticket-list > .items > .item .creator {
  flex-direction: column;
}
.mihanticket .mihanticket-list > .items > .item .activity {
  flex-direction: column;
  text-align: center;
}
.mihanticket .mihanticket-list .user-data {
  text-align: center;
  max-width: 100px;
}
.mihanticket .mihanticket-list .user-data .avatar {
  width: 70%;
  display: block;
  height: auto;
  border-radius: 25%;
  margin: 10px auto;
  background: #fff;
  box-shadow: 0 5px 7px rgba(28, 76, 156, 0.1);
}
.mihanticket .mihanticket-list .user-data .name {
  font-size: 15px;
  display: block;
}
.mihanticket .mihanticket-list .user-data .date {
  opacity: 0.7;
  font-size: 13px;
  display: block;
}
.mihanticket .mihanticket-alerts-wrapper {
  position: fixed;
  width: 350px;
  left: 10px;
  bottom: 10px;
  z-index: 1000;
  pointer-events: none;
}
.mihanticket .mihanticket-alerts-wrapper .alert-item {
  margin: 3px 0;
  padding: 15px;
  font-size: 18px;
  animation: show_alert 0.8s ease-in-out;
  position: relative;
  border-radius: 7px;
}
.mihanticket .mihanticket-alerts-wrapper .alert-item.success {
  background-color: #00C178;
  color: #fff;
  box-shadow: 0 7px 20px #00C17860;
}
.mihanticket .mihanticket-alerts-wrapper .alert-item.error {
  background-color: #ff4b6d;
  color: #fff;
  box-shadow: 0 7px 20px #ff4b6d60;
}
.mihanticket .mihanticket-alerts-wrapper .alert-item.warning {
  background-color: #ff791a;
  color: #000;
  box-shadow: 0 7px 20px #ff791a60;
}
.mihanticket .load-more {
  color: red;
  text-align: center;
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mihanticket .load-more span {
  width: 200px;
  height: 40px;
  color: #afafaf;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
}
.mihanticket .load-more span.loading {
  pointer-events: none;
}
.mihanticket .load-more span.action {
  background-color: #4a6dfe50;
  cursor: pointer;
  box-shadow: 0 7px 20px #4a6dfe50;
  color: #4a6dfe;
  font-weight: bold;
}
.mihanticket .file_field {
  width: 100%;
  background: #f3f4fd;
  margin: 30px auto 0;
  border-radius: 7px;
  position: relative;
}
.mihanticket .file_field .progress_bar {
  pointer-events: none;
  display: block;
  background-color: #ddf2dd;
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 100%;
  border-radius: 7px;
  z-index: 0;
  transition: width 0.3s;
}
.mihanticket .file_field .progress_bar.show {
  width: 100%;
}
.mihanticket .file_field label {
  text-align: center;
  color: #45496a;
  cursor: pointer;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.5;
  z-index: 10;
}
.mihanticket .file_field input {
  opacity: 0;
  position: relative !important;
  z-index: 20 !important;
  background-color: transparent !important;
  box-shadow: none !important;
  border: none !important;
  padding: 30px !important;
  width: 100% !important;
}
.mihanticket .file_field input::file-selector-button {
  background-color: #f3f4f6;
  border: 1px solid #c5c5c5;
  padding: 10px;
  cursor: pointer;
}
.mihanticket textarea {
  width: 100%;
  margin: 10px auto;
  font-size: 18px;
  border-radius: 7px;
  border: 1px solid #f5f5f5 !important;
  outline: none;
}
.mihanticket textarea:focus {
  border: 1px solid #0885ff !important;
  outline: none;
}
.mihanticket .mihanticket-replies {
  display: flex;
}
.mihanticket .mihanticket-replies.other {
  flex-direction: row-reverse;
}
.mihanticket .mihanticket-main-content {
  display: flex;
  width: 100%;
}
.mihanticket-select-order-reply {
  text-align: center;
  width: 100%;
  margin: 2rem 0;
  background-color: #fff3d7;
  padding: 15px;
  border-radius: 15px;
}
.mihanticket-action-btn {
  cursor: pointer;
  line-height: 45px;
  color: #fff;
  padding: 0 30px;
  display: inline-block;
  background: #4a6dfe;
  font-weight: bold;
  margin: 20px 0 20px 10px;
  border-radius: 4px;
  box-shadow: 0 7px 15px #4a6dfe50;
}
.mihanticket-action-btn.submit-ticket-order {
  margin: 15px auto 0 auto;
}
.mihanticket .has-loading {
  opacity: 0.4;
  pointer-events: none;
  user-select: none;
  filter: blur(2px) grayscale(1);
  transition: ease 0.3s;
}

/*# sourceMappingURL=ticket.css.map */
