/*
 * Dashforge Contacts Page
 *
 * This style is use in contacts page.
 *
 */
@media (max-width: 991.98px) {
  .app-contact.contact-content-show .contact-sidebar {
    visibility: hidden;
    transform: translateX(-350px);
  }
  .app-contact.contact-content-show .contact-content {
    visibility: visible;
    transform: translateX(0);
    opacity: 1;
  }
}

@media (max-width: 991.98px) {
  .app-contact.contact-content-visible .contact-content {
    visibility: visible;
    transform: translateX(305px);
    opacity: 1;
  }
}

@media (max-width: 1199.98px) {
  .app-contact.contact-options-show .contact-content {
    transform: translateX(-260px);
  }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
  .app-contact.contact-options-show .contact-sidebar {
    transform: translateX(-260px);
  }
}

.contact-wrapper {
  position: fixed;
  top: 60px;
  bottom: 0;
  left: 0;
  right: 0;
}
@media (min-width: 992px) {
  .contact-wrapper {
    top: 60px;
  }
}

.contact-wrapper-two {
  position: relative;
  height: 100%;
  top: 0;
}
.contact-wrapper-two .contact-content-header {
  right: 0;
}
.contact-wrapper-two .contact-content-body {
  right: 0;
}


.contact-sidebar,
.contact-content {
  transition: all 0.3s;
}
@media (prefers-reduced-motion: reduce) {
  .contact-sidebar,
  .contact-content {
    transition: none;
  }
}

.contact-sidebar {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 55px;
  right: 0;
}
@media (min-width: 480px) {
  .contact-sidebar {
    right: auto;
    width: 250px;
    border-right: 1px solid rgba(72, 94, 144, 0.16);
  }
}
@media (min-width: 992px) {
  .contact-sidebar {
    width: 265px;
    left: 60px;
  }
}
@media (min-width: 1200px) {
  .contact-sidebar {
    width: 300px;
  }
}

.contact-sidebar-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 60px;
  border-bottom: 1px solid rgba(72, 94, 144, 0.16);
  display: flex;
  align-items: center;
  padding: 0 15px;
}
.contact-sidebar-header .feather-search {
  color: #8392a5;
  align-self: center;
  width: 18px;
  stroke-width: 2.8px;
  margin-right: 10px;
  margin-top: -2px;
}
.contact-sidebar-header .search-form {
  flex: 1;
  display: flex;
  align-items: center;
}
.contact-sidebar-header .search-form .form-control {
  border-width: 0;
  background-color: transparent;
  font-size: inherit;
  padding: 0;
  color: #1b2e4b;
}

.contact-sidebar-body {
  position: absolute;
  top: 60px;
  left: 0;
  right: 0;
  bottom: 0;
}

#bde_list {
  height: calc(100dvh - 185px);
}
.contact-sidebar-body .tab-pane:first-child .contact-list-divider::before {
  width: 27px;
}

.contact-list .media {
  color: #1b2e4b;
  padding: 10px;
  border-bottom: 1px solid rgba(72, 94, 144, 0.16);
}
.contact-list .media:hover,
.contact-list .media:focus {
  background-color: #f5f6fa;
  cursor: default;
}
.contact-list .media:hover .avatar-online::after,
.contact-list .media:hover .avatar-offline::after,
.contact-list .media:focus .avatar-online::after,
.contact-list .media:focus .avatar-offline::after {
  box-shadow: 0 0 0 2px #eff2f7;
}
@media (min-width: 992px) {
  .contact-list .media:hover nav,
  .contact-list .media:focus nav {
    display: flex;
  }
}
@media (min-width: 480px) {
  .contact-list .media.active {
    background-color: #eef0f7;
  }
  .contact-list .media.active .avatar-online::after,
  .contact-list .media.active .avatar-offline::after {
    box-shadow: 0 0 0 2px #e5e9f2;
  }
}

.contact-list .media-body span {
  color: #5f708a;
  display: block;
  line-height: 1.02;
}

.contact-list nav {
  display: none;
  align-items: center;
  align-self: center;
}
.contact-list nav a {
  display: block;
  color: #8392a5;
}
.contact-list nav a:hover,
.contact-list nav a:focus {
  color: #1b2e4b;
}
.contact-list nav a + a {
  margin-left: 5px;
}
.contact-list nav svg {
  width: 16px;
}

