@charset "UTF-8";
/* Btns*/
.edit-field,
.save-field,
.add-new-msg,
.submit-add-form,
.edit-add-form {
  padding: 4px 14px;
  background-color: var(--wd-primary-color);
  color: #fff;
  display: inline-block;
  transition: all 0.2s linear;
  font-weight: 600;
  border-radius: 8px;
}

.edit-field:hover,
.save-field:hover,
.add-new-msg:hover,
.submit-add-form:hover,
.edit-add-form:hover,
.edit-field:focus,
.save-field:focus,
.add-new-msg:focus,
.submit-add-form:focus,
.edit-add-form:focus {
  color: #fff !important;
  background: var(--btn-shop-bgcolor-hover);
}

.edit-field {
  padding: 10px 10px;
  background-color: #F3F3F3;
}
.edit-field:before {
  display: block;
  line-height: 0;
}

.website-link .edit-field:before {
  content: url("../assets/img/forum-attachments/add-line-small.svg");
}

.credentials-data .edit-field:before {
  content: url("../assets/img/forum-attachments/edit-2-line-small.svg");
}

/* User info */
.xts-bbp-panel-opener {
  position: fixed;
  z-index: 10;
  top: 215px;
  right: 15px;
  cursor: pointer;
  padding: 12px;
  border-radius: 8px;
  background-color: #f1f1f1;
  color: #fff;
  z-index: 500;
  line-height: 0;
  transition: background-color 0.3s ease;
}
.xts-bbp-panel-opener:hover {
  background-color: #DDDDDD;
}

.website-link .field-value {
  border-top-width: 3px;
  border-bottom-width: 3px;
}

.website-link input {
  width: 100%;
  padding: 5px;
  margin-bottom: 10px;
  border: 2px solid rgba(129, 129, 129, 0.2);
  border-radius: 5px;
}

.website-link input:focus {
  outline: none;
  border-color: rgba(129, 129, 129, 0.3);
}

.credentials-data .field-value {
  white-space: pre-wrap;
}

.credentials-data textarea {
  margin-bottom: 10px;
  padding: 5px;
}

.credentials-data .field-value {
  border-top-width: 3px;
  border-bottom-width: 3px;
}

.xts-msgs-opener.opened,
.xts-bbp-panel-opener.opened {
  background-color: #DDDDDD;
}

/* Messages panel */
.xts-msgs-opener {
  position: fixed;
  z-index: 10;
  top: 160px;
  right: 15px;
  cursor: pointer;
  padding: 12px;
  border-radius: 8px;
  background-color: #f1f1f1;
  color: #fff;
  z-index: 500;
  line-height: 0;
  transition: background-color 0.3s ease;
}
.xts-msgs-opener:hover {
  background-color: #DDDDDD;
}

.add-new-msg {
  margin-bottom: 20px;
  display: block;
  text-align: center;
  font-size: 90%;
}
.add-new-msg:after {
  content: "";
  font-family: "woodmart-font";
  margin-left: 5px;
  font-size: 9px;
}

.xts-msgs .filter-msgs {
  margin-bottom: 10px;
}

#bbpress-forums .xts-msgs-list {
  display: none;
  overflow-y: scroll;
  max-height: 55vh;
  padding-right: 5px;
  margin-bottom: 0;
}
#bbpress-forums .xts-msgs-list.active {
  display: block;
}
#bbpress-forums .xts-msgs-list li {
  margin-bottom: 10px;
}
#bbpress-forums .xts-msgs-list li.hide {
  display: none;
}
#bbpress-forums .xts-msgs-list li.show {
  display: block;
}

.insert-msg,
.delete-msg,
.edit-msg {
  width: 16px;
  height: 16px;
  cursor: pointer;
  padding: 2px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.insert-msg {
  background-image: url("../assets/img/forum-attachments/file-copy-line.svg");
}

.delete-msg {
  background-image: url("../assets/img/forum-attachments/delete-bin-4-line.svg");
}

.edit-msg {
  background-image: url("../assets/img/forum-attachments/edit-2-line.svg");
}

.xts-msgs-list .selected {
  border-color: #ff0303;
  border-style: solid;
}

.xts-msgs-list .selected .msg-btns {
  opacity: 1;
  visibility: visible;
}

.msg {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5px 8px;
  border-radius: 8px;
  background-color: #F5F5F5;
}
.msg .msg-title {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 240px;
}
.msg span {
  font-size: 80%;
}

li:hover .msg-btns {
  opacity: 1;
  visibility: visible;
}

.msg-btns {
  display: flex;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s linear;
}
.msg-btns span img {
  width: 16px;
}

.xts-msgs,
.xts-bbp-panel {
  background: white;
  padding: 30px;
  width: 430px;
  border: 2px solid rgba(16, 16, 16, 0.1);
  border-radius: 8px;
  visibility: hidden;
  opacity: 0;
  position: fixed;
  z-index: 20000;
  top: 110px;
  right: 75px;
  overflow-y: auto;
  max-height: 80vh;
  max-width: 80vw;
}
.xts-msgs ::-webkit-scrollbar,
.xts-bbp-panel ::-webkit-scrollbar {
  width: 7px;
}
.xts-msgs ::-webkit-scrollbar-button,
.xts-bbp-panel ::-webkit-scrollbar-button {
  display: none;
}

#bbpress-forums .xts-msgs {
  overflow-y: hidden;
  max-width: none;
}
#bbpress-forums .xts-msgs .sect-title {
  font-size: 20px;
}

