/* ====================
    Activities
====================== */

#hive_lite_support_activities {
  display: none;
}

.hive_lite_support_activities_empty {
  display: none;
  align-items: center;
  justify-content: center;
  height: 300px;
  background-color: #fff;
  padding: 10px;
  border-radius: 10px;
  font-size: 16px;
  color: #777d86;
}

.hive_lite_support_activities_container {
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
}

.hive_lite_support_activities_item {
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
  z-index: 2;
}
.hive_lite_support_activities_item:not(:last-child) {
  padding-bottom: 45px;
}
.hive_lite_support_activities_item:not(:last-child)::before {
  content: "";
  position: absolute;
  top: 0;
  left: 32px;
  background-color: #ddd;
  height: 100%;
  width: 2px;
  z-index: -1;
}
.hive_lite_support_activities_item img {
  width: 68px;
  height: 68px;
  border-radius: 50%;
}
.hive_lite_support_activities_item_details .user_name {
  font-size: 20px;
  font-weight: 700;
  color: #1d2635;
}
.hive_lite_support_activities_item_details .user_action {
  margin: 0 0 0 7px;
  font-size: 18px;
  color: #777d86;
  font-weight: 500;
}
.hive_lite_support_activities_item_details .break {
  display: block;
  height: 14px;
}
.hive_lite_support_activities_item_details .user_title {
  padding: 4px 10px;
  font-size: 15px;
  color: #fff;
  border-radius: 4px;
  background: #685be7;
}
.hive_lite_support_activities_item_details .time {
  margin: 0 0 0 7px;
  font-size: 16px;
  font-weight: 500;
  color: #777d86;
}

.hive_lite_support_tickets_table_data span.ticket_status.ticket-status-Open {
  color: #0000ff !important;
}
.hive_lite_support_tickets_table_data span.ticket_status.ticket-status-Waiting {
  color: #fe7746 !important;
}
.hive_lite_support_tickets_table_data span.ticket_status.ticket-status-Closed {
  color: #f44336 !important;
}
.hive_lite_support_tickets_summary {
  display: flex;
  align-items: center;
  gap: 25px;
  flex-wrap: wrap;
}
.hive_lite_support_tickets_summary_item {
  flex: 1;
  position: relative;
  padding: 30px;
  border-radius: 10px;
  background: #fff;
}
.hive_lite_support_tickets_summary_item:before {
  content: " ";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0.1;
  background-repeat: no-repeat;
  background-position-x: calc(100% - 20px);
  background-position-y: 100%;
}
.hive_lite_support_tickets_summary_item:nth-child(1):before {
  background-image: url(../img/tickets/summary-shape1.svg);
  background-size: 66px;
}
.hive_lite_support_tickets_summary_item:nth-child(2):before {
  background-image: url(../img/tickets/summary-shape2.svg);
  background-size: 95px;
}
.hive_lite_support_tickets_summary_item:nth-child(3):before {
  background-image: url(../img/tickets/summary-shape3.svg);
  background-size: 110px;
}
.hive_lite_support_tickets_summary_item:nth-child(4):before {
  background-image: url(../img/tickets/summary-shape4.svg);
  background-size: 95px;
}

.hive_lite_support_tickets_summary_item p {
  margin: 0;
  font-size: 18px;
  line-height: 26px;
  color: #777d86;
}
.hive_lite_support_tickets_summary_item h3 {
  margin: 0;
  font-size: 48px;
  line-height: 55px;
  color: #1d2635;
}

.hive_lite_support_tickets_empty {
  display: none;
  align-items: center;
  justify-content: center;
  height: 300px;
  background-color: #fff;
  padding: 10px;
  border-radius: 10px;
  font-size: 16px;
  color: #777d86;
}

.hive_lite_support_tickets_container {
  position: relative;
}
.hive_lite_support_tickets_container table {
  width: 100%;
  color: inherit;
  vertical-align: middle;
  font-weight: 400;
  border-collapse: separate;
  border-spacing: 0 24px;
}
.hive_lite_support_tickets_container table thead {
  background: inherit;
  color: inherit;
  font-size: 18px;
  font-weight: 500;
  font-family: "Outfit", sans-serif;
  text-align: left;
}
.hive_lite_support_tickets_container table tr {
  background-color: #fff !important;
  padding: 10px;
  border: 0;
}
.hive_lite_support_tickets_container table tr th {
  font-size: 18px;
  font-weight: 600;
  color: #1d2635;
  padding: 20px 20px;
}
.hive_lite_support_tickets_container table tr td {
  font-size: 18px;
  color: #1d2635;
  padding: 20px 20px;
  line-height: 22px;
}
.hive_lite_support_tickets_container table tr th:first-child,
.hive_lite_support_tickets_container table tr td:first-child {
  text-align: left;
  border-top-left-radius: 10px !important;
  border-bottom-left-radius: 10px !important;
}
.hive_lite_support_tickets_container table tr th:last-child,
.hive_lite_support_tickets_container table tr td:last-child {
  text-align: left;
  border-top-right-radius: 10px !important;
  border-bottom-right-radius: 10px !important;
}