.contact-content {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  visibility: hidden;
  transform: translateX(100vw);
  opacity: 0;
  transition: all 0.3s;
}
@media (prefers-reduced-motion: reduce) {
  .contact-content {
    transition: none;
  }
}
@media (min-width: 480px) {
  .contact-content {
    left: 0;
    transform: translateX(320px);
  }
}
@media (min-width: 992px) {
  .contact-content {
    left: 325px;
    transform: none;
    visibility: visible;
    opacity: 1;
  }
}
@media (min-width: 1200px) {
  .contact-content {
    left: 360px;
  }
}

.contact-content-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 60px;
  border-bottom: 1px solid rgba(72, 94, 144, 0.16);
  display: flex;
  align-items: center;
  padding: 0 20px;
}
@media (min-width: 1200px) {
  .contact-content-header {
    right: 0px;
    padding: 0 25px;
  }
}
.contact-content-header .nav-link {
  color: #8392a5;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 0;
}
.contact-content-header .nav-link:hover,
.contact-content-header .nav-link:focus {
  color: #525f70;
}
.contact-content-header .nav-link.active {
  color: #0168fa;
  font-weight: 600;
  position: relative;
}
.contact-content-header .nav-link.active::before {
  content: "";
  position: absolute;
  bottom: -19px;
  left: 0;
  width: 100%;
  border-bottom: 1px solid #0168fa;
}
.contact-content-header .nav-link + .nav-link {
  margin-left: 30px;
}
.contact-content-header .nav-link span {
  display: none;
}
@media (min-width: 576px) {
  .contact-content-header .nav-link span {
    display: inline;
  }
}

.contact-content-body {
  position: absolute;
  top: 60px;
  left: 0;
  right: 0;
  bottom: 85px;
}
@media (min-width: 1200px) {
  .contact-content-body {
    right: 0px;
  }
}
.contact-edit-photo {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  background-color: #e5e9f2;
  color: #5f708a;
  border-radius: 100%;
  position: absolute;
  bottom: 0;
  right: 0;
  box-shadow: 0 0 0 3px #fff;
}
.contact-edit-photo:hover,
.contact-edit-photo:focus {
  color: #1b2e4b;
  background-color: #c0ccda;
}

.bde-modal {
  z-index: 1060;
}
.contact-edit-photo svg {
  width: 12px;
  stroke-width: 3px;
}

.contact-call-nav {
  display: flex;
}
.contact-call-nav a {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border-radius: 100%;
  color: #fff;
}
.contact-call-nav a svg {
  width: 16px;
  stroke-width: 2.6px;
}
.contact-call-nav a + a {
  margin-left: 8px;
}
.contact-call-nav a.nav-call {
  background-color: #00cccc;
}
.contact-call-nav a.nav-call:hover,
.contact-call-nav a.nav-call:focus {
  background-color: #009999;
}
.contact-call-nav a.nav-video {
  background-color: #f10075;
}
.contact-call-nav a.nav-video:hover,
.contact-call-nav a.nav-video:focus {
  background-color: #be005c;
}
.contact-call-nav a.nav-msg {
  background-color: #0168fa;
}
.contact-call-nav a.nav-msg:hover,
.contact-call-nav a.nav-msg:focus {
  background-color: #0153c7;
}

.contact-actions {
  display: flex;
  position: relative;
  margin-top: -2px;
}
.contact-actions a {
  display: flex;
  align-items: flex-end;
  color: #1b2e4b;
}
.contact-actions a:hover,
.contact-actions a:focus {
  color: #0168fa;
}
.contact-actions a svg {
  width: 16px;
  stroke-width: 2.6px;
  margin-right: 5px;
}
.contact-actions a + a {
  margin-left: 20px;
}

.contact-content-nav .nav-link {
  color: #1b2e4b;
  display: flex;
  align-items: center;
  padding: 0;
}
.contact-content-nav .nav-link:hover,
.contact-content-nav .nav-link:focus {
  color: #0168fa;
}
.contact-content-nav .nav-link + .nav-link {
  margin-top: 10px;
}

.contact-content-nav svg {
  position: relative;
  margin-top: -2px;
  width: 18px;
  margin-right: 12px;
}



/* ====================  Drag and Drop file upload ===========================*/
.drag-drop-container {
  border: 1px dashed #0168fa;
  border-radius: 10px;
  padding: 0;
  text-align: center;
  cursor: pointer;
  width: 100%;
  height: 100%;
}