.xts-bbp-panel .panel-sect:first-child {
  margin-bottom: 10px;
}
.xts-bbp-panel .panel-sect:first-child h5 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 0;
}
.xts-bbp-panel .panel-sect .xts-panel-sect-title {
  font-size: 20px;
  margin-bottom: 15px;
}
.xts-bbp-panel h4 {
  font-size: 15px;
  margin-bottom: 20px;
}
.xts-bbp-panel .bbp-topic-permalink {
  margin-bottom: 5px;
}

.xts-panel-sect-middle {
  padding: 20px;
  background-color: #FAFAFA;
  border-radius: 8px;
  margin-bottom: 15px;
}
.xts-panel-sect-middle .xts-panel-sect-author {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 15px;
}
.xts-panel-sect-middle .xts-panel-sect-author > div:first-child {
  margin-bottom: 5px;
}
.xts-panel-sect-middle .xts-panel-sect-author h4, .xts-panel-sect-middle .xts-panel-sect-author a {
  margin-bottom: 0;
  font-size: 13px;
}
.xts-panel-sect-middle .xts-panel-sect-author .envato-link {
  font-weight: 600;
  margin-right: 20px;
}
.xts-panel-sect-middle .xts-panel-sect-author .xts-panel-sect-author-profile {
  display: flex;
  align-items: center;
  margin-right: 15px;
}
.xts-panel-sect-middle .xts-panel-sect-author .xts-panel-sect-author-profile .bbp-author-avatar {
  margin-right: 5px;
}
.xts-panel-sect-middle .xts-panel-sect-author .xts-panel-sect-author-profile .bbp-author-avatar img {
  width: 24px;
  height: 24px;
  border-radius: 50%;
}
.xts-panel-sect-middle .panel-sect:not(:last-child) {
  margin-bottom: 20px;
}
.xts-panel-sect-middle .xts-panel-until-title {
  color: #a5a5a5;
}
.xts-panel-sect-middle .xts-panel-until-title span {
  color: #68B245;
}

.xts-panel-sect-link,
.xts-panel-sect-note {
  display: block;
  justify-content: space-between;
  align-items: center;
}
.xts-panel-sect-link .edit-field:hover,
.xts-panel-sect-note .edit-field:hover {
  background: rgba(0, 0, 0, 0.17);
}
.xts-panel-sect-link.xts-link-block,
.xts-panel-sect-note.xts-link-block {
  display: block;
}

.xts-bbp-panel .website-link {
  font-weight: bold;
}

.xts-bbp-panel .sect-title {
  font-size: 90%;
  margin-bottom: 10px;
}

.xts-bbp-panel .property-counter {
  margin-bottom: 5px;
}

.xts-bbp-panel .property-counter strong {
  display: inline-block;
  font-size: 16px;
}

.xts-bbp-panel .property-counter span {
  padding: 5px;
  display: inline-block;
  cursor: pointer;
}

[data-name=happy] strong {
  color: #6dab3c;
}

[data-name=sad] strong {
  color: #d11e1e;
}

.xts-bbp-panel p {
  margin-bottom: 10px;
}

.xts-bbp-panel .bbp-topic-voice-count {
  display: none;
}

.xts-msgs.opened,
.xts-bbp-panel.opened {
  visibility: visible;
  opacity: 1;
}

.xts-panel-sect-topics {
  padding: 20px;
  border: 2px solid rgba(16, 16, 16, 0.1);
  border-radius: 8px;
}
.xts-panel-sect-topics .sect-title {
  margin-bottom: 20px;
}