/* .hive_lite_support_tickets_table_user{
    min-width: 330px;
} */
.hive_lite_support_tickets_table_user img {
  height: 55px;
  width: 55px;
  border-radius: 50%;
}
.hive_lite_support_tickets_table_user h5 {
  cursor: pointer;
  margin: 7px 0 0 0;
  font-size: 20px;
  font-weight: 600;
  color: #1d2635;
  display: flex;
  align-items: center;
}
.hive_lite_support_tickets_table_user h5 span:nth-child(1) {
  max-width: 260px;
  white-space: nowrap;
  overflow: hidden !important;
  text-overflow: ellipsis;
}
.hive_lite_support_tickets_table_user h5 span:nth-child(2) {
  margin: 0 0 0 10px;
  font-size: 18px;
  min-width: 54px;
  color: #777d86;
}
.hive_lite_support_tickets_table_user p {
  font-size: 15px;
  color: #777d86;
  font-weight: 500;
  margin: 5px 0 0 0;
}
.hive_lite_support_tickets_table_user span.ticket_user {
  display: block;
  font-size: 16px;
  font-weight: 600;
  color: #685be7;
  margin: 5px 0 0 0;
}

.hive_lite_support_tickets_table_data span.ticket_status {
  color: #777d83;
  padding: 0 0 0 27px;
  font-size: 16px;
  display: block;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: transparent url(../img/tickets/status_wave.svg) no-repeat;
  background-size: 19px;
  background-position-x: 0px;
  background-position-y: center;
}
.hive_lite_support_tickets_table_data {
  margin: 4px 0px;
}
.hive_lite_support_tickets_table_data span.ticket_updated {
  color: #777d83;
  padding: 0 0 0 27px;
  font-size: 16px;
  display: block;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: transparent url(../img/tickets/ticket_updated.svg) no-repeat;
  background-size: 14px;
  background-position-x: 0px;
  background-position-y: center;
}
.hive_lite_support_tickets_table_data span.ticket_created {
  color: #777d83;
  padding: 0 0 0 27px;
  font-size: 16px;
  display: block;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: transparent url(../img/tickets/ticket_created.svg) no-repeat;
  background-size: 14px;
  background-position-x: 0px;
  background-position-y: center;
}

.hive_lite_support_tickets_table_staff {
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 1200px) {
  .hive_lite_support_tickets_table_staff {
    align-items: baseline;
    flex-direction: column;
    text-align: left;
    gap: 5px;
  }
}
.hive_lite_support_tickets_table_staff img {
  height: 40px;
  width: 40px;
  border-radius: 50%;
}
.hive_lite_support_tickets_table_staff h5 {
  margin: 0 0 0 10px;
  font-size: 15px;
  font-weight: 500;
  color: #777d83;
  width: 126px;
  white-space: nowrap;
  overflow: hidden !important;
  text-overflow: ellipsis;
}

.hive_lite_support_tickets_table_user,
.ticket-table-header-title {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
}

@media screen and (min-width: 1081px) and (max-width: 1349px) {
  .hive_lite_support_tickets_table_user {
    max-width: 265px;
  }
}

.hive_lite_support_tickets_table_user .info-box {
  width: 100%;
}
.hive-lite-support-bulk-actions-bar {
  background: #100909;
  border-radius: 4px;
  max-width: 140px;
  padding-right: 5px;
  padding-left: 5px;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  position: absolute;
    top: -39px;
    right: 50%;
    transform: translateX(50%);
}
.hive-lite-support-bulk-actions-bar ul {
  display: flex;
  align-items: center;
  justify-content: center;
}
.hive-lite-support-bulk-actions-bar ul li {
  margin: 0;
  padding: 12px 20px;
  cursor: pointer;
  border-right: 1px solid #eee;
  transition: 0.3s;
  border-radius: 4px;
  position: relative;
}
.hive-lite-support-bulk-actions-bar ul li:hover {
  background: #fe7747;
}
.hive-lite-support-bulk-actions-bar ul li:last-child {
  border-right: none;
}

@media screen and (max-width: 767px) {
  
  .hive_lite_support_tickets_container table {
    table-layout: auto;
  }
  .hive_lite_support_tickets_container table tbody {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
  }
  .hive_lite_support_tickets_container table tbody tr {
    display: flex;
    flex-direction: column;
    /* margin-bottom: 25px; */
    width: 48%;
  }
  .hive_lite_support_tickets_table_user h5 span:nth-child(1) {
    white-space: normal;
  }
  .text-repeater-block__input,
  .hive_lite_support_thread_sections_container {
    flex-direction: column;
  }
  .hive_lite_support_thread_section_center_thread_item {
    padding: 20px 12px;
  }
  .hive_lite_support_thread_section_center_header h4 {
    font-size: 18px;
  }
  .hive_lite_support_thread_section_right {
    width: 100%;
  }
  .hive_lite_support_tickets_container table thead {
    display: none;
  }
  .hive-lite-support-training-lists table thead th:last-child, .hive-lite-support-training-lists table tbody td:last-child {
    width: 100%;
  }
  .text-repeater-block__input {
    border-bottom: 1px solid #dddddd73;
    margin-bottom: 20px;
  }


}

@media screen and (max-width: 599px) {
  .hive_lite_support_tickets_container table tbody tr {
    width: 100%;
  }
}