#excelFile {
  height: 100%;
  position: absolute;
  opacity: 0;
}

/* Drag and Drop file upload end */
.glstags .custom-select {
  height: 43px;
}

.glstags .select2-selection__rendered{
  height: 43px;
  overflow: auto !important;
}
.acrtags .select2-selection__rendered{
  height: 150px;
  overflow: auto !important;
}
#bt-Adsearch .item {
  margin: 0 10px 10px 0px;
  width: 210px;
}
.mgmt-content-body-height {
  height: calc(100dvh - 85px)!important;
}

/* Error Table */
table.node-info {
  font-size: 11px;
  margin: 0 0 10px;
  width: 100%;
  word-wrap: break-word;
}
table.node-info tr:not(.blank) {
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  word-wrap: break-word;
}
table.node-info tr:not(.blank) td:first-child {
  color: inherit;
  vertical-align: top;
  width: 90px;
  padding: 3px 3px 3px 6px;
  background: #f9f9f9;
  border-right: 1px solid #ddd;
}

.bt-example {
  letter-spacing: normal;
  padding: 10px;
  background-color: #fff;
  border: 1px solid rgba(72, 94, 144, 0.16);
  position: relative;
}
table.node-info .item{
      border-bottom: 1px solid rgba(72, 94, 144, 0.16);
}
table.node-info .item:last-child{
      border-bottom: 0px solid rgba(72, 94, 144, 0.16);
}

.bt-example::before {
  content: attr(data-label);
  display: block;
  position: absolute;
  top: -7px;
  left: 5px;
  font-size: 12px;
  background-color: inherit;
  color: #8392a5;
  padding: 0 5px;
}
.spinnerDiv {
  display: flex;
  justify-content: center;
  align-items: center;
  height: calc(100dvh - 184px);
}
.select-loading {
  background: #fff url(http://select2.github.io/select2/select2-3.5.1/select2-spinner.gif) no-repeat 100% !important;
}
.readmore{
  width: 195px;
}
.gsItem {
  column-count: 3;
}

.glstag .more{
  font-size: 10px;
  font-weight: 500;
  font-family: -apple-system, BlinkMacSystemFont, "Inter UI", Roboto, sans-serif;
  padding: 1px 5px 1px;
  margin-top: 3px;
  border-radius: 3px;
  color: #fff;
  border-color: #0168fa;
  background-color: #0168fa;
  display: inline-block;
  cursor: pointer;
}
.glstag .less{
  font-size: 10px;
  font-weight: 500;
  font-family: -apple-system, BlinkMacSystemFont, "Inter UI", Roboto, sans-serif;
  padding: 1px 5px 1px;
  margin-top: 3px;
  border-radius: 3px;
  color: #0168fa;
  border: solid 1px #0168fa;
  background-color: #fff;
  display: inline-block;
  cursor: pointer;

}
#acrabrTags .more{
  font-size: 10px;
  font-weight: 500;
  font-family: -apple-system, BlinkMacSystemFont, "Inter UI", Roboto, sans-serif;
  padding: 1px 5px 1px;
  margin-top: 3px;
  border-radius: 3px;
  color: #fff;
  border-color: #5f6f8a;
  background-color: #5f6f8a;
  display: inline-block;
  cursor: pointer;
}
#acrabrTags .less{
  font-size: 10px;
  font-weight: 500;
  font-family: -apple-system, BlinkMacSystemFont, "Inter UI", Roboto, sans-serif;
  padding: 1px 5px 1px;
  margin-top: 3px;
  border-radius: 3px;
  color: #0168fa;
  border: solid 1px #0168fa;
  background-color: #fff;
  display: inline-block;
  cursor: pointer;
}

.contact-content-footer {
  position: absolute;
  bottom: 25px;
  left: 0;
  right: 0;
  height: 60px;
  border-top: 1px solid rgba(72, 94, 144, 0.16);
  display: flex;
  align-items: center;
  padding: 0 20px;
  z-index: 9;
}

#chatbot-open-container {
  bottom: 70px !important;
}

.select2-selection--multiple .select2-selection__rendered {
  white-space: inherit !important;
}

.hm-list-media-body {
    width: calc(100% - 112px);
    flex: unset;
}