#bbpress-forums .all-topics-list {
  display: block;
  overflow-y: auto;
  max-height: 34vh;
}
#bbpress-forums .all-topics-list .bbp-topics .bbp-attachments-count {
  display: none;
}
#bbpress-forums .all-topics-list .bbp-topics .status-closed.hentry .bbp-topic-title .bbp-topic-permalink:before {
  font-size: 14px;
}
#bbpress-forums .all-topics-list .bbp-topics .hentry {
  display: block;
  background-color: transparent;
  padding: 0;
  border: none;
  margin-bottom: 25px;
}
#bbpress-forums .all-topics-list .bbp-topics .hentry:last-child {
  margin-bottom: 0;
}
#bbpress-forums .all-topics-list .bbp-topics .hentry .bbp-topic-title {
  font-size: 14px;
  font-weight: 400;
  margin-top: 5px;
}
#bbpress-forums .all-topics-list .bbp-topics .hentry .bbp-topic-title a {
  color: #585858;
}
#bbpress-forums .all-topics-list .bbp-topics .hentry .bbp-topic-title a:hover {
  color: #A6A6A6;
}
#bbpress-forums .all-topics-list .bbp-topics .hentry .bbp-topic-title .bbp-topic-pagination {
  display: none;
}
#bbpress-forums .all-topics-list .bbp-topics .hentry .bbp-topic-title .bbp-topic-meta {
  display: none;
}
#bbpress-forums .all-topics-list .bbp-topics .hentry .bbp-topic-freshness {
  display: flex;
  align-items: center;
}
#bbpress-forums .all-topics-list .bbp-topics .hentry .bbp-topic-freshness a {
  margin-bottom: 0;
  margin-right: 10px;
  font-weight: 400;
}
#bbpress-forums .all-topics-list .bbp-topics .hentry .bbp-topic-freshness .bbp-topic-meta {
  margin-bottom: 0;
}
#bbpress-forums .all-topics-list .bbp-topics .hentry .bbp-topic-freshness .bbp-author-name {
  font-weight: 500;
}
#bbpress-forums .all-topics-list .bbp-topics .hentry .bbp-author-avatar img {
  width: 14px;
  height: 14px;
}
#bbpress-forums .all-topics-list .bbp-pagination {
  display: none;
}

.show-all-topics {
  cursor: pointer;
}

.add-new-form {
  display: none;
}
.add-new-form .submit-add-form {
  font-size: 90%;
}

/*Edit form*/
.msg-edit-form {
  display: none;
}

.msg-edit-form input {
  margin-top: 10px;
  margin-bottom: 10px;
}

.msg-edit-form textarea,
.msg-edit-form select,
.msg-edit-form .edit-add-form {
  margin-bottom: 10px;
}

.edit-add-form {
  font-size: 90%;
}

/*Tabs*/
.tab-nav {
  display: flex;
  justify-content: space-between;
  text-align: center;
  margin-bottom: 20px !important;
}
.tab-nav li {
  display: inline-block;
  cursor: pointer;
  padding: 4px 14px;
  background-color: #f1f1f1;
  color: #000;
  font-weight: 500;
  transition: all 0.2s linear;
  margin-bottom: 5px;
  font-size: 80%;
  border-radius: 8px;
}
.tab-nav li:not(:last-child) {
  margin-right: 6px;
}
.tab-nav li:hover {
  background: rgba(0, 0, 0, 0.2) !important;
}
.tab-nav .active {
  background: rgba(0, 0, 0, 0.2) !important;
}

.xts-staff-panel {
  position: fixed;
  display: flex;
  z-index: 10;
  top: 270px;
  right: 15px;
  border-radius: 8px;
}
.xts-staff-panel:hover .xts-assigned-wrapper {
  display: block;
}
.xts-staff-panel .xts-assigned-wrapper {
  display: none;
  width: 420px;
  border: 2px solid #E8E8E8;
  margin-right: 20px;
  border-radius: 8px;
  padding: 30px;
  background-color: #FFF;
  transition: visibility 0.4s ease;
}
.xts-staff-panel .xts-assigned-wrapper:before {
  content: "";
  position: absolute;
  bottom: -150px;
  left: 0;
  display: block;
  width: 420px;
  height: 150px;
}
.xts-staff-panel h3 {
  font-size: 16px;
  text-transform: uppercase;
}
.xts-staff-panel .xts-topic-assigned {
  display: flex;
  margin-bottom: 10px;
}
.xts-staff-panel .xts-topic-assigned .xts-assigned-text,
.xts-staff-panel .xts-topic-assigned span {
  font-size: 90%;
  color: #404040;
}
.xts-staff-panel .xts-topic-assigned .xts-assigned-text {
  display: flex;
  align-items: center;
  margin-right: 10px;
  font-weight: 600;
}
.xts-staff-panel .xts-topic-assigned .xts-assigned-text .xts-assigned-author {
  font-weight: 500;
  margin-left: 10px;
  color: #838383;
}

.xts-fast-assigned {
  display: flex;
  justify-content: space-between;
}
.xts-fast-assigned button {
  display: none;
  flex: 1 1 0;
}
.xts-fast-assigned button.xts-color-aia, .xts-fast-assigned button.xts-color-hp, .xts-fast-assigned button.xts-color-ln {
  display: flex;
}
.xts-fast-assigned button:not(:last-child) {
  margin-right: 5px;
}

.xts-topic-assigned-btn {
  background-color: transparent;
  border: 2px solid #E7EEF3;
  color: var(--wd-primary-color);
  width: 100%;
  padding-top: 5px;
  padding-bottom: 5px;
  margin-bottom: 10px;
}
.xts-topic-assigned-btn:after {
  content: "+";
  font-size: 18px;
  font-weight: 400;
  margin-left: 5px;
}
.xts-topic-assigned-btn.assigned:after {
  display: none;
}
.xts-topic-assigned-btn:hover {
  background-color: var(--wd-primary-color);
  color: #FFF;
  box-shadow: none;
}

.xts-viewed-wrapper {
  min-width: 48px;
}
.xts-viewed-wrapper .xts-has-assigned {
  padding: 9px;
  background-color: #f1f1f1;
  border-radius: 8px;
}
.xts-viewed-wrapper .xts-has-assigned .xts-current-view-user {
  font-size: 13px;
  text-transform: uppercase;
  width: 30px;
  height: 30px;
}
.xts-viewed-wrapper .xts-currently-viewed {
  margin-top: 20px;
}

.xts-assigned-author {
  font-weight: bold;
}

.xts-assign-to-form {
  display: flex;
  margin-bottom: 10px;
}
.xts-assign-to-form select {
  width: 50%;
  height: 32px;
  flex: 1;
  border: 2px solid rgba(187, 187, 187, 0.5);
  transition: all 0.4s ease;
}
.xts-assign-to-form select:hover {
  border-color: #bbbbbb;
}
.xts-assign-to-form button {
  width: 50%;
  padding-top: 5px;
  padding-bottom: 5px;
  margin-right: 10px;
}

.need-reply-filters {
  margin-bottom: 20px;
}

.widget_widget_display_topics .viewed-by {
  margin-top: 5px;
  margin-right: 5px;
  display: inline-block;
}

.staff-sign {
  border-radius: 5px;
  height: 20px;
  line-height: 20px;
  font-size: 12px;
  text-align: center;
  color: white;
  display: inline-block;
  padding: 0 5px;
  position: relative;
  overflow: hidden;
}

.staff-sign:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.2);
}

.staff-sign span {
  position: relative;
  z-index: 1;
}

.single-forum .xts-staff-panel {
  display: none !important;
}

.xts-current-visitors {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.xts-current-visitors > div:not(:last-child) {
  margin-bottom: 10px;
}
.xts-current-visitors h4 {
  display: none;
  font-size: 15px;
  color: #FFF;
  margin-bottom: 0;
  margin-right: 10px;
}
.xts-current-visitors .xts-current-view-user {
  position: relative;
}
.xts-current-visitors .xts-current-view-user:after {
  content: "";
  position: absolute;
  top: -3px;
  right: -3px;
  width: 8px;
  height: 8px;
  background-color: #82CB69;
  border-radius: 50%;
}

/*Responsive*/
@media (max-width: 768px) {

  .xts-bbp-panel-opener {
    top: 180px;
    right: 15px;
  }

  .xts-msgs-opener {
    top: 110px;
    right: 15px;
  }
}
@media (max-width: 600px) {
  .panel-opened {
    height: 100%;
    overflow: hidden;
    width: 100%;
  }

  /* .panel-opened .insert-msg {
  	color: blue;
  } */
  .xts-bbp-panel-opener,
.xts-msgs-opener {
    display: none;
  }

  .msg-btns {
    opacity: 1;
    visibility: visible;
    width: 35%;
    text-align: center;
  }

  .msg > span {
    width: 65%;
  }

  .msg-btns span {
    text-align: center;
    font-size: 22px;
  }

  .xts-msgs, .xts-bbp-panel {
    top: 115px;
    max-width: 90vw;
    max-height: 75vh;
  }
}
/* Forum name */
.xts-forum-name {
  position: fixed;
  top: 105px;
  right: 18px;
  display: block;
  padding: 12px;
  color: #fff;
  z-index: 500;
}
.xts-forum-name span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

@media (max-width: 1024px) {
  .xts-forum-name {
    display: none;
  }
}
