:root {
  --primary-color: #00ae6a;
  --primary-hover: #008f57;
  --secondary-color: #7100e1;
  --text-light: #746674;
  --text-light2: #57616f;
  --little-dark-clr: #999999;
  --dark-clr: #18181b;
  --dark-clr2: #222222;
  --black: #000;
  --white: #fff;
  --bg-color: #efefef;
  --border-clr: #e0e0e0;
  --red-clr: #e30e0e;
  --danger-clr: #f03b40;
  --poppins: "Poppins", sans-serif;
  --roboto: "Roboto", sans-serif;
}

::selection {
  background-color: var(--primary-color);
  color: var(--white);
}

/* all heading */
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
link,
body {
  /* font-family:  var(--poppins) !important; */
  font-family: var(--roboto) !important;
}

body {
  font-family: var(--roboto);
  color: #475569;
}

body,
html {
  font-size: 16px;
  margin: 0;
  padding: 0;
  /* height: 100% */
}

body > * {
  font-size: 13.5px;
}

.h3,
.h4,
h3,
h4 {
  font-weight: 400;
}

p:empty {
  display: none;
}

a:focus,
a:hover {
  color: unset;
}

.text-primary {
  color: var(--primary-color) !important;
}

.text-secondary {
  color: var(--text-light);
}

.text-black {
  color: var(--black);
}

.word-break-all {
  word-break: break-all;
}

.word-break-words{
  word-break: break-word;
}
.noscroll {
  overflow: hidden !important;
}

.tw-ml-0 {
  margin-left: 0;
}

.tw-px-0 {
  padding-left: 0;
  padding-right: 0;
}

.table-responsive,
.table-responsive-custom {
  max-height: 70vh;
}

.table-loading table thead tr {
  height: auto;
  min-height: auto;
}

.label {
  border-radius: 3px;
}

.custom-checkbox input {
  display: none;
}

.custom-checkbox.checkbox,
.custom-checkbox label {
  padding-left: 0;
}

.custom-checkbox.checkbox label {
  vertical-align: unset;
}

.custom-checkbox label,
table .checkbox label {
  position: relative;
  cursor: pointer;
  line-height: 12px;
  display: inline !important;
}

.custom-checkbox label:before {
  content: "";
  -webkit-appearance: none;
  border: 1px solid #cacaca;
  height: 12px;
  width: 12px;
  display: inline-block;
  position: relative;
  margin-bottom: -1px;
  cursor: pointer;
  border-radius: 3px;
  margin-left: unset;
  left: unset;
}

.custom-checkbox label:not(:empty):before {
  margin-right: 12px;
}

.modal-content {
  border-radius: 4px;
}

.login_admin .custom-checkbox label:not(:empty):before,
.chat_bd .custom-checkbox label:not(:empty):before {
  margin-right: 5px;
}

.custom-checkbox input:checked + label:before {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.custom-checkbox input:checked + label:after {
  content: "" !important;
  display: block;
  position: absolute;
  top: 3.3px;
  left: 2px;
  /* width: 1px; */
  /* height: 8px; */
  /* border: solid var(--white); */
  /* border-width: 0 1.5px 9.5px 0; */
  /* transform: rotate(45deg); */
  /* font-family: unset !important; */
  /* margin-left: unset; */
  background-image: url(/assets/images/icons/tick.svg);
  background-position: bottom;
  height: 8px;
  width: 8px;
  background-repeat: no-repeat;
}

.chat_bd .custom-checkbox input:checked + label:after {
  top: 1px;
}

table td .custom-checkbox input:checked + label:after {
  margin-left: unset;
}

body.modal-open.mobile > #wrapper {
  overflow: hidden;
  height: 100%;
}

[dir="rtl"] {
  overflow-x: hidden;
}

@media (min-width: 801px) {
  body.small-table .small-table-right-col.col-md-7 {
    padding-left: 0;
  }
}

b,
strong {
  font-weight: 500;
}

h5 {
  font-size: 13px;
}

.animated {
  animation-duration: 1s;
  animation-fill-mode: both;
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

@-webkit-keyframes fadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

.fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}

@-webkit-keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}

@-webkit-keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}

@-webkit-keyframes fadeOutLeft {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}

@keyframes fadeOutLeft {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}

.fadeOutLeft {
  -webkit-animation-name: fadeOutLeft;
  animation-name: fadeOutLeft;
}

@-webkit-keyframes fadeOutRight {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}

@keyframes fadeOutRight {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}

.fadeOutRight {
  -webkit-animation-name: fadeOutRight;
  animation-name: fadeOutRight;
}

.announcement .alert-dismissible .close {
  top: -4px;
}

[dir="rtl"] .announcement .alert-dismissible .close {
  right: 13px;
}

@-webkit-keyframes loader {
  0% {
    background: #e2e8f0;
  }

  10% {
    background: #c5c5c5;
  }

  40% {
    background: #e2e8f0;
  }
}

@keyframes loader {
  0% {
    background: #e2e8f0;
  }

  10% {
    background: #c5c5c5;
  }

  40% {
    background: #e2e8f0;
  }
}

table .row-options {
  padding: 2px 0 0;
  position: relative;
  left: -9999em;
  font-size: 11px;
  color: #cbd5e1;
}

[dir="rtl"] table .row-options {
  left: initial;
  right: -9999em;
}

.mobile table tr td .row-options,
table tr:hover td .row-options {
  position: static;
}

.dropzone,
.dropzone * {
  box-sizing: border-box;
}

.dropzone {
  position: relative;
}

.dropzone .dz-preview {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 13px 0;
  min-height: 1px;
  margin: 0;
  border-bottom: 1px solid var(--border-clr);
}

.dropzone .dz-preview:last-of-type {
  border: none;
}

.dropzone .dz-preview .dz-progress {
  display: block;
  height: 15px;
  border: 1px solid #aaa;
}

.dropzone .dz-preview .dz-progress .dz-upload {
  display: block;
  height: 100%;
  width: 0;
  background: green;
}

.dropzone .dz-preview .dz-error-message {
  color: var(--danger-clr);
  display: none;
}

.dropzone .dz-preview.dz-error .dz-error-mark,
.dropzone .dz-preview.dz-error .dz-error-message {
  display: block;
}

.dropzone .dz-preview.dz-success .dz-success-mark {
  display: block;
}

.dropzone .dz-preview .dz-error-mark,
.dropzone .dz-preview .dz-success-mark {
  position: absolute;
  display: none;
  top: 30px;
  width: 54px;
  height: 58px;
  left: 50%;
  margin-left: -27px;
}

.dropzone .dz-preview .dz-error-mark svg,
.dropzone .dz-preview .dz-success-mark svg {
  width: 34px;
  height: 34px;
}

.dropzone .dz-preview .dz-success-mark svg path {
  fill: var(--primary-color);
}

.dropzone .dz-preview .dz-image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

body.hide-sidebar:not(.show-sidebar) #menu {
  margin-left: -48px;
  width: 97px !important;
  border-right: 1px solid var(--border-clr);
}

body.hide-sidebar:not(.show-sidebar) #menu .nav.metis-menu li .menu-text,
body.hide-sidebar ul.nav.nav-second-level,
body.hide-sidebar .logo-wrapper #logo {
  opacity: 0;
  visibility: hidden;
}

body.hide-sidebar:not(.show-sidebar) aside#menu ul#side-menu li,
ul.nav.metis-menu li {
  margin-right: 1px;
}

body.hide-sidebar:not(.show-sidebar) #wrapper {
  margin-left: 60px;
}

body.page-small #menu {
  margin-left: -270px;
}

body.page-small #wrapper {
  margin-left: 0;
}

body.page-small.show-sidebar #menu {
  margin-left: 0;
}

body.page-small.show-sidebar #wrapper {
  margin-left: 230px;
}

#header {
  display: block;
  margin: 0;
  padding: 0;
  /* position: sticky;
    top: 0; */
  z-index: 999;
  margin-left: 300px;
  border-bottom: 1px solid var(--border-clr);
  height: 64px;
  background-color: var(--white);
}

#header.fixed-header {
  position: fixed;
  width: calc(100% - 266px);
}

body.hide-sidebar #header,
body.page-small #header {
  margin-left: 0;
}

body.hide-sidebar #header {
  position: sticky;
  top: 0;
}

@media (max-width: 768px) {
  #header {
    margin-left: 0;
  }
}

#header li > a.active {
  color: inherit;
  background: #f7f8fa;
  border-radius: 80px;
}

.navbar-nav > li > a {
  color: #334155;
  padding-top: 0;
  padding-bottom: 0;
  /* height: 63px; */
}

.navbar-nav > li > a.dropdown-toggle.profile {
  display: flex;
  gap: 6px;
  align-items: center;
}

.navbar-nav > li > a.dropdown-toggle.profile p {
  font-size: 13px;
  font-weight: 400;
  line-height: 24px;
  color: var(--black);
  margin-right: 8px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  max-width: 100px;
}

.navbar-nav > li a > .icon-total-indicator {
  line-height: 12px;
  padding: 2px 5px;
  padding-bottom: 3px;
  color: #fff;
  position: absolute;
  right: 1px;
  font-size: 11px;
  top: 13px;
  font-family: Verdana, serif;
  vertical-align: middle;
  text-align: center;
  border-radius: 8px;
}

.popover {
  box-shadow: 1px 2px 3px rgba(0, 0, 0, 0.1);
  border-color: #e2e8f0;
}

#notifications-sidebar{
  position: fixed;
  top: 0;
  right: 0;
  width: 480px;
  height: 100%;
  background-color: var(--white);
  box-shadow: 0px 4px 24px 0px #191b1c29;
  transition: transform 0.3s ease;
  z-index:9999999;
  transform: translateX(100%);
}
#notifications-sidebar.active {
  transform: translateX(0);
}
.notification-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.2);
  display: none;
  z-index: 1000;
}
.notification-overlay.active {
  display: block;
}
.close-notification{
  opacity:1;
}

.navbar-nav > li > .dropdown-menu.notifications {
  z-index: 100;
}

.mobile-menu .dropdown-menu.notifications,
.navbar-nav > li > .dropdown-menu.notifications {
  max-height: 600px;
  border-top: 0;
  overflow: auto;
}

.navbar-nav > li > .dropdown-menu {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}

.navbar-nav > li > .dropdown-menu.notifications li {
  z-index: 100;
  padding: 13px 0 13px 0 !important;
  margin-right: 10px;
}

.navbar-nav > li > .dropdown-menu.notifications li .media-body {
  font-size: 13px;
  flex: 1;
}

.navbar-nav > li > .dropdown-menu > li:last-child > a {
  border-radius: 0;
}

.navbar-nav > li > .dropdown-menu.notifications li img {
}

[dir="rtl"] .navbar-nav > li > .dropdown-menu.notifications li img {
  margin-right: 0;
  margin-left: 10px;
}

.navbar-nav .open > a,
.navbar-nav .open > a:focus,
.navbar-nav .open > a:hover,
.navbar-nav > li > a:focus,
.navbar-nav > li > a:hover {
  background: 0 0;
  color: #0f172a;
}

.navbar-nav.navbar-right {
  display: flex;
  align-items: center;
}

.navbar-right .dropdown-menu.notifications li:last-child {
  padding: 15px;
  font-weight: 500;
  text-align: center;
}

.mobile-navbar {
  position: absolute;
  top: 63px;
  left: 0;
  right: 0;
  background-color: #fff;
  z-index: 100;
}

.mobile-navbar .navbar-nav {
  padding: 0;
  margin: 0;
  border-bottom: 1px solid #e4e5e7;
}

.mobile-navbar .navbar-nav > li > a {
  padding: 10px 12px;
  color: #334155 !important;
  border-bottom: 1px solid #e2e8f0;
  height: inherit;
}

.mobile-navbar .navbar-nav > li:last-child > a {
  border-bottom: 0;
}

.sidebar {
  width: 300px !important;
  background: #1e293b;
  position: absolute;
  padding-right: 7px;
  bottom: 0;
  left: 0;
  top: 0;
  /* top: 34px; */
}

.sidebar > ul > li:nth-child(2) a {
  margin-top: 8px;
}

.sidebar li a {
  color: #f1f5f9;
  padding: 8px 13px;
  font-size: 13.9px;
  margin-top: 0.5rem;
  font-weight: 400;
}

.sidebar li a i.menu-icon {
  margin-right: 13px;
  display: block;
  float: left;
  width: 18px;
  font-size: 17px;
  opacity: 0.65;
}

.sidebar .nav > li > a:focus,
.sidebar .nav > li > a:hover,
.sidebar li.active > a {
  color: #f1f5f9;
  background: #334155;
  border-radius: 5px;
  transition: ease-in-out 0.2s;
}

.sidebar .nav > li > a:focus .menu-icon,
.sidebar .nav > li > a:hover .menu-icon,
.sidebar li.active > a .menu-icon {
  opacity: 0.99;
}

.sidebar li .nav-second-level li a {
  padding: 7px 10px 7px 43px;
  color: #cbd5e1;
  font-size: 14px;
  margin-top: 0;
}

.sidebar li .nav-second-level a .menu-icon {
  margin-right: 8px;
}

.sidebar li .nav-second-level li.active a {
  background-color: #2b65e8;
  display: inline-block;
  padding: 5px 15px;
  margin: 8px 0 8px 30px;
}

.sidebar li .nav-second-level li.active a .menu-icon {
  color: #fff;
}

.sidebar li .nav-second-level a:focus .menu-icon,
.sidebar li .nav-second-level a:hover .menu-icon {
  color: #cbd5e1;
}

.sidebar .nav > li .nav-second-level > li:not(.active) > a:focus,
.sidebar .nav > li .nav-second-level > li:not(.active) > a:hover {
  background-color: #1e293b;
  color: #f1f5f9;
}

.sidebar .arrow,
.sidebar .fa-plus {
  flex: 1;
  text-align: right;
}

.sidebar .fa.arrow:before {
  content: "\f104";
}

.sidebar .active > a > .fa.fa-plus:before {
  content: "\f107";
}

.sidebar li a.logo-text {
  font-size: 20px;
  color: #f1f5f9;
}

.sidebar li a.logo-text:active,
.sidebar li a.logo-text:focus,
.sidebar li a.logo-text:hover {
  color: #cbd5e1;
}

#setup-menu-wrapper {
  overflow: auto;
  display: none;
  z-index: 9;
  min-height: 100%;
}

#setup-menu > li:first-child {
  padding: 10px 10px;
  /* border-bottom: 1px solid #334155; */
  color: #fff;
}

/* #setup-menu>li>a {
    padding: 5px 13px;
} */
#setup-menu li .nav-second-level li a {
  padding: 8px 10px 8px 25px;
}

#setup-menu li .nav-second-level li.active a {
  padding: 5px 15px;
  margin: 8px 0 8px 15px;
}

#setup-menu .close-customizer {
  display: inline-block;
  padding: 3px 8px;
  margin-right: 4px;
}

[dir="rtl"] #setup-menu .close-customizer {
  margin-right: auto;
  margin-left: 4px;
}

#setup-menu li .nav-second-level li > .badge,
#side-menu li .nav-second-level li > .badge {
  position: absolute;
  right: 11px;
  top: 8px;
}

#setup-menu li .nav-second-level li.active > .badge,
#side-menu li .nav-second-level li.active > .badge {
  position: absolute;
  right: 11px;
  top: 15px;
}

#wrapper {
  margin: 0 0 0 300px;
  padding: 0;
  position: relative;
  min-height: 100%;
}

.content {
  padding: 26px 0 26px 19px;
  min-width: 320px;
  position: relative;
  z-index: 7;
}

.page-full .content {
  padding: 0;
}

.client-profile-image-small {
  height: 32px;
  width: 32px;
  border-radius: 50%;
}

.staff-profile-xs-image {
  width: 20px;
  height: 20px;
  border-radius: 50%;
}

.staff-profile-image-small,
.get-initials {
  height: 29px;
  width: 29px;
  border-radius: 50%;
}

.get-initials {
  background-color: var(--primary-color);
  color: var(--white);
  font-size: 13px;
  font-weight: 900;
  line-height: 24px;
}

.staff-profile-image-xs {
  height: 20px;
  width: 20px;
  border-radius: 50%;
}

.staff-profile-image-thumb {
  height: 160px;
  width: 160px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
}

.client-profile-image-thumb {
  height: 160px;
  width: 160px;
  border-radius: 50%;
}

.label-margin {
  margin-top: 23px;
}

.full-width {
  width: 100%;
}

.text-throught {
  text-decoration: line-through;
  opacity: 0.6;
}

.ie-dt-fix {
  overflow-x: hidden;
}

.ptop10 {
  padding-top: 10px;
}

.ptop15 {
  padding-top: 15px;
}

.ptop20 {
  padding-top: 20px;
}

.pbot10 {
  padding-bottom: 10px;
}

.pbot15 {
  padding-bottom: 15px;
}

.pbot20 {
  padding-bottom: 20px;
}

.pbot25 {
  padding-bottom: 25px;
}

.pright10 {
  padding-right: 10px;
}

.pright15 {
  padding-right: 15px;
}

.pright20 {
  padding-right: 20px;
}

.pleft10 {
  padding-left: 10px;
}

.pleft15 {
  padding-left: 15px;
}

.pleft20 {
  padding-left: 20px;
}

.mright5 {
  margin-right: 5px;
}

.mright10 {
  margin-right: 10px !important;
}

.mright15 {
  margin-right: 15px;
}

.mright25 {
  margin-right: 25px;
}

.mright30 {
  margin-right: 30px;
}

.mright35 {
  margin-right: 35px;
}

.mright20 {
  margin-right: 20px;
}

.mleft5 {
  margin-left: 5px;
}

.mleft10 {
  margin-left: 10px !important;
}

.mleft15 {
  margin-left: 15px;
}

.mleft20 {
  margin-left: 20px;
}

.mleft25 {
  margin-left: 25px;
}

.mleft30 {
  margin-left: 30px;
}

.pleft5 {
  padding-left: 5px;
}

.mleft4 {
  margin-left: 4px !important;
}

.mleft40 {
  margin-left: 40px;
}

[dir="rtl"] .mright5 {
  margin-left: 5px;
  margin-right: 0;
}

[dir="rtl"] .mright10 {
  margin-left: 10px;
  margin-right: 0;
}

[dir="rtl"] .mright15 {
  margin-left: 15px;
  margin-right: 0;
}

[dir="rtl"] .mright25 {
  margin-left: 25px;
  margin-right: 0;
}

[dir="rtl"] .mright35 {
  margin-left: 35px;
  margin-right: 0;
}

[dir="rtl"] .mright20 {
  margin-left: 20px;
  margin-right: 0;
}

[dir="rtl"] .mleft5 {
  margin-right: 5px !important;
  margin-left: 0;
}

[dir="rtl"] .mleft10 {
  margin-right: 10px !important;
  margin-left: 0;
}

[dir="rtl"] .mleft15 {
  margin-right: 15px !important;
  margin-left: 0;
}

[dir="rtl"] .mleft20 {
  margin-right: 20px !important;
  margin-left: 0;
}

[dir="rtl"] .mleft25 {
  margin-right: 25px !important;
  margin-left: 0;
}

[dir="rtl"] .mleft30 {
  margin-right: 30px !important;
  margin-left: 0;
}

[dir="rtl"] .mleft4 {
  margin-right: 4px !important;
  margin-left: 0 !important;
}

[dir="rtl"] .mleft40 {
  margin-right: 40px;
  margin-left: 0;
}

.mbot5 {
  margin-bottom: 5px;
}

.mbot10 {
  margin-bottom: 10px;
}

.mbot15 {
  margin-bottom: 15px !important;
}

.mbot20 {
  margin-bottom: 20px;
}

.mbot25 {
  margin-bottom: 25px;
}

.mbot30 {
  margin-bottom: 30px;
}

.no-mleft {
  margin-left: 0 !important;
}

.no-mright {
  margin-right: 0 !important;
}

.mntop15 {
  margin-top: -15px;
}

.no-mtop {
  margin-top: 0 !important;
}

.no-mbot {
  margin-bottom: 0 !important;
}

.mtop1 {
  margin-top: 1px;
}

.mtop2 {
  margin-top: 2px;
}

.mtop3 {
  margin-top: 3px;
}

.mtop4 {
  margin-top: 4px;
}

.mtop5 {
  margin-top: 5px;
}

.mtop6 {
  margin-top: 6px;
}

.mtop7 {
  margin-top: 7px;
}

.mtop8 {
  margin-top: 8px;
}

.mtop10 {
  margin-top: 10px;
}

.mtop15 {
  margin-top: 15px !important;
}

.mtop20 {
  margin-top: 20px;
}

.mtop25 {
  margin-top: 25px;
}

.mtop30 {
  margin-top: 30px;
}

.mtop35 {
  margin-top: 35px;
}

.mtop40 {
  margin-top: 40px;
}

.mtop45 {
  margin-top: 45px;
}

.no-border {
  border: 0;
}

.no-border-color {
  border-color: transparent !important;
}

.no-border-bottom {
  border-bottom: 0 !important;
}

.no-margin {
  margin: 0 !important;
}

.no-padding {
  padding: 0 !important;
}

.no-padding-bottom {
  padding-bottom: 0 !important;
}

.no-padding-top {
  padding-top: 0 !important;
}

.no-padding-left {
  padding-left: 0 !important;
}

.no-padding-right {
  padding-right: 0 !important;
}

[dir="rtl"] .no-padding-right {
  padding-left: 0 !important;
}

[dir="rtl"] .no-padding-left {
  padding-right: 0 !important;
}

.s_table {
  overflow-x: visible;
}

.inline-block {
  display: inline-block;
}

.display-block {
  display: block !important;
}

.decoration-underline {
  text-decoration: underline !important;
}

@media (max-width: 767px) {
  .hidden-xs {
    display: none !important;
  }

  .view-all-timesheets {
    height: 45px;
    margin-top: 0;
  }
}

.border-right {
  border-right: 1px solid #e2e8f0;
}

[dir="rtl"] .border-right {
  border-right: 0;
  border-left: 1px solid #e2e8f0;
}

.bold {
  font-weight: 500;
}

label:not(.control-label) {
  font-weight: 500;
}

.table-invoices tr {
  min-width: 100%;
}

.padding {
  padding: 20px;
}

.padding-10 {
  padding: 10px !important;
}

.padding-5 {
  padding: 5px;
}

.line-throught {
  text-decoration: line-through;
}

.medium-icon {
  font-size: 26px;
}

.tooltip-pointer {
  border-bottom: 1px dashed;
}

.modal .email-template {
  overflow: visible;
}

.email-templates li > a {
  font-size: 14px;
}

.email-templates li {
  border-bottom: 1px solid #e2e8f0;
  padding: 5px;
}

/* .client-reply {
    background: #fefce8!important;
    color: #323a45;
} */
.question.form-group {
  padding: 25px;
  background: #fdfdfd;
  border: 1px solid #f1f1f1;
}

.question .required {
  margin-top: 0;
}

.question_update {
  margin-left: 15px;
}

.note {
  background: #fff7ed;
  color: #323a45;
  padding: 5px 10px 5px 10px;
  margin-bottom: 8px;
  border: 1px solid #dacd83;
  border-radius: 2px;
}

.note-sm{
  color: var(--text-light);
  font-size: 11px;
  font-weight: 400;
  line-height: 19px;
  margin-top: 3px;
}

.fc-event {
  padding: 8px !important;
  border: 0 !important;
  border-radius: 2px !important;
  margin: 5px 10px 5px 10px !important;
  font-size: 11px;
  cursor: pointer;
}

.fc-view {
  overflow-y: scroll;
}

 .fc-day-header,
 .fc-header-toolbar button,
 .fc-toolbar .fc-center {
  text-transform: capitalize;
}

.btn-icon {
  display: inline-flex;
  justify-items: center;
  justify-content: center;
  padding: 5px 8px !important;
  margin-right: 2px;
}

.hide-menu {
  /* display: none; */
  padding: 18px 14px 18px 14px;
  font-size: 14px;
  float: left;
  color: var(--black);
  cursor: pointer;
  line-height: 27px;
  z-index: 99;
  position: relative;
}

.hide-menu:hover {
  opacity: 0.7;
}

[dir="rtl"] .hide-menu {
  float: right;
  margin-right: 20px;
  padding-right: 0;
}

.spinning {
  animation: spin 1s infinite linear;
  -webkit-animation: spin2 1s infinite linear;
}

@-webkit-keyframes spin {
  from {
    -webkit-transform: scale(1) rotate(0);
    transform: scale(1) rotate(0);
  }

  to {
    -webkit-transform: scale(1) rotate(360deg);
    transform: scale(1) rotate(360deg);
  }
}

@keyframes spin {
  from {
    -webkit-transform: scale(1) rotate(0);
    transform: scale(1) rotate(0);
  }

  to {
    -webkit-transform: scale(1) rotate(360deg);
    transform: scale(1) rotate(360deg);
  }
}

@-webkit-keyframes spin2 {
  from {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }

  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@media (max-width: 1038px) {
  .hide-menu {
    margin-right: 5px;
    display: block;
  }

  #setup-menu-wrapper {
    z-index: 9999;
  }

  body.app.admin .sidebar {
    z-index: 99;
  }

  html + body.show-sidebar,
  body.show-sidebar,
  body.show-sidebar #wrapper {
    overflow: hidden;
  }

  body.hide-sidebar #header,
  body.page-small #header {
    width: 100%;
  }
}

@media (max-width: 1024px) {
  .s_table {
    overflow-y: scroll;
  }
}

@media (max-width: 768px) {
  .bootstrap-select
    .dropdown-toggle
    .filter-option-inner-inner
    body.show-sidebar
    #wrapper:after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: -42px;
    width: 100%;
    height: calc(100% + 42px);
    background-color: rgba(45, 62, 80, 0.79);
    pointer-events: auto;
    opacity: 1;
    z-index: 55;
    -webkit-transition: opacity 0.3s cubic-bezier(0, 0, 0.3, 1);
    transition: opacity 0.3s cubic-bezier(0, 0, 0.3, 1);
  }

  .content {
    padding: 15px 15px 15px 15px;
    min-width: 320px;
  }

  #wrapper > div > div.tw-flex.tw-justify-between.tw-items-center.mbot30 {
    margin-bottom: 15px;
  }

  .s_table {
    overflow-y: scroll;
  }

  .navbar-nav > li > a {
    line-height: 20px;
  }

  .project-heading {
    margin-bottom: 15px;
    text-align: center;
  }

  .post-image-wrapper-1,
  .post-image-wrapper-2,
  .post-image-wrapper-3 {
    width: 100% !important;
  }

  .leads-search {
    margin-top: 15px;
  }

  .kan-ban-col {
    width: 260px !important;
  }

  .checklist {
    cursor: initial;
  }

  .task-info {
    width: 100%;
    margin-left: 0 !important;
    margin-bottom: 7px !important;
  }

  .toggle_view {
    display: none !important;
  }

  .project-progress-bars {
    margin-top: 20px;
  }

  body.show-sidebar .screen-options-area,
  body.show-sidebar .screen-options-btn {
    display: none !important;
  }
}

@media (min-width: 769px) {
  .mobile-navbar,
  .mobile-navbar.collapse.in {
    display: none;
  }
}

@media (max-width: 768px) {
  /* .navbar-right {
    display: none;
} */
  .mce-floatpanel {
    width: 70% !important;
  }

  [dir="rtl"] input[type="file"].dz-hidden-input {
    display: none;
  }
}

@media (max-width: 768px) {
  .leads-filter-column {
    margin-bottom: 5px;
  }
}

@media (max-width: 320px) {
  #wrapper {
    overflow: hidden;
  }
}

.mobile-menu {
  display: none;
}

@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: block;
    color: #334155;
    margin-right: 10px;
    line-height: 25px;
    padding-left: 5px;
  }

  [dir="rtl"] .mobile-menu-toggle {
    margin-right: 0;
    margin-left: 10px;
  }

  /* .mobile-menu {
    display: block;
} */
  ul.mobile-icon-menu {
    position: relative;
    margin-bottom: 0;
  }

  ul.mobile-icon-menu > li {
    position: relative;
  }

  ul.mobile-icon-menu > li > a {
    padding: 0 3px 0 3px;
    color: #334155;
  }

  ul.mobile-icon-menu .dropdown-menu {
    right: -3px;
    left: auto;
  }

  ul.mobile-icon-menu .icon-total-indicator {
    line-height: 12px;
    padding: 2px 5px;
    padding-bottom: 3px;
    color: #fff;
    position: absolute;
    right: 0;
    font-size: 11px;
    top: -8px;
    font-family: Verdana, serif;
    vertical-align: middle;
    text-align: center;
    border-radius: 8px;
  }

  ul.mobile-icon-menu ul.started-timers-top li a._timer + p {
    margin-top: -25px;
    margin-bottom: 0;
  }

  ul.mobile-icon-menu #top_start_timer p {
    line-height: 17px;
  }

  ul.mobile-icon-menu .notifications .notification-box img {
    margin-right: 8px;
  }

  ul.mobile-icon-menu .divider-top-started-timers {
    display: block;
    margin-top: 5px;
    margin-bottom: 15px;
  }

  ul.mobile-icon-menu li.timer {
    line-height: 20px;
  }

  .notifications.width400 {
    width: 300px;
  }

  .mobile-menu .navbar-nav,
  .mobile-menu .navbar-nav > li {
    float: none;
  }
}

.attachments .attachment:last-child .form-group {
  margin-bottom: 0;
}

form.dropzone,
.form-uploader {
  background-color: #fff;
  border: 1px dashed #93c5fd;
  border-radius: 6px;
}

form.dropzone:hover {
  background-color: var(--bg-color);
}

form.dropzone input[type="file"] {
  display: none;
}

.dropzone .dz-message {
  margin-top: 24px;
  color: var(--text-light2);
}

.upload-box .dz-message {
  margin: 0;
}

.upload-box,
.form-uploader {
  min-height: 1px;
  margin: 0;
  border-color: var(--text-light) !important;
  padding: 10px;
}

.form-uploader {
  cursor: pointer;
}

.uploaded-file:not(:last-child) {
  margin-bottom: 10px;
}

.form-uploader span {
  font-size: 13px;
  font-weight: 400;
  line-height: 24px;
  color: var(--black);
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.form-uploader span:before {
  content: "";
  background-image: url(/assets/images/icons/black-plus.svg);
  display: block;
  height: 10px;
  width: 10px;
  background-size: 10px;
  background-position: center;
  background-repeat: no-repeat;
}

.upload-box .dz-default.dz-message span {
  font-size: 13px;
  font-weight: 400;
  line-height: 24px;
  color: var(--black);
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.upload-box .dz-default.dz-message span::before {
  content: "";
  background-image: url(/assets/images/icons/black-plus.svg);
  display: block;
  height: 10px;
  width: 10px;
  background-size: 10px;
  background-position: center;
  background-repeat: no-repeat;
}

.dropzone .dz-preview .dz-image {
  border-radius: 0;
  background: transparent;
  height: 24px;
  width: 24px;
  display: flex;
  align-items: center;
}

.dz-details,
.dz-details:hover {
  background: transparent;
  opacity: 1;
  color: #fff;
}

.dropzone .dz-preview .dz-details {
  padding: 0;
}

.dropzone .dz-preview:hover .dz-image img {
  filter: blur(0);
  -webkit-filter: blur(0);
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}

.dropzone .dz-preview.dz-image-preview {
  background-color: transparent;
}

.dropzone .dz-preview .dz-details {
  opacity: 1;
  position: static;
  min-width: unset;
  max-width: unset;
  float: right;
  display: flex;
  align-items: center;
  gap: 10px;
}

.dropzone .dz-preview .dz-details .dz-size {
  margin-bottom: 0;
}

.dropzone .dz-preview .dz-details .dz-filename span,
.dropzone .dz-preview .dz-details .dz-size span {
  color: var(--text-light);
  font-size: 13px;
}

.dropzone .dz-preview .dz-details .dz-size span strong {
  font-weight: 400;
}

.dropzone .dz-preview .dz-details .dz-filename:hover span {
  color: #323a45;
}

table.table {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  width: 100% !important;
}

.chart {
  max-width: 100%;
  min-width: 100%;
}

.panel-body.todo-body {
  padding: 0;
}

.todo-title {
  padding: 0 0 0 10px;
  font-weight: 500;
  font-size: 14px;
}

ul.todo {
  margin-bottom: 0;
}

ul.todo li {
  display: block;
  position: relative;
  overflow: hidden;
  margin: 0 5px;
  border-bottom: 1px solid #f1f5f9;
  margin-left: -18px;
  margin-right: -10px;
  padding-left: 30px;
  padding-right: 25px;
  padding-bottom: 3px;
}

.dragger {
  cursor: move;
  background: url(../images/dragger.png) 1px 11px no-repeat;
}

li.no-todos {
  background: 0 0;
}

ul.todo {
  list-style: none !important;
}

ul.todo li.ui-sortable-handle:last-child,
ul.todo li:last-child {
  border-bottom: 0;
}

.todo-description {
  position: relative;
  padding: 10px 10px 0 10px;
  width: 100%;
  display: block;
}

[dir="rtl"] .todo-date {
  padding-top: 10px;
}

[dir="rtl"] .todo-checkbox {
  padding-right: 40px !important;
}

.todo-date {
  padding: 0 0 10px 0;
  display: block;
}

.todo-checkbox {
  padding-left: 40px;
  float: left;
}

.sortable {
  min-height: 60px;
}

.no-radius {
  border-radius: 0;
}

.selecpicker:active,
.selecpicker:focus {
  outline: 0;
  outline-offset: 0;
  border: 0;
}

#post,
#post:focus {
  margin-top: 25px;
  box-shadow: none;
  padding: 0;
  transition: none;
  box-sizing: border-box;
  border: 0;
  outline: 0;
  overflow: auto;
  resize: none;
}

.post-image-wrapper {
  position: relative;
  float: left;
  width: 100%;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid #eef2f4;
}

.post-image-wrapper-1 {
  width: 100%;
  height: auto;
}

.post-image-wrapper-2 {
  width: 50%;
  max-height: 150px;
}

.post-image-wrapper-3 {
  width: 33.333333%;
  max-height: 150px;
}

.post-image-wrapper img,
img.img-gallery {
  display: block;
  min-width: 100% !important;
}

.btn-post-options {
  margin-top: -15px;
}

#newsfeed {
  background: #f1f5f9;
  width: 100%;
  height: 100%;
  z-index: 999;
  position: fixed;
  overflow-y: scroll;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow-x: hidden;
  padding: 15px;
}

#newsfeed_images_modal,
body.noscroll .backdrop {
  z-index: 99999999999;
}

.newsfeed_wrapper {
  height: 100%;
  width: 100%;
  overflow: scroll;
}

#newsfeed .newsfeed_post.pinned > .panel-body {
  background: #e6faff;
  border: 1px dashed #b9dae2;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

#newsfeed .newsfeed_post .dropdown {
  position: absolute;
  right: 20px;
}

#newsfeed #new-post-form .dz-message {
  display: none;
}

#newsfeed #new-post-form.dropzone .dz-preview {
  margin-bottom: 0;
}

#newsfeed #new-post-form.dropzone .dz-progress {
  display: none;
}

#newsfeed #new-post-form.dropzone {
  padding: 0;
}

#newsfeed form#new-post-form.dropzone {
  border: 0;
}

#new-post-form.dropzone-active {
  border: 3px dashed #eef2f4;
  padding: 10px;
}

#newsfeed .post-time-ago {
  position: absolute;
  right: 55px;
  top: 34px;
}

#newsfeed .post-comment {
  padding: 10px 15px !important;
}

#newsfeed .comment-image {
  margin-right: 10px;
}

#newsfeed .comment-input {
  padding-top: 1px;
}

#newsfeed .comment {
  margin-top: 15px;
}

#newsfeed .comment:first-child {
  margin-top: 0;
}

#newsfeed .newsfeed_post .panel-footer {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

#newsfeed .newsfeed_post .post-comment.panel-footer,
#newsfeed .newsfeed_post .post-likes.panel-footer {
  background: #f7f9fa;
  border: 1px solid #e4e5e7;
  padding: 7px 15px;
  border-bottom: 0;
  color: #323a45;
}

#newsfeed .newsfeed_post .post-content {
  border-bottom: 0;
  font-size: 14px;
}

#newsfeed .newsfeed_post .user-comment.panel-footer {
  border-bottom: 1px solid #e4e5e7;
  border-top: 1px solid #e4e5e7;
}

#newsfeed .newsfeed_post .user-post-like {
  background: #fff;
  border-left: 1px solid #e4e5e7;
  border-right: 1px solid #e4e5e7;
  border-top: 0;
}

.modal_like_area {
  padding: 10px;
  border-bottom: 1px solid #e4e5e7;
}

.modal_like_area img {
  margin-right: 10px;
  float: left;
}

.modal_like_area:last-child {
  border-bottom: 0;
}

.likes_modal .modal-body {
  padding-top: 0;
  padding-bottom: 0;
}

.likes_modal .modal-footer {
  text-align: center;
}

#_task_modal {
  z-index: 99999;
}

.mce-floatpanel {
  z-index: 999999 !important;
}

#mce-modal-block.mce-in {
  background-color: rgba(45, 62, 80, 0.79);
  opacity: 0.8 !important;
}

.remove-task-user {
  position: absolute;
  top: 50%;
  left: 50%;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0s, opacity 0.5s linear;
  transform: translate(-50%, -50%);
  margin-right: 0 !important;
  z-index: 99;
  height: 13px !important;
}

.task-user {
  border-radius: 50%;
  vertical-align: middle;
  display: inline-flex;
  position: relative;
  align-items: center;
  gap: 5px;
}

.task-user:last-of-type:after {
  content: none;
}

.-tw-space-x-1 > :not([hidden]) ~ :not([hidden]) {
  margin: 0;
}

.task-user > .tw-relative:after {
  content: "";
  display: block;
  height: 100%;
  width: 100%;
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 0;
  background: #00000026;
  opacity: 0;
}

.task-user:hover > .tw-relative:after {
  opacity: 1;
}

.task-user:hover .remove-task-user {
  visibility: visible;
  opacity: 1;
}

.task-info {
  padding: 6px;
}

.task-info .task-info-icon {
  text-align: center;
  margin-left: -9px;
  margin-right: 8px;
  font-size: 15px;
  color: #94a3b8;
}

.task-info-separator {
  margin: 12px -20px;
  border-top: 1px solid #f1f5f9;
}

.task-info-col {
  padding: 5px;
  border: 1px solid #2563eb;
}

.task-info-col:last-child {
  border-left: 0;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
}

.task-info-col:first-child {
  border-right: 0;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}

.task-info-col i {
  font-size: 16px;
}

.task-staff-name {
  vertical-align: middle;
  font-size: 11px;
  color: #616161;
  padding-left: 5px;
  padding-right: 5px;
}

.proposal-comments .proposal-comment {
  padding: 5px;
  border-radius: 8px;
  background: #fff;
}

#task .panel-body {
  padding-bottom: 0;
}

#task #name {
  font-size: 18px;
  font-weight: 500;
}

@media (max-width: 768px) {
  .task-user {
    margin-top: 10px;
  }

  .remove-task-user {
    visibility: visible;
    opacity: 1;
  }
}

.invoice-top {
  margin-bottom: 5px;
}

.home-activity .tab-content {
  height: 420px;
  overflow-y: auto;
  overflow-x: hidden;
  padding-right: 15px;
}

[dir="rtl"] .home-activity .tab-content {
  padding-right: 0;
  padding-left: 15px;
}

/* .table.items thead {
    background: #F6F6FB;
    color: #1e293b;
} */
.table.items > thead:first-child > tr:first-child > th {
  border-top: none;
}

.table.items thead th {
  border-right: 1px solid var(--border-clr);
}

.table.items thead th:first-child {
  border-left: 1px solid var(--border-clr);
}

.table.items tbody > tr > td,
.table.items thead > tr > th {
  padding: 10px;
}

/* .table.items .main {
    margin-top: 35px;
    background-color: #f8fafc;
    border-right: 1px solid #e2e8f0;
    border-left: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
} */
._transaction_form .table.items thead > tr > th {
  min-width: 100px;
}

._transaction_form .table.items thead > tr > th:first-child,
._transaction_form .table.items thead > tr > th:last-child {
  min-width: auto;
}

._transaction_form .table.items thead > tr > th:first-child {
  border-right: 0;
}

.bs-searchbox {
  border-bottom: 1px solid #e2e8f0;
  padding: 10px;
}

.bs-searchbox input {
  padding-left: 12px !important;
}

.bs-actionsbox {
  padding: 10px;
}

.bs-searchbox + .bs-actionsbox {
  padding: 10px 8px 4px;
}

.payment-preview-wrapper {
  background: #22c55e;
  padding: 15px;
  border-radius: 3px;
  text-align: center;
  color: #fff;
  margin-top: 25px;
  font-size: 16px;
}

#top_search_button button {
  border-radius: 0;
  height: 63px;
  width: 60px;
  padding: 6px 0 5px 5px;
  font-size: 16px;
  background: 0 0;
}

#top_search_dropdown {
  width: 400px;
}

ul.search-results {
  max-height: 600px;
  overflow-y: auto;
  margin-top: 0;
  margin-left: 4px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  border-top: 0;
}

[dir="rtl"] .colorpicker.colorpicker-visible.dropdown-menu {
  left: 0 !important;
  right: auto;
  padding-left: 3px;
  margin-left: 45px;
}

[dir="rtl"] .navbar-nav > li > a .staff-profile-image-small {
  margin-left: 15px;
}

[dir="rtl"] .navbar-right {
  margin-left: 25px;
  margin-right: 0;
}

[dir="rtl"] .datepicker.dropdown-menu {
  right: auto;
}

[dir="rtl"] div[class^="toolbar-container"] {
  direction: rtl;
}

[dir="rtl"] .btn {
  text-align: right;
}

.col-lg-5ths,
.col-md-5ths,
.col-sm-5ths,
.col-xs-5ths {
  position: relative;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
}

.col-xs-5ths {
  width: 20%;
  float: left;
}

@media (min-width: 768px) {
  .col-sm-5ths {
    width: 20%;
    float: left;
  }
}

@media (min-width: 992px) {
  .col-md-5ths {
    width: 20%;
    float: left;
  }
}

@media (min-width: 1200px) {
  .col-lg-5ths {
    width: 20%;
    float: left;
  }
}

.goal-progress {
  text-align: center;
  position: relative;
}

.goal-percent {
  position: absolute;
  top: 100px;
  left: 0;
  width: 100%;
  text-align: center;
  line-height: 40px;
  font-size: 50px;
}

table .goal-progress {
  display: inline-block;
}

table .goal-percent {
  font-size: 10px;
  text-align: center;
  left: 1px;
  top: 22px;
  line-height: 0;
}

@media (max-width: 768px) {
  .single-option-buttons {
    display: inline-block;
    margin: 15px 0 15px 0;
  }

  .single-option-buttons a,
  .single-option-buttons button {
    width: 100%;
    margin-bottom: 5px;
  }

  .option-buttons {
    float: right;
  }

  .option-buttons .mleft4 {
    margin-left: 0 !important;
  }

  .option-buttons .pull-right,
  .option-buttons a {
    float: left !important;
    margin-right: 4px;
  }

  #top_search_dropdown {
    width: 300px;
  }

  #task .panel-body {
    padding-bottom: 20px;
  }

  .task-info-col {
    padding: 5px;
    border: 1px solid #2563eb !important;
  }

  .task-info-col:nth-child(3) {
    margin-bottom: 20px;
  }

  .home-stats .col-md-5ths {
    width: 100%;
    margin-bottom: 4px;
  }
}

.feed_description img {
  display: none;
}

.attachment-icon-preview {
  font-size: 18px;
  color: #64748b;
  margin-right: 15px;
}

.attachment-preview-icon-small {
  color: #64748b;
  margin-right: 5px;
  font-size: 13px;
}

#dropzoneDragArea,
.dropzoneDragArea {
  background-color: #fff;
  border: 1px dashed #93c5fd;
  border-radius: 6px;
  padding: 30px;
  text-align: center;
  margin-bottom: 15px;
  cursor: pointer;
}

#dropzoneDragArea:hover,
.dropzoneDragArea:hover {
  background-color: #f0f9ff;
}

.dropzone-manual {
  border: 0 !important;
  padding: 0;
  background: 0 0;
}

.dropzone-expense-preview {
  min-height: auto;
}

.dropzone-manual.dropzone .dz-message {
  margin-top: 0;
}

.font-medium {
  font-size: 15px !important;
}

.font-medium-xs {
  font-size: 13px !important;
}

.home-summary-separator {
  border-top: 1px dashed #eef2f4;
}

.expenses-report {
  margin-top: 0;
}

.mime {
  background-repeat: no-repeat;
  background-position: 0 0;
  padding: 1px 0 4px 26px;
}

.mime-word {
  background-image: url(../images/mime/word.png);
}

.mime-excel {
  background-image: url(../images/mime/excel.png);
}

.mime-powerpoint {
  background-image: url(../images/mime/powerpoint.png);
}

.mime-pdf {
  background-image: url(../images/mime/pdf.png);
}

.mime-zip {
  background-image: url(../images/mime/zip.png);
}

.mime-image {
  background-image: url(../images/mime/image.png);
}

.mime-file {
  background-image: url(../images/mime/file.png);
}

.mime-video {
  background-image: url(../images/mime/video.png);
}

.mime-audio {
  background-image: url(../images/mime/audio.png);
}

.files-container {
  margin: 0 0 10px;
}

.files {
  padding-left: 0;
  list-style: none;
  margin: 0;
}

.mime > a {
  color: #555 !important;
  text-decoration: none;
}

.invoice-attachment-wrapper hr,
.lead-attachment-wrapper hr {
  margin-top: 0;
}

#sales_attach_file .sales-attach-file-preview {
  padding-top: 5px;
}

#sales_attach_file .sales-attach-file-preview:first-child {
  border-top: 1px solid #e2e8f0;
  padding-top: 30px;
}

#contract_attachments .contract-attachment-wrapper {
  padding-bottom: 8px;
}

#contract_attachments .contract-attachment-wrapper:first-child {
  border-top: 1px solid #e2e8f0;
  padding-top: 30px;
}

.tabs-in-body-no-margin {
  margin-left: -20px;
  margin-right: -20px;
}

.safari .tabs-in-body-no-margin {
  margin-left: 0;
  margin-right: 0;
}

.table .item.ui-sortable-helper {
  background: #e2e8f0;
  opacity: 0.5;
  border: 0 !important;
}

.table .item.ui-sortable-helper input,
.table .item.ui-sortable-helper textarea {
  background: 0 0;
}

/* table.items tr.main td {
    padding-top: 25px;
    padding-bottom: 25px;
} */
.customer_map {
  height: 500px;
}

.customer-profile-attachment {
  border: 1px solid #e2e8f0;
  padding: 20px;
  height: 200px;
}

.customeer-profile-attachment-image {
  max-height: 200px;
  overflow: hidden;
}

.customeer-profile-attachment-image img {
  width: 100%;
  height: 100%;
}

.kan-ban-wrapper {
  overflow: auto;
}

#kan-ban {
  display: flex;
  gap: 13px;
  overflow: auto;
}

.kb-kan-ban#kan-ban {
  overflow: auto;
}

#kan-ban .panel-body {
  border-top: 0;
  padding: 18px;
}

.kan-ban-header {
  background-color: var(--bg-color);
  border-radius: 4px;
}

.kan-ban-header .kanban-title {
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
  color: var(--black);
  padding: 13px 10px;
}

.kan-ban-header .kanban-title .heading {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-transform: capitalize;
}

.kan-ban-content .kanban-empty h4 {
  color: #50637c;
}

/* #kan-ban .panel-body .lead-name, #kan-ban .panel-body .task-name {
    background: url(../images/dragger.png) 10px 10px no-repeat;
    padding-left: 25px;
} */
#kan-ban .not-sortable .panel-body .task-name {
  background: 0 0;
}

.ms-task .sortable {
  background: url(../images/dragger.png) 1px 2px no-repeat;
  padding-left: 14px;
}

#kan-ban .border-right:last-child {
  border-right: 0;
}

.deals-search .tw-relative > img {
  position: absolute;
  top: 50%;
  z-index: 1;
  left: 12px;
  transform: translateY(-50%);
}

.deals-search input {
  padding-left: 30px;
}

.deals-search.deal-search-dropdown {
  min-width: 130px;
}

.kanban-meta p {
  font-size: 13px;
  font-weight: 400;
  line-height: 20px;
  color: var(--text-light);
}

.kanban-meta .kanban-inner-title {
  font-size: 15px;
  font-weight: 600;
  line-height: 24px;
  color: var(--black);
  text-transform: capitalize;
}

.kanban-meta .deal-value span {
  font-weight: 700;
  color: var(--black);
}

.kan-ban-col {
  width: calc(20% - 13px);
  display: inline-block;
  float: left;
  flex: 1 0 calc(20% - 13px);
}

.kan-ban-col:last-child {
  margin-right: 0;
}

.kan-ban-content-wrapper {
  word-break: break-word;
  word-wrap: break-word;
  overflow-x: hidden;
  overflow-y: auto;
  scrollbar-width: none;
}

.kan-ban-expand-top {
  position: absolute;
  top: 0;
  right: 0;
  background: #f8fafc;
  padding: 3px 7px;
  border-top-right-radius: 6px;
  font-size: 11px;
}

#kan-ban li,
#kan-ban ul {
  list-style: none !important;
}

#kan-ban .kan-ban-content {
  padding: 0 10px;
}

#kan-ban li:not(:last-child) {
  margin-bottom: 8px;
}

.cpicker {
  cursor: pointer;
  border-radius: 2%;
}

.cpicker {
  float: left;
  margin-right: 15px;
  border-radius: 1px;
}

.kan-ban-settings {
  display: inline-block;
  padding: 18px 0 7px 10px;
}

.cpicker-small {
  width: 10px;
  height: 10px;
}

.cpicker-big {
  width: 20px;
  height: 20px;
}

.color-white[href]:active,
.color-white[href]:hover {
  color: #e2e8f0;
}

.color-white,
.color-white[href] {
  color: #fff;
}

.task-icon {
  border-radius: 50%;
  padding: 3px;
  margin-right: 6px;
  vertical-align: middle;
}

.table .task-icon {
  font-size: 11px;
  margin-left: 7px;
  margin-right: -3px;
}

[dir="rtl"] .table .task-icon {
  margin-left: -3px;
  margin-right: 7px;
}

.task-finished-icon {
  color: #22c55e;
  border: 1px dashed #22c55e;
}

.task-unfinished-icon {
  color: #6f6f6f;
  border: 1px dashed #6f6f6f;
}

[dir="rtl"] .main-tasks-table-href-name {
  float: right;
}

[dir="rtl"] a + .main-tasks-table-href-name {
  float: right;
}

.kan-ban-body .panel_s {
  margin-bottom: 0;
  position: relative;
}

#kan-ban .not-sortable {
  opacity: 0.7;
}

#kan-ban .popover,
.milestone-column .popover {
  width: 340px;
  max-width: 340px;
  text-align: center;
}

.popover-250 .popover {
  width: 250px;
  max-width: 250px;
}

.ui-state-highlight-card {
  height: 130px !important;
  border: 2px dashed #d1d1d1;
  margin-bottom: 15px;
  display: block;
  width: 95.5%;
  margin-left: 7px;
}

.ui-state-highlight-kan-ban-kb {
  height: 100px;
  border: 2px dashed #d1d1d1;
  margin-bottom: 15px;
  display: block;
  width: 95.5%;
  margin-left: 7px;
}

.modal .task-single-col {
  z-index: 999999999999;
}

.task-modal-single {
  z-index: 10001;
}

#task-comments .comment-wrapper {
  display: block;
  width: 100%;
}

#task-comments .comment-content {
  word-break: break-word;
  overflow-x: scroll;
  overflow-wrap: break-word;
  overflow: auto;
}

.firefox #task-comments .comment-content {
  word-break: initial;
}

#task_comment {
  line-height: initial;
  height: initial;
  opacity: 0.7;
}

.task-modal-single .edit-task-comment {
  padding-top: 15px;
}

.task-modal-single .task-comment {
  padding: 10px 8px 0 8px;
  margin-bottom: 10px;
}

.task-modal-single .task-comment.highlight-bg:last-child {
  padding-bottom: 10px;
}

.task-modal-single .task-comment.highlight-bg {
  border-radius: 5px;
}

.task-modal-single .task-comment.highlight-bg .task-info-separator {
  border: 1px solid transparent;
}

.task-single-col-right {
  background: #f8fafc;
  padding: 13px 20px;
  border-bottom-right-radius: 6px;
}

.task-single-col-right .task-menu-options {
  position: absolute;
  margin-top: 10px;
  right: 10px;
}

.task-single-col-left {
  padding: 25px;
  background: #fff;
  min-height: 600px;
  border-bottom-left-radius: 6px;
}

.task-modal-single .modal-body {
  padding-top: 0;
  padding-bottom: 0;
  background: #f8fafc;
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px;
}

.tasks-btn-settings-fix {
  padding: 6px 12px;
  font-size: 13px;
  border-radius: 8px;
}

.task-modal-single .task-m-close {
  margin-right: 43px;
  margin-top: 9px;
}

.checklist {
  padding: 5px 15px 5px 5px;
  margin-top: 10px;
  border-radius: 8px;
  cursor: move;
}

.checklist .checkbox.checklist-checkbox {
  margin-top: 0;
  margin-bottom: 0;
  height: 25px;
}

.checklist:hover,
.checklist:hover textarea[name="checklist-description"]:disabled {
  background: #eef2f4;
}

.checkbox.checklist-checkbox label::before {
  width: 20px;
  height: 20px;
  margin-left: -21px;
  border-radius: 50%;
}

.checklist label:not(.control-label) {
  font-weight: 400;
}

.checkbox.checklist-checkbox label::after {
  margin-left: -20px;
  padding-left: 4.5px;
  padding-top: 3px;
  font-size: 10px;
}

textarea[name="checklist-box"] {
  cursor: pointer;
}

textarea[name="checklist-description"] {
  resize: none;
  overflow: hidden;
  font-size: 14px;
  border-radius: 3px;
  padding: 0 5px 0 5px;
  border: 0;
  outline: 0;
  width: 100%;
}

textarea[name="checklist-description"]:active,
textarea[name="checklist-description"]:focus,
textarea[name="checklist-description"]:hover {
  outline: 0;
}

textarea[name="checklist-description"]:disabled {
  background: #fff;
  color: #212121;
  opacity: 1;
}

.task-info h5 {
  font-size: 14px;
  margin: 0;
  font-weight: 400;
  color: #64748b;
}

.label-task-action {
  padding: 9px;
  display: block;
}

.reminder-modal {
  overflow: visible !important;
}

.dd-nochildren .dd-placeholder {
  display: none;
}

.dd {
  position: relative;
  display: block;
  margin: 0;
  padding: 0;
  max-width: 600px;
  list-style: none;
  font-size: 13px;
  line-height: 20px;
}

.dd-list {
  display: block;
  position: relative;
  margin: 0;
  padding: 0;
  list-style: none;
}

.dd-list .dd-list {
  padding-left: 30px;
}

.dd-collapsed .dd-list {
  display: none;
}

.dd-empty,
.dd-item,
.dd-placeholder {
  display: block;
  position: relative;
  margin: 0;
  padding: 0;
  min-height: 20px;
  font-size: 13px;
  line-height: 20px;
}

.dd-handle {
  display: block;
  height: 30px;
  margin: 5px 0;
  padding: 5px 10px;
  color: #334155;
  text-decoration: none;
  font-weight: 700;
  border: 1px solid #e2e8f0;
  background: #f8fafc;
  border-radius: 3px;
  box-sizing: border-box;
}

.dd-handle:hover {
  color: #2ea8e5;
  background: #fff;
}

.dd-item > button {
  display: block;
  position: relative;
  cursor: pointer;
  float: left;
  width: 25px;
  height: 20px;
  margin: 5px 0;
  padding: 0;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  border: 0;
  background: 0 0;
  font-size: 12px;
  line-height: 1;
  text-align: center;
  font-weight: 700;
}

.dd-item > button:before {
  content: "+";
  display: block;
  position: absolute;
  width: 100%;
  text-align: center;
  text-indent: 0;
}

.dd-item > button[data-action="collapse"]:before {
  content: "-";
}

.dd-empty,
.dd-placeholder {
  margin: 5px 0;
  padding: 0;
  min-height: 30px;
  background: #f2fbff;
  border: 1px dashed #b6bcbf;
  box-sizing: border-box;
}

.dd-empty {
  border: 1px dashed #bbb;
  min-height: 40px;
}

.dd-dragel {
  position: absolute;
  pointer-events: none;
  z-index: 9999;
}

.dd-dragel > .dd-item .dd-handle {
  margin-top: 0;
}

.dd-dragel .dd-handle {
  -webkit-box-shadow: 2px 4px 6px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 2px 4px 6px 0 rgba(0, 0, 0, 0.1);
}

.nestable-lists {
  display: block;
  clear: both;
  padding: 30px 0;
  width: 100%;
  border: 0;
  border-top: 2px solid #ddd;
  border-bottom: 2px solid #ddd;
}

#nestable-menu {
  padding: 0;
  margin: 20px 0;
}

#nestable-output,
#nestable2-output {
  width: 100%;
  height: 7em;
  font-size: 0.75em;
  line-height: 1.333333em;
  font-family: Consolas, monospace;
  padding: 5px;
  box-sizing: border-box;
}

#nestable2 .dd-handle {
  color: #fff;
  border: 1px solid #e2e8f0;
  background: #fff;
}

#nestable2 .dd-handle:hover {
  background: #bbb;
}

#nestable2 .dd-item > button:before {
  color: #fff;
}

@media only screen and (min-width: 700px) {
  .dd {
    float: left;
    width: 48%;
  }

  .dd + .dd {
    margin-left: 2%;
  }
}

.dd-hover > .dd-handle {
  background: #2ea8e5 !important;
}

.dd3-content {
  display: block;
  height: 30px;
  margin: 5px 0;
  padding: 5px 10px 5px 40px;
  color: #333;
  text-decoration: none;
  font-weight: 700;
  border: 1px solid #ccc;
  background: #fafafa;
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(#fafafa),
    to(#eee)
  );
  background: linear-gradient(to bottom, #fafafa 0, #eee 100%);
  border-radius: 3px;
  box-sizing: border-box;
}

.dd-dragel > .dd3-item > .dd3-content {
  margin: 0;
}

.dd3-item > button {
  margin-left: 30px;
}

.dd3-handle {
  position: absolute;
  margin: 0;
  left: 0;
  top: 0;
  cursor: pointer;
  width: 30px;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  background: #fbfdff;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-color: var(--border-clr);
}

.dd3-handle:before {
  content: "≡";
  display: block;
  position: absolute;
  left: 0;
  top: 3px;
  width: 100%;
  text-align: center;
  text-indent: 0;
  color: #fff;
  font-size: 20px;
  font-weight: 400;
}

.dd3-handle:hover {
  background: #ebf0f5;
}

.dd3-content {
  font-weight: 500;
  height: 40px;
  padding-top: 9px;
  background: #fbfbfb !important;
  border-color: var(--border-clr);
}

.sub-items .dd3-content {
  background: #fff !important;
}

.dd-handle {
  height: 40px;
}

.dd3-handle:before {
  color: #444;
  top: 8px;
}

.dd3-empty {
  height: 1px;
}

@media only screen and (min-width: 700px) {
  .dd {
    width: 100%;
  }
}

.dd-item > button:before {
  top: 10px;
}

.dd-item > button {
  height: 30px;
  font-family: "Helvetica Neue", Arial, sans-serif;
}

.dd-item > button:nth-child(2) {
  margin-left: -5px;
}

.menu-options {
  padding: 10px;
  border: 1px solid var(--border-clr);
  border-radius: 8px;
}

.ct-control--crop,
.ct-control--rotate-ccw,
.ct-control--rotate-cw {
  display: none !important;
}

.ct-control--fetch {
  float: right;
}

.ct-widget .ct-control--upload {
  position: absolute !important;
  top: 300px;
  left: 285px;
}

.ct-widget.ct-image-dialog--uploading .ct-control--fetch {
  display: none;
}

.ct-widget.ct-image-dialog--populated .ct-control--fetch {
  display: none;
}

.ct-control--fetch {
  top: -33px;
  border-radius: 0;
}

.estimate-pipeline .panel_s,
.invoice-project .panel_s,
.proposal-convert-modal .panel_s,
.proposal-pipeline-modal .panel_s {
  box-shadow: none;
  border: 0;
  margin-bottom: 0;
}

.estimate-pipeline .panel_s .panel-body,
.invoice-project .panel_s .panel-body,
.proposal-convert-modal .panel_s .panel-body,
.proposal-pipeline-modal .panel_s .panel-body {
  padding: 0;
  border: 0;
}

.estimate-pipeline .toggle_view,
.proposal-pipeline-modal .toggle_view {
  display: none;
}

.estimate-pipeline .panel_s .panel-body .single-option-buttons,
.invoice-project .btn-tr,
.proposal-convert-modal .btn-tr,
.proposals-pipeline .panel_s .panel-body .single-option-buttons {
  display: none;
}

.estimate-pipeline .modal-lg,
.invoice-project .modal-lg,
.proposal-convert-modal .modal-lg,
.proposal-pipeline-modal .modal-lg {
  width: 1100px;
}

.proposals-pipeline .proposal-convert-modal .modal-lg {
  width: 1000px;
}

@media (max-width: 768px) {
  .estimate-pipeline .modal-lg,
  .invoice-project .modal-lg,
  .proposal-convert-modal .modal-lg,
  .proposal-pipeline-modal .modal-lg {
    width: auto;
  }

  .team-members {
    margin-top: 15px;
  }
}

@media only screen and (max-width: 1200px) {
  .estimate-pipeline .modal-lg,
  .invoice-project .modal-lg,
  .proposal-convert-modal .modal-lg,
  .proposal-pipeline-modal .modal-lg {
    width: auto;
  }
}

.top-left-logout {
  cursor: pointer;
  margin-top: 4px;
}

.announcement small {
  font-size: 11px;
  color: #333;
}

.announcement {
  font-size: 14px;
}

.kan-ban-content .article-group:first-child a + p {
  margin-top: 10px;
}

.kanban-leads-sort {
  display: inline-block;
  vertical-align: middle;
  margin-bottom: 15px;
}

.relative {
  position: relative;
}

.project-percent {
  position: absolute;
  font-size: 33px;
  font-weight: 500;
  top: 35%;
  left: 0;
  right: 0;
}

.width300 {
  width: 300px;
}

.width350 {
  width: 350px;
}

.width400 {
  width: 400px;
}

.width500 {
  width: 500px;
}

.width200 {
  width: 200px;
}

.width250 {
  width: 200px;
}

.started-timers-top {
  padding: 15px !important;
}

.started-timers-top .top-dropdown-btn {
  display: block;
  min-width: 40%;
  margin: 0 auto;
  margin-top: 11px;
}

.started-timers-top {
  max-height: 600px;
  overflow-y: auto;
}

.top-timers.text-success {
  color: #22c55e !important;
}

.timer {
  padding-bottom: 1px;
}

.timer a._timer {
  padding-left: 0 !important;
  padding-top: 0;
}

.timer a._timer:active,
.timer a._timer:hover,
a._timer:focus {
  background: 0 0 !important;
  color: #0081bb !important;
}

.timers-modal-logout .modal-footer {
  text-align: center !important;
}

.project-file-image {
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  margin-right: 15px;
}

#task-tracking-stats-modal {
  z-index: 999999999999;
  margin-top: 4.5%;
}

.project-progress-bars i {
  font-size: 24px;
}

.project_invoices .new-invoice-list {
  display: none;
}

.project_estimates .new-estimate-btn,
.project_estimates .switch-pipeline {
  display: none;
}

.project_proposals .customers-related,
.project_proposals .leads-related,
.project_proposals .new-proposal-btn,
.project_proposals .switch-pipeline {
  display: none !important;
}

.project_estimates .panel-body,
.project_invoices .panel-body,
.project_proposals .panel-body {
  border: 0;
  padding: 0;
}

.project_estimates .toggle-small-view,
.project_invoices .toggle-small-view,
.project_proposals .toggle-small-view {
  display: none;
}

.project_estimates,
.project_invoices,
.project_proposals {
  margin-left: -15px;
  margin-right: -15px;
}

@media (max-width: 768px) {
  .jquery-comments ul.main li.comment .wrapper {
    overflow: visible;
    margin-top: 25px;
  }
}

.jquery-comments [contentEditable="true"]:empty:not(:focus):before {
  color: #a1b4cc;
  font-size: 14px;
}

.jquery-comments .textarea-wrapper .upload.inline-button {
  display: none !important;
}

.jquery-comments .highlight-font-bold,
.jquery-comments ul.main li.comment .actions > *,
.jquery-comments ul.main li.comment .name,
.jquery-comments ul.navigation li {
  font-weight: 500 !important;
}

.jquery-comments ul.main li.comment .name {
  color: #0081bb;
}

.jquery-comments ul.main {
  list-style: none !important;
}

.jquery-comments.tc-content ul.main ul:not(.child-comments) {
  list-style: initial !important;
}

.jquery-comments.tc-content ul.main ol,
.jquery-comments.tc-content ul.main ul:not(.child-comments) {
  line-height: 0.8;
}

.jquery-comments ul.main li.comment .wrapper .content {
  padding: 5px 0 5px 0;
}

.jquery-comments ul.navigation li {
  color: #323a45;
}

.jquery-comments .textarea-wrapper .control-row > span.upload {
  padding: 5px 20px;
  background-color: #7d838b;
}

.jquery-comments .highlight-background {
  background: #2563eb !important;
}

.jquery-comments .textarea-wrapper .control-row > span {
  padding: 5px 20px !important;
  border-radius: 8px;
}

.jquery-comments .textarea-wrapper .control-row {
  margin-top: 10px;
}

.jquery-comments ul.main li.comment .actions > * {
  color: #6c7888;
}

.jquery-comments ul.navigation .navigation-wrapper {
  padding: 10px 0 0 0;
}

.jquery-comments ul.navigation {
  border-bottom: 1px solid var(--bg-color);
  margin-bottom: 1.5em;
}

#pre_invoice_project_settings .popover {
  width: 300px !important;
}

.td-border-left-transparent {
  border-left: 10px solid transparent;
}

.highlight {
  border: 1px solid #c5be22;
  padding: 1px 4px;
}

.delete-text.text-danger {
  color: #ef4444;
}

.projects-activity .activity-feed {
  overflow-y: scroll;
  height: 750px;
}

#header .icon {
  display: inline-block;
}

#header .icon .dropdown-menu > li > a {
  padding: 5px 0;
}

#header .icon .dropdown-menu > li > a:focus,
#header .icon .dropdown-menu > li > a:hover {
  background-color: transparent;
}

#estimate-pipeline,
#proposals-pipeline {
  overflow-x: scroll;
}

.pointer {
  cursor: pointer;
}

.font-normal {
  font-weight: 400 !important;
}

.todo-dragger {
  width: 15px;
  height: 27px;
  position: absolute;
  z-index: 50;
}

.text-dark {
  color: #464646;
}

.pinned-separator {
  margin-top: 5px;
  border-bottom: 1px solid #334155 !important;
}

#side-menu.nav > li.pinned_project {
  padding-bottom: 15px;
}

#side-menu.nav > li.pinned_project.active,
#side-menu.nav > li.pinned_project.active > a,
#side-menu.nav > li.pinned_project > a:focus,
#side-menu.nav > li.pinned_project > a:hover {
  background: 0 0;
  color: #fff;
}

#side-menu.nav > li.pinned_project:last-child {
  border-bottom: 1px solid #475569;
}

.tasks-overview thead {
  border: 0;
}

.tasks-overview tbody td {
  padding: 10px !important;
  vertical-align: middle !important;
}

@media (max-width: 768px) {
  ._buttons .pull-left,
  ._buttons .pull-right {
    float: none !important;
  }

  ._buttons .btn,
  ._buttons .btn-group {
    display: inline-block;
    margin-left: 0 !important;
    float: none !important;
    text-align: left;
  }

  ._buttons .mleft5 {
    margin-left: 0 !important;
  }

  [dir="rtl"] ._buttons .mleft5 {
    margin-right: 0 !important;
  }

  [dir="rtl"] ._buttons a,
  [dir="rtl"] ._buttons button {
    text-align: right;
  }

  ._buttons a,
  ._buttons button {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  [dir="rtl"] .post-time-ago {
    left: 55px;
    right: auto;
  }

  [dir="rtl"] .btn-post-options-wrapper {
    right: auto;
    left: 20px;
    top: 38px;
  }

  [dir="rtl"] ._filter_data.mleft4 {
    margin-right: 0 !important;
  }

  ._buttons .mright5 {
    margin-right: 0 !important;
  }

  .proposal_buttons {
    margin-top: 10px !important;
    display: inline-block;
  }

  ._buttons .btn-group > .btn {
    margin-bottom: 0 !important;
  }

  table .goal-percent {
    top: -3px;
  }
}

@media only screen and (max-device-width: 549px) {
  .mce-window {
    width: auto !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    background: 0 0 !important;
    margin: 15px !important;
  }

  .mce-window-head {
    background: #fff !important;
  }

  .mce-window-body {
    background: #fff !important;
  }

  .mce-foot > .mce-container-body {
    padding: 10px !important;
  }

  .mce-panel {
    max-width: 100% !important;
  }

  .mce-container {
    max-width: 100% !important;
    height: auto !important;
  }

  .mce-container-body {
    max-width: 100% !important;
    height: auto !important;
  }

  .mce-form {
    padding: 10px !important;
  }

  .mce-tabs {
    max-width: 100% !important;
  }

  .mce-formitem,
  .mce-tabs .mce-tab {
    margin: 10px 0 !important;
  }

  .mce-abs-layout-item {
    position: static !important;
    width: auto !important;
  }

  .mce-abs-layout-item.mce-label {
    display: block !important;
  }

  .mce-abs-layout-item.mce-textbox {
    -webkit-box-sizing: border-box !important;
    box-sizing: border-box !important;
    display: block !important;
    width: 100% !important;
  }

  .mce-abs-layout-item.mce-combobox {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }

  .mce-abs-layout-item.mce-combobox > .mce-textbox {
    -ms-flex: 1 1 auto;
    -webkit-box-flex: 1;
    flex: 1 1 auto;
    height: 29px !important;
  }
}

.colorpicker {
  z-index: 99999;
}

.kanban-load-more {
  padding-left: 5px !important;
  padding-right: 5px !important;
}

.kanban-color-picker {
  position: relative;
  z-index: 40;
}

.modal-content.theme_style_modal_example {
  box-shadow: 0 5px 8px rgba(0, 0, 0, 0.2) !important;
  border-top: 1px solid #d8d8d8 !important;
  margin-top: 12px !important;
}

.modal-content.theme_style_modal_example .modal {
  display: block !important;
  position: relative !important;
  margin-top: 0 !important;
}

.modal-content.theme_style_modal_example .modal .modal-header {
  border-bottom: 0 !important;
}

.project_progress_slider_horizontal {
  height: 20px;
}

.project_progress_slider_horizontal.ui-widget.ui-widget-content {
  height: 18px;
  border-color: #cbd5e1;
  background: #f1f5f9;
  border-radius: 3px;
}

.project_progress_slider_horizontal .ui-slider-handle {
  height: 25px;
  background: #22c55e;
  border: 1px solid #22c55e;
  width: 12px;
  margin-left: -1px;
  cursor: pointer;
}

.jquery-comments .textarea-wrapper {
  padding-left: 21px;
}

.jquery-comments .textarea-wrapper:before {
  border: 0;
}

.jquery-comments .textarea-wrapper .textarea {
  border-radius: 3px;
  border: 1px solid #e2e8f0;
}

.jquery-comments .textarea-wrapper .textarea:active,
.jquery-comments .textarea-wrapper .textarea:focus {
  border-color: #2563eb;
}

.activity-feed {
  padding: 15px;
  word-wrap: break-word;
}

.activity-feed .feed-item {
  position: relative;
  padding-bottom: 30px;
  padding-left: 30px;
  border-left: 2px solid #22c55e;
}

.feed-item .text-has-action {
  margin-bottom: 7px;
  display: inline-block;
}

.activity-feed .feed-item:last-child {
  border-color: transparent;
}

.activity-feed .feed-item:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: -6px;
  width: 10px;
  height: 10px;
  border-radius: 6px;
  background: #fff;
  border: 1px solid #4b5158;
}

.activity-feed .feed-item .date {
  position: relative;
  top: -5px;
  color: #4b5158;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 500;
}

.activity-feed .feed-item .text {
  position: relative;
  top: -3px;
}

.lead-modal .lead-top-btn {
  margin-top: -14px;
  z-index: 10;
  position: relative;
}

.lead-modal .activity-feed .feed-item {
  padding-top: 20px;
  border-right: 1px solid #e2e8f0;
  border-top: 1px solid #e2e8f0;
  padding-bottom: 15px;
  background: #fdfdfd;
}

.lead-modal .activity-feed .feed-item:first-child {
  border-top-right-radius: 3px;
}

.lead-modal .activity-feed .feed-item:last-child {
  border: 1px solid #e2e8f0;
  border-bottom-right-radius: 3px;
}

.lead-modal .activity-feed .feed-item:after {
  top: -5px;
  border: 1px solid #22c55e;
}

.email-template-heading {
  padding: 10px;
  background-color: #f8fafc;
  border: 1px solid #e2e8f0;
  box-shadow: none;
  font-size: 15px;
}

.milestone-column .ui-sortable-placeholder {
  height: 50px;
  overflow: hidden;
  border: 2px dashed #d1d1d1;
  background: 0 0 !important;
  margin-top: 10px;
}

li.task.overdue-task .panel-body {
  background: #fef2f2 !important;
  border: 1px solid #fee2e2 !important;
}

.show_quantity_as_wrapper span {
  font-weight: 500;
}

._filter_data .dropdown-menu.height500 {
  max-height: 500px;
  overflow-y: scroll;
}

@media (max-width: 768px) {
  .dropdown-submenu.pull-left > .dropdown-menu {
    display: block;
    left: 1px;
    position: relative;
    border: 0;
    box-shadow: none;
  }

  ._filter_data .dropdown-menu {
    max-height: 500px;
    overflow-y: scroll;
  }

  .dropdown-submenu > a:after {
    border-left-color: transparent;
  }

  .dropdown-submenu > a {
    background: #e2e8f0;
  }

  .show_quantity_as_wrapper {
    display: inline-block;
    width: 100%;
    margin-bottom: 15px;
  }

  .show_quantity_as_wrapper span {
    float: left;
    margin-bottom: 15px;
  }

  .show_quantity_as_wrapper div.radio {
    display: block;
    clear: both;
    float: left;
    margin-left: 0;
  }

  .lead-modal .lead-top-btn {
    width: 100%;
    margin-top: 5px;
  }
}

.top_stats_wrapper {
  padding: 19px 11px;
  border-radius: 4px;
  height: 100%;
  border: 1px solid var(--border-clr);
}
.top_stats_wrapper-2{
  display: flex;
  justify-content: space-between;
}


.top_stats_wrapper-2 .lg-title{
  line-height: 24px;
  font-size: 20px !important;
}

.motomo-analytics{
  position: relative;
}

.motomo-analytics:not(:last-child){
  margin: 0 50px;
}

.motomo-analytics:last-child{
  margin-left:50px;
}

.motomo-analytics:not(:last-child)::after{
  content: "";
  height: 100%;
  background-color: var(--border-clr);
  width: 1px;
  display: block;
  position: absolute;
  right: -50px;
  top: 0;
}

.top_states-up-down {
  font-size: 13px;
  font-weight: 500;
  line-height: 21px;
}

/* .dashboard-demographs>div:nth-child(-n+5) {
    margin-bottom: 12px;
} */

.dashboard-demographs{
  margin-left: -6px;
  margin-right: -6px;
  row-gap:12px;
}

.dashboard-demographs > .columns-data-1 {
  max-height: 100%;
  width: 20%;
  padding-left: 6px;
  padding-right: 6px;
}

.dashboard-demographs > .columns-data-2{
  flex:2;
  max-width: 40%;
}

.top_stats_wrapper > span {
  font-size: 13px;
  font-weight: 400;
  line-height: 18px;
  color: var(--text-light);
}

.top_stats_wrapper > div > div.tw-flex.tw-items-baseline {
  font-size: 20px;
  font-weight: 800;
  line-height: 1;
  color: var(--black);
}

.progress-finance-status {
  margin-top: -25px;
  margin-bottom: 16px;
  z-index: 1;
}

.text-stats-wrapper {
  z-index: 2;
}

@media only screen and (max-width: 760px),
  (min-device-width: 768px) and (max-device-width: 1024px) {
  .s_table .table.items .main,
  .s_table table {
    margin-top: 0;
    margin-bottom: 35px;
    clear: both;
  }

  .s_table.table-responsive {
    padding: 0;
    background: #f9f9f9;
  }

  .s_table .table.items tbody > tr > td:not(:first-child) {
    display: inline-block;
    width: 100%;
  }

  .s_table table,
  .s_table tbody,
  .s_table td,
  .s_table th,
  .s_table thead,
  .s_table tr {
    display: block;
  }

  .s_table thead tr {
    position: absolute;
    top: -9999px;
    left: -9999px;
  }

  [dir="rtl"] .s_table thead tr {
    left: auto;
  }

  .s_table td {
    border: none;
    border-bottom: 1px solid #eee;
    position: relative;
    padding-left: 50%;
  }

  .s_table td.dragger {
    display: none;
  }

  .s_table td:last-child {
    clear: both;
  }

  .s_table td:last-child a,
  .s_table td:last-child button {
    display: block;
    width: 100%;
    margin-top: 15px;
    margin-bottom: 15px;
  }

  .s_table td:before {
    position: absolute;
    top: 6px;
    left: 6px;
    width: 45%;
    padding-right: 10px;
    white-space: nowrap;
  }

  .project-percent-col {
    margin-top: 25px;
  }
}

.full-screen-modal {
  width: 90%;
  height: 90%;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  overflow-y: initial !important;
}

.full-screen-modal .modal-content {
  height: 100%;
  min-height: 100%;
  max-height: 100%;
}

.full-screen-modal .modal-footer:not(.modal-not-full-width) {
  bottom: 0;
  position: absolute;
  width: 100%;
}

.full-screen-modal .modal-footer:not(.modal-not-full-width):after {
  content: " ";
  margin-top: -7px;
  padding-bottom: 3px;
}

.project_file_area,
.project_file_discusssions_area {
  overflow-y: scroll;
  height: 400px;
}

@media (max-width: 768px) {
  .project_file_area,
  .project_file_discusssions_area {
    height: auto !important;
  }

  .full-screen-modal {
    width: auto;
    height: auto;
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    margin: 10px;
    overflow-y: initial !important;
  }

  .project_file_discusssions_area {
    margin-top: 30px;
  }

  .full-screen-modal .modal-footer {
    width: auto;
    position: relative !important;
  }
}

.preview_image {
  height: auto;
  width: 250px;
  overflow: hidden;
  margin-bottom: 15px;
  margin-top: 15px;
}

.preview_image:last-child {
  margin-top: 0;
  margin-bottom: 0;
}

.preview_image img {
  width: 100%;
  height: auto;
}

.task-attachment {
  border: 1px solid #e2e8f0;
  padding: 10px;
  border-radius: 3px;
  max-height: 195px;
  min-height: 195px;
  overflow: hidden;
}

.task-attachment .preview_image {
  margin: 0;
  width: 100%;
}

.task-attachment .task-attachment-no-preview {
  margin-top: 45px;
  text-align: center;
}

.task-attachment .task-attachment-user {
  padding-bottom: 10px;
  display: inline-block;
  width: 100%;
  margin-left: 0;
  border-bottom: 1px solid #e2e8f0;
}

.task-attachment-wrapper {
  max-height: 200px;
  overflow: hidden;
}

.task-modal-single .trigger i {
  font-size: 10px;
}

.task-single-menu .popover {
  width: 400px;
}

.popover-inner {
  position: relative;
}

.task-single-menu ul {
  margin: 0;
  padding: 5px;
}

.task-single-menu ul li {
  margin-bottom: 10px;
}

.task-single-menu ul li:last-child {
  margin-bottom: 0;
}

.task-single-menu ul li a {
  font-size: 14px;
}

.tc-content ol,
.tc-content ul {
  list-style: inherit;
  margin-left: 16px;
}

.tc-content ol {
  list-style-type: decimal;
}

.tc-content table {
  margin-top: 0;
  border-collapse: initial;
}

.tc-content img {
  max-width: 100%;
}

.tc-content table > tbody > tr > td {
  padding: 5px 10px 5px 10px;
}

.tc-content table[border="1"],
.tc-content table[border="1"] td {
  border: 1px solid;
}

.tc-content em {
  font-style: italic;
}

.task-modal-single .comment-content img {
  max-width: 100%;
  height: auto;
}

.task-modal-single .comment-content iframe {
  width: 100%;
}

@media (min-width: 768px) {
  .form-inline textarea.form-control {
    display: block !important;
    width: 100%;
  }

  .page-leads-admin .float-alert {
    width: 18%;
  }

  .form-inline .popover-content .form-group {
    margin-bottom: 15px;
  }
}

.tooltip {
  position: fixed;
  font-family: var(--roboto) !important;
}

.tooltip > .tooltip-inner {
  padding: 7px 10px;
  background: #1f2d3d;
}

.email-template-heading {
  margin-bottom: 0;
  border-radius: 3px;
  margin-left: -21px;
  margin-right: -21px;
  border-left: 0;
  border-right: 0;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  padding-left: 28px;
}

.customer-heading-profile {
  margin-bottom: 15px;
  margin-top: 0;
}

.menu-dots a > i {
  font-size: 11px;
}

.tilt.right {
  transform: rotate(3deg);
  -moz-transform: rotate(3deg);
  -ms-transform: rotate(-3deg);
  -webkit-transform: rotate(3deg);
}

.tilt.left {
  transform: rotate(-3deg);
  -moz-transform: rotate(-3deg);
  -ms-transform: rotate(-3deg);
  -webkit-transform: rotate(-3deg);
}

.table-image {
  height: 75px;
  width: 250px;
  margin: 15px 0;
}

.lead-field-heading {
  margin-top: 10px;
  margin-bottom: 0;
}

.lead-info-heading:first-child {
  margin-left: -15px;
  padding-left: 15px;
}

.lead-info-heading {
  background: #f1f5f9;
  font-size: 18px;
  padding: 7px;
  border-radius: 3px;
  margin-bottom: 15px;
}

.lead-info-heading h4 {
  color: #0f172a;
  font-weight: 500;
  font-size: 13.5px;
  margin: 0;
}

.nav-tabs.lead-new {
  display: none;
  margin-bottom: 10px;
}

.input-transparent {
  box-shadow: none !important;
  outline: 0;
  border: 0 !important;
  background: 0 0;
}

#botlink,
#toplink {
  position: fixed;
  right: 7.5%;
  bottom: 50%;
  padding: 10px;
  margin: 0 -20px 0 0;
  color: #475569;
  background: #f1f5f9;
  font-size: 1.5em;
  border: 1px solid #cbd5e1;
  border-bottom: 1px solid #cbd5e1;
  border-radius: 6px 6px 0 0;
  z-index: 99;
}

#botlink {
  top: 50%;
  padding: 10px;
  bottom: auto;
  border: 1px solid #cbd5e1;
  border-top: 1px solid #cbd5e1;
  border-radius: 0 0 6px 6px;
  margin-top: -1px;
}

#botlink:hover,
#toplink:hover {
  color: #0f172a;
  background: #e2e8f0;
  text-decoration: none;
}

[dir="rtl"] #botlink,
[dir="rtl"] #toplink {
  left: 7.5%;
  right: auto;
}

#lightbox,
.lightboxOverlay {
  z-index: 100002 !important;
}

ul.tagit {
  border: 0 !important;
  background: 0 0;
}

ul.tagit input[type="text"] {
  background: 0 0;
  border-left: 1px dashed #b3b3b3;
  height: 20px;
  padding-left: 5px;
  border-radius: 0;
}

[dir="rtl"] ul.tagit input[type="text"] {
  border-left: 0;
  border-right: 1px dashed #b3b3b3;
}

ul.tagit li.tagit-new {
  padding-top: 2px;
}

ul.tagit li.tagit-choice-editable:hover {
  border: 1px solid #cbd5e1;
}

ul.tagit li.tagit-choice-editable,
ul.tagit li.tagit-choice-read-only {
  padding: 2px 20px 2px 10px;
  background: #fff;
  color: var(--text-light);
  border: 1px solid var(--border-clr);
  font-weight: 400;
  font-size: 13px;
  border-radius: 4px;
  margin-top: 3px;
  margin-right: 2.5px;
  margin-left: 2.5px;
}

ul.tagit li.tagit-new {
  padding: 0;
}

ul.tagit li {
  margin: 0;
}

ul.tagit input[type="text"] {
  border-left: none;
  padding: 0 12px;
}

ul.tagit li.tagit-choice-editable a {
  color: #475569;
}

ul.tagit-autocomplete {
  border-radius: 8px;
  background: #fff;
  padding: 5px 0;
  border-color: #e2e8f0 !important;
  max-height: 270px;
  min-width: 240px;
  font-family: Inter, sans-serif;
  overflow-y: scroll;
}

ul.tagit-autocomplete li {
  border-bottom: 1px solid #e2e8f0;
  padding: 5px !important;
}

ul.tagit-autocomplete .ui-menu-item-wrapper {
  margin-right: -6px !important;
}

ul.tagit-autocomplete .ui-menu-item-wrapper {
  margin-right: -6px !important;
  font-size: 14px;
}

ul.tagit-autocomplete .ui-menu-item-wrapper.ui-state-active,
ul.tagit-autocomplete .ui-menu-item-wrapper:focus,
ul.tagit-autocomplete .ui-menu-item-wrapper:hover {
  background: #e4e8f1 !important;
  border-color: #e4e8f1 !important;
  color: #2d2d2d;
}

ul.tagit-autocomplete li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

ul.tagit-autocomplete {
  z-index: 999999;
}

.tagit-autocomplete .ui-state-active {
  border: 1px solid #e2e8f0;
  font-weight: 400;
  color: #333;
  background: #f5f5f5;
}

.tagit-autocomplete .ui-widget-content {
  border: 1px solid #e2e8f0;
}

.tagit-autocomplete .ui-menu .ui-menu-item a.ui-state-active,
.tagit-autocomplete .ui-menu .ui-menu-item a.ui-state-hover {
  color: #333;
}

.task-modal-single ul.tagit,
.task-modal-single ul.tagit li.tagit-new {
  padding-bottom: 0;
  margin-top: 5px;
  margin-bottom: 5px;
}

ul.tagit li.tagit-choice .tagit-label:not(a) {
  font-family: Inter, sans-serif;
}

[dir="rtl"] ul.tagit {
  display: block;
  width: 100%;
}

[dir="rtl"] ul.tagit,
[dir="rtl"] ul.tagit li.tagit-choice-editable,
[dir="rtl"] ul.tagit li.tagit-new {
  float: right;
}

ul.tagit li.tagit-choice:hover {
  background: #e2e8f0 !important;
}

.project-overview-tags ul.tagit {
  margin-bottom: -10px;
}

.tags-read-only-custom a.tagit-close {
  display: none;
}

.tags-read-only-custom ul.tagit input[type="text"] {
  display: none;
}

.tags-read-only-custom ul.tagit li.tagit-choice:hover {
  background: 0 0 !important;
}

.tags-read-only-custom ul.tagit li.tagit-choice-editable {
  padding-right: 10px;
}

.lead-wrapper .tags-labels .label-tag,
.task-modal-single .tags-labels .label-tag {
  float: left;
  margin-top: 5px;
}

.label-info {
  border-radius: 14px;
}

.label-tag {
  margin-right: 5px;
  color: #2d2d2d;
  border: 1px solid #e2e8f0;
  background: #fff;
  font-size: 12.5px;
}

.label-tag:last-child {
  margin-right: 0;
}

table .tags-labels {
  float: left;
  display: inline-block;
  max-width: 180px;
  word-wrap: break-word;
  word-break: break-word;
  min-width: 100%;
  white-space: pre-wrap;
}

.kanban-tags .tags-labels .label-tag,
table .tags-labels .label-tag {
  display: inline-block;
  margin-top: 4px;
}

table .tags-in-table-row .label-tag {
  font-size: 12.5px;
}

table.dataTable tbody .tags-labels .label-tag:hover {
  cursor: pointer;
  opacity: 0.8;
}

table .dtr-data .tags-labels {
  float: none;
}

.table.project-overview-table > tbody > tr > td {
  padding-left: 2px;
}

.table.project-overview-table > tbody > tr:first-child > td {
  border-top: 0;
}

.kanban-tags .tags-labels {
  max-width: 268px;
  min-width: 100%;
}

.kanban-tags .tags-labels .label-tag {
  padding: 3px 7px;
}

.highlight-bg {
  background: #edfaff;
  border: 1px solid #def6ff;
}

#project_view_name .bootstrap-select button[data-id="project_top"],
#project_view_name .bootstrap-select button[data-id="project_top"]:focus,
#project_view_name .bootstrap-select button[data-id="project_top"]:hover {
  font-size: 19px;
  font-weight: 500;
  height: auto;
  background: 0 0;
  border: 0;
  box-shadow: none;
  padding-top: 0;
  padding-left: 0;
  padding-bottom: 0;
}

#project_view_name .bootstrap-select .bs-caret {
  margin-left: 15px;
}

.custom-field-inline-edit-link {
  float: left;
  margin-right: 5px;
}

[dir="rtl"] .custom-field-inline-edit-link {
  float: right;
  margin-left: 5px;
}

.popover-top-timer-note {
  z-index: 88888;
}

.fake-autofill-field {
  height: 1px !important;
  width: 1px !important;
  border: 0 !important;
  padding: 0 !important;
}

/* .not-mark-as-read-inline {
    width: auto!important;
    position: absolute;
    right: 5px;
    top: 4px;
} */
[dir="rtl"] .not-mark-as-read-inline {
  left: 5px;
  right: auto;
}

.not-mark-as-read-inline:active,
.not-mark-as-read-inline:focus,
.not-mark-as-read-inline:hover {
  background-color: transparent !important;
}

.not-mark-as-read-inline.notification-profile {
  position: relative;
  right: auto;
  bottom: auto;
}

.back-to-from-task {
  float: right;
  margin-left: 10px;
  margin-top: 1px;
  font-size: 17px;
}

.setup-menu-loading {
  position: absolute;
  top: 0;
  background: rgba(0, 0, 0, 0.2);
  width: 100%;
  height: 100%;
  z-index: 99;
  left: 0;
  text-align: center;
  padding-top: 15px;
}

.setup-menu-loading i {
  color: #fff;
}

.vault_password_change_notice {
  margin-top: -10px;
}

.customer-profile-group-heading {
  font-size: 15px;
  font-weight: 600 !important;
  line-height: 24px;
  margin: 0;
  color: var(--black);
}

.tenant-widget.integration-wrapper .customer-profile-group-heading {
  margin: 0 0 6px;
}

@media (max-width: 768px) {
  .customer-profile-group-heading {
    top: -40px;
  }
}

.mce-container.mce-panel {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  border-radius: 6px;
}

.mce-btn button {
  font-size: 13px !important;
}

.simple-editor .mce-container.mce-panel.mce-edit-area {
  border-right-width: 1px !important;
}

.simple-editor .mce-toolbar-grp {
  padding-top: 2px !important;
  padding-bottom: 2px !important;
}

.statement_tfoot td:last-child {
  border-left: 0;
}

.statement_tfoot td:first-child {
  border-right: 0;
}

.statement-account-summary tbody > tr > td {
  padding: 3px 6px;
  border-top: 0;
}

.statement-account-summary thead > tr > th {
  border: 0 !important;
}

.font-size-14 {
  font-size: 14px;
}

.hr-10 {
  margin-top: 10px;
  margin-bottom: 10px;
}

hr {
  border-color: var(--border-clr);
}

select.ajax-search {
  display: none;
}

.tagsinput,
input#tags {
  width: 100%;
  opacity: 0;
  height: 31.56px;
}

#expense-form,
#new-post-form,
#project-expense-form {
  background-color: transparent;
}

.popover-title {
  background: #f9fafc;
  border-bottom: 1px solid #e4e5e7;
}

@media (min-width: 769px) {
  .tasks-page ._filter_data {
    margin-bottom: 0 !important;
  }
}

textarea[data-task-ae-editor="1"] {
  opacity: 0.7;
}

.btn-bottom-toolbar {
  position: fixed;
  bottom: 0;
  left: 0;
  padding: 10px 30px;
  margin-left: 300px;
  box-shadow: 0 -4px 5px -3px rgb(0 0 0 / 10%);
  background: #fff;
  width: calc(100% - 300px);
  z-index: 5;
}

.modal .btn-bottom-pusher,
.modal .btn-bottom-toolbar {
  display: none;
}

.btn-bottom-pusher {
  margin-top: 60px;
}

body.hide-sidebar .btn-bottom-toolbar {
  width: 100%;
  min-width: 100%;
  margin-left: 0;
}

[dir="rtl"] .btn-bottom-toolbar {
  margin-left: 0;
  margin-right: 230px;
}

@media (max-width: 768px) {
  .btn-bottom-toolbar {
    margin-left: 0;
  }
}

@media (max-width: 500px) {
  .btn-bottom-toolbar .btn-toolbar-notice {
    display: none;
  }

  .btn-bottom-toolbar {
    padding-right: 6px;
    text-align: center;
  }

  .btn-bottom-toolbar .btn:first-child {
    margin-right: 10px;
  }

  .btn-bottom-toolbar .btn-group .btn:first-child {
    margin-right: 0;
  }

  .btn-bottom-toolbar .btn {
    text-align: center;
    margin-left: 5px !important;
  }

  .btn-bottom-toolbar .btn-group .btn {
    margin-left: 0 !important;
  }

  [dir="rtl"] .btn-bottom-toolbar {
    margin-right: -36px !important;
  }

  [dir="rtl"] .btn-bottom-toolbar .btn:first-child {
    margin-right: 5px !important;
  }

  [dir="rtl"] .btn-bottom-toolbar .btn-group .btn:first-child {
    margin-right: 0 !important;
  }

  [dir="rtl"] .btn-bottom-toolbar .btn {
    margin-right: 5px !important;
  }

  [dir="rtl"] .btn-bottom-toolbar .btn-group .btn {
    margin-right: 0 !important;
  }
}

table tbody tr .checkbox {
  margin-top: 0;
}

.project-info {
  margin-left: -20px;
  margin-right: -15px;
  margin-top: -10px;
  padding: 8px 22px;
}

.checklist-template-remove {
  position: absolute;
  right: 5px;
  top: 2px;
}

.task-single-checklist-templates {
  margin-top: -12px;
}

.checklist-items-template-select .checklist-item-template-remove {
  position: absolute;
  right: 17px;
  top: 10px;
}

.checklist-items-template-select.show-tick .checklist-item-template-remove {
  margin-right: 20px;
  margin-top: -2px;
}

[dir="rtl"] .task-info .task-info-icon {
  margin-left: 6px !important;
}

[dir="rtl"] .task-single-menu {
  left: 21px;
  right: inherit;
}

[dir="rtl"] .main-tasks-table-href-name {
  margin-left: 3px;
  margin-top: -2px;
}

[dir="rtl"] .task-table-related {
  margin-top: 5px;
  display: block;
}

[dir="rtl"] .task-table-related:before {
  content: "\a";
  white-space: pre;
}

.checklist.ui-sortable-helper.relative {
  position: inherit;
}

.checklist-item-info {
  margin: 5px 0 0 0;
}

.mobile .checklist-item-info {
  display: none;
}

body.system-popup {
  overflow: hidden;
}

.system-popup {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: #fff;
  z-index: 99999;
  text-align: center;
}

.system-popup .popup-wrapper {
  width: 60%;
  margin: 0 auto;
  display: table;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.system-popup .popup-content {
  margin-top: 25px;
  width: 100%;
}

.system-popup .popup-message {
  font-family: Helvetica;
  font-weight: 600;
  font-size: 38px;
}

.system-popup .system-popup-close {
  position: absolute;
  width: 30px;
  height: 30px;
  overflow: hidden;
  top: 30px;
  right: 150px;
  background: 0 0;
  border: 0;
  opacity: 0.3;
  outline: 0;
}

.system-popup .system-popup-close:hover::after,
.system-popup .system-popup-close:hover::before {
  background: #000;
  opacity: 1;
}

.system-popup .system-popup-close::after,
.system-popup .system-popup-close::before {
  content: "";
  position: absolute;
  height: 3px;
  width: 100%;
  top: 50%;
  left: 0;
  margin-top: -1px;
  background: #000;
}

.system-popup .system-popup-close::before {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.system-popup .system-popup-close::after {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

@media (max-width: 768px) {
  .system-popup .popup-wrapper {
    width: 100%;
  }

  .system-popup .popup-message {
    font-size: 18px;
    max-width: 100%;
  }

  .system-popup .close {
    right: auto;
  }
}

.nav.navbar-right .open > a,
.nav.navbar-right .open > a:focus,
.nav.navbar-right .open > a:hover {
  border-color: #535f6d;
}

.dashboard .goal {
  padding-bottom: 25px;
  margin-top: 25px;
}

.dashboard .goal:first-child {
  margin-top: 0;
}

.no-shadow {
  -webkit-box-shadow: none;
  box-shadow: none;
}

div[data-container] {
  min-height: 20px;
  min-width: 20px;
}

.preview-widgets .widget {
  display: none;
}

.placeholder-dashboard-widgets {
  border: 2px dashed #b9b9b9;
  margin-bottom: 25px;
  min-height: 130px;
}

.widget-dragger:before {
  content: "\f58e";
  font-family: "Font Awesome 6 Free";
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: var(--fa-display, inline-block);
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  text-rendering: auto;
  font-weight: 900;
}

.widget-dragger {
  position: absolute;
  top: 15px;
  left: -15px;
  color: #cbd5e1;
  cursor: move;
  z-index: 2;
}

.widget-dragger:active,
.widget-dragger:hover {
  color: #94a3b8;
}

.mobile .widget-dragger {
  display: none;
}

.screen-options-area {
  background: #f1f5f9;
  padding: 10px 30px 10px 30px;
  border-bottom: 1px solid #e2e8f0;
  display: none;
}

.screen-options-btn {
  position: absolute;
  background: #e2e8f0;
  color: #1e293b;
  padding: 5px 15px;
  display: inline-flex;
  align-items: center;
  right: 38px;
  z-index: 98;
  border-left: 1px solid #e2e8f0;
  border-right: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
  border-bottom-left-radius: 3px;
  border-bottom-right-radius: 3px;
  cursor: pointer;
  font-size: 13px;
}

[dir="rtl"] .screen-options-btn {
  right: auto;
  left: 38px;
}

.project_estimates .panel_s,
.project_invoices .panel_s,
.project_proposals .panel_s {
  box-shadow: none !important;
  border: 0;
}

.save_predefined_reply_from_message {
  clear: both !important;
  float: right !important;
  margin-top: 11px !important;
  margin-right: 18px !important;
  font-size: 13px !important;
  cursor: pointer !important;
}

.text-has-action {
  border-bottom: 1px dashed #bbb;
  padding-bottom: 2px;
}

.task-info-inline-input-edit {
  margin-top: -1px;
  background: #f8fafc;
  border: 0;
  outline: 0;
  box-shadow: none;
  border-bottom: 1px dashed #e2e8f0;
  width: 100%;
}

.tags-in-table-row {
  width: 100%;
  margin-top: 5px;
}

td.custom_field label:not(.cf-chk-label) {
  display: none;
}

td[align="left"],
th[align="left"] {
  text-align: left;
}

td[align="right"],
th[align="right"] {
  text-align: right;
}

td[align="center"],
th[align="center"] {
  text-align: center !important;
}

[dir="rtl"] td[align="left"],
[dir="rtl"] th[align="left"] {
  text-align: right !important;
}

[dir="rtl"] td[align="right"],
[dir="rtl"] th[align="right"] {
  text-align: left !important;
}

.elfinder-quicklook .ui-icon-gripsmall-diagonal-se,
.elfinder-quicklook-titlebar .ui-icon-circle-close {
  z-index: 99;
}

.elfinder-upload-dialog-wrapper .ui-button {
  padding: 6px !important;
  margin-left: 5px !important;
  margin-right: 5px !important;
}

.tasks-comments .mce-container.mce-panel {
  -webkit-box-shadow: none;
  box-shadow: none;
}

.items-select-wrapper > ._select_input_group select + button {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.subscription .dragger {
  background: 0 0;
  pointer-events: none;
}

.task-comment-dropzone {
  min-height: 120px;
  max-height: 120px;
  padding: 50px;
  margin-top: 10px !important;
  margin-bottom: 10px !important;
}

.task-comment .task-attachment-wrapper {
  margin-left: 0;
}

.task-comment .task-attachment-col {
  margin-left: 0;
  padding-left: 0;
}

.task-comment .task-attachment-col[data-num="1"],
.task-comment .task-attachment-col[data-num="2"] {
  margin-top: 15px;
}

.task-comment .task-attachment-col-more {
  display: block !important;
}

.task-comment .task-attachment-wrapper .task-attachment-user {
  display: none;
}

.task-comment .task-attachment {
  max-height: 135px;
  min-height: 135px;
  padding: 5px;
}

.gdpr-purpose {
  border: 1px solid #d8d8d8;
  padding: 15px;
  margin-bottom: 10px;
  border-radius: 8px;
}

.gdpr-purpose .gdpr-purpose-heading {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 16px;
  font-weight: 500;
  color: #5a5a5a;
}

#th-consent {
  min-width: 150px;
}

body.media {
  margin-top: 0 !important;
  overflow: inherit;
  zoom: initial;
}

.tinymce-mobile-toolstrip
  .tinymce-mobile-toolbar:not(.tinymce-mobile-context-toolbar)
  .tinymce-mobile-toolbar-group:first-of-type,
.tinymce-mobile-toolstrip
  .tinymce-mobile-toolbar:not(.tinymce-mobile-context-toolbar)
  .tinymce-mobile-toolbar-group:last-of-type {
  background: #2563eb !important;
}

.mce-menubar .mce-menubtn.mce-active,
.mce-menubar .mce-menubtn:focus,
.mce-menubar .mce-menubtn:hover {
  border-radius: 8px;
}

[dir="rtl"] .input-group-select .inner.open {
  overflow-y: initial !important;
}

[dir="rtl"] .bs-searchbox input {
  margin-bottom: 10px;
}

.gpicker {
  opacity: 0;
}

.gpicker {
  height: 14px;
  font-family: Inter, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 11px;
  color: #4c4c4c;
  text-decoration: none;
  padding: 1px 7px 5px 3px;
  border: 1px solid #ebebeb;
  border-radius: 2px;
  border-bottom-color: #d4d4d4;
  background: #fcfcfc;
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(#fcfcfc),
    to(#f5f5f5)
  );
  background: linear-gradient(to bottom, #fcfcfc 0, #f5f5f5 100%);
  line-height: 18px !important;
  text-decoration: none !important;
  box-sizing: content-box !important;
  -webkit-box-sizing: content-box !important;
  -moz-box-sizing: content-box !important;
}

.ticket-submitter-info {
  word-wrap: break-word;
}

.menu-badge {
  margin-left: 7px;
}

.read-more {
  overflow: hidden;
  max-height: 150px;
}

.mce-notification {
  z-index: 99999 !important;
}

.mce-content-body.tc-content ol,
.mce-content-body.tc-content ul {
  line-height: 18px;
}

.rte-autocomplete {
  z-index: 999999 !important;
}

.rte-autocomplete > li.loading {
  background: 0 0 !important;
  height: 16px;
}

span.mention {
  background-color: #eee;
  padding: 3px;
}

.fc-header-toolbar.fc-toolbar.fc-toolbar-ltr {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.fc-toolbar-chunk {
  margin: 5px 0;
}

#widget-calendar .fc-view,
.calendar .fc-view {
  overflow: hidden;
}

.unread-notification {
  background: #eff6ff;
}

.unread-notification:hover {
  background: #e0f2fe;
}

div[contenteditable]:focus {
  outline: 0;
}

.bootstrap-select.task-action-select .btn-default,
.bootstrap-select.task-action-select.btn-default.active,
.bootstrap-select.task-action-select.btn-default:active,
.bootstrap-select.task-action-select.open > .dropdown-toggle.btn-default,
.bootstrap-select.task-action-select > .btn-default:hover {
  color: #64748b !important;
  font-size: 13.5px;
  margin-bottom: 0;
  margin-top: 0;
  box-shadow: none;
}

.bootstrap-select.task-action-select > .btn-default:hover {
  color: #1e293b !important;
}

.inline-field-new {
  color: #64748b;
}

.inline-field-new:active,
.inline-field-new:hover {
  color: #334155;
}

@media (min-width: 768px) {
  table.number-index-1 tbody > tr > td:first-child,
  table.number-index-1 thead > tr > th:first-child {
    text-align: center;
  }

  /* table.number-index-2 tbody>tr>td:nth-child(2), table.number-index-2 thead>tr>th:nth-child(2) {
    text-align: center;
} */
  /* table.number-index-2 tbody>tr>td:nth-child(2) {
    padding-right: 30px;
} */
}

.mobile #header,
.mobile #wrapper {
  margin-left: 0;
}

@media (max-width: 768px) {
  [dir="rtl"] ul.mobile-icon-menu .dropdown-menu {
    left: 0;
    right: auto;
  }
}

[dir="rtl"] #setup-menu .arrow,
[dir="rtl"] #side-menu .arrow {
  margin-left: 10px;
}

[dir="rtl"] #header,
[dir="rtl"] #wrapper {
  margin-left: 0;
  margin-right: 230px;
}

[dir="rtl"] .sidebar {
  right: 0;
  left: auto;
}

[dir="rtl"] body.hide-sidebar:not(.show-sidebar) .sidebar {
  margin-left: auto;
  margin-right: -230px;
}

[dir="rtl"] body.hide-sidebar:not(.show-sidebar) #header,
[dir="rtl"] body.hide-sidebar:not(.show-sidebar) #wrapper {
  margin-left: auto;
  margin-right: 0;
}

[dir="rtl"] body.page-small .sidebar {
  margin-left: auto;
  margin-right: -230px;
}

[dir="rtl"] body.page-small #wrapper {
  margin-left: 0;
  margin-right: 0;
}

[dir="rtl"] body.page-small.show-sidebar #header,
[dir="rtl"] body.page-small.show-sidebar .sidebar {
  margin-left: auto;
  margin-right: 0;
}

[dir="rtl"] body.page-small.show-sidebar #wrapper {
  margin-left: auto;
  margin-right: 230px;
}

#task_view_description.mce-content-body {
  background: #f8fafc;
  padding: 8px;
  border-radius: 4px;
}

.title-heading {
  font-size: 25px;
}

.status_box {
  padding: 30px;
  background: #fff;
  border: 1px solid rgb(255 255 255 / var(--tw-bg-opacity)) !important;
  border-radius: 0.375rem;
}

.heighlight {
  background: #efeded;
}

/* #table-leads tbody tr {
    cursor:  pointer;
} */
.screen-options-btn {
  display: none;
}

.p-0 {
  padding: 0 !important;
}

div#leadViewWrapper .row .col-lg-6 {
  min-height: 55px;
}

body .lead-info-heading:first-child {
  padding-left: 0 !important;
}

.lead-info-heading h4 {
  color: #0f172a;
  font-weight: 600;
  font-size: 20px !important;
  margin: 0 !important;
}

.lead-info-heading {
  background: transparent !important;
}

.leads_field-wrap {
  display: flex;
  align-items: center;
  font-size: 16px;
}

.leads_field-wrap .lead-field-heading {
  width: 200px;
  margin-top: 0;
}

.leads_field-wrap input.disable-input,
.leads_field-wrap textarea {
  background: #f7f7f7;
  padding: 8px 16px;
  font-weight: 500;
  width: calc(100% - 200px);
  border-radius: 6px !important;
}

textarea[name="clickable_content"] {
  resize: none;
}

textarea {
  resize: none;
}

.control-label,
#build-wrap label {
  font-size: 14px !important;
  font-weight: 500;
  line-height: 22px;
  margin-bottom: 5px;
  color: var(--black);
}

.cusFormBuilder#build-wrap .formbuilder-text label,
.cusFormBuilder#build-wrap .formbuilder-textarea label,
.cusFormBuilder#build-wrap .formbuilder-number label {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 16px;
  font-size: 13px !important;
  font-weight: 400 !important;
  line-height: 20px !important;
}

.cusFormBuilder .formbuilder-select label {
  display: none;
}

.sidebar .arrow,
.sidebar .fa-angle-right {
  flex: 1;
  text-align: right;
}

.sidebar .active > a > .fa.fa-angle-right:before {
  content: "\f107";
}

aside#menu .nav > li > a > img {
  height: 18px;
  width: 18px;
}

.panel,
.panel-body,
.panel_s {
  border-radius: 4px !important;
  box-shadow: none;
  overflow: hidden;
}

.panel-body,
.panel-footer,
.panel-heading,
.modal-header,
.modal-body {
  padding: 21px;
}

.deals .panel-body.scroll-panel-body {
  padding-right: 21px;
}

.panel,
.panel_s {
  border-color: var(--border-clr);
  margin-bottom: 11px;
}

.tw-font-500 {
  font-weight: 500;
}

.tw-text-base-24 {
  font-size: 24px;
}

.tw-text-base-20 {
  font-size: 20px !important;
}

.form-wrap.form-builder.controls-right {
  flex-direction: row-reverse;
}

.form-wrap.form-builder
  .frmb
  .form-field
  .form-group
  .radio-group
  .formbuilder-radio {
  display: flex;
  align-items: self-start;
}

.form-wrap.form-builder
  .frmb
  .form-field
  .form-group
  .radio-group
  .formbuilder-radio
  input {
  margin-top: 3px;
}

.form-wrap.form-builder .frmb .form-field .form-group {
  display: flex;
}

canvas#leads-monthly {
  height: 400px !important;
}

#botlink,
#toplink {
  display: none !important;
}

.btn.btn-secondary {
  border-radius: 4px;
  color: var(--black);
  background: transparent;
  padding: 5px 16px;
  border: 1px solid var(--black);
  text-transform: capitalize;
  font-weight: 400;
  font-size: 13px;
}

.btn.btn-primary,
.fc .fc-button-primary:disabled,
.fc .fc-button-primary {
  border-radius: 4px;
  color: var(--white) !important;
  background: var(--primary-color);
  padding: 5px 16px;
  font-weight: 400;
  font-size: 13px;
  border: 1px solid var(--primary-color);
  text-transform: capitalize;
  transition: all 0.3s;
}

.btn.btn-underline{
  font-weight: 400;
  font-size: 13px;
  text-decoration:underline !important;
  text-decoration: underline !important;
  padding: 0;
  color:var(--primary-color)
}
.fc .fc-button-disabled:disabled,
.fc .fc-button-disabled:hover{
  background-color: transparent !important;
  border-color: transparent !important;
}

.fc .fc-button-disabled:disabled .fc-icon{
  color: #A6A6A6;
}

.fc .fc-button-primary:focus{
  box-shadow: none;
}

.btn-primary:hover,
.btn-primary[disabled]:hover,
.fc .fc-button-primary:hover {
  background-color: var(--primary-hover);
  border-color: var(--primary-hover);
}

.btn-primary[disabled] {
  background-color: #008f5799;
  border-color: #008f5799;
}

.btn.btn-default {
  border-radius: 4px;
  font-weight: 400;
  font-size: 13px;
  text-transform: capitalize;
  background-color: var(--bg-color);
  border-color: var(--bg-color);
  transition: all 0.3s;
}

.btn.btn-default:hover {
  background-color: #e4e4e4;
  border-color: #e4e4e4;
}

.btn.btn-danger {
  border-radius: 4px;
  padding: 5px 16px;
  font-weight: 400;
  font-size: 13px;
  text-transform: capitalize;
  transition: all 0.3s;
}

.btn.btn-google{
  background: transparent;
    border: 1px solid #ababab;
    border-radius: 20px;
    padding: 9px 12px !important;
}

.btn.btn-google img{
  width: 20px;
}

.text-btn {
  color: var(--primary-color);
  font-size: 13px;
  font-weight: 600;
  background-color: transparent;
  border: none;
  font-family: var(--roboto);
  box-shadow: none !important;
}

.text-btn-dark {
  color: var(--black);
}

.btn-info,
.btn-danger,
a.btn.btn-default,
button.btn.btn-default {
  padding: 5px 16px;
}

.save-as-draft {
  padding: 9px 17px;
}

/* .btn.btn-primary.addRow,
.btn.btn-danger.addRow{
    padding: 6px 12px;
} */

.btn.btn-primary:focus,
.btn.btn-primary:active,
button.btn.btn-secondary:focus,
button.btn.btn-secondary:active,
.btn-default:focus,
.btn-default:active,
.btn-primary:active {
  outline: none;
  box-shadow: none !important;
}

.btn-primary:focus,
.btn-primary.focus,
.btn-primary:active {
  background: var(--primary-color) !important;
  border-color: var(--primary-color) !important;
}

.exportBtn a.btn.btn-secondary {
  padding: 12px;
  line-height: 14px;
}

.btn-primary.focus,
.btn-primary:focus {
  box-shadow: none;
}

.code-fotoer {
  border-radius: 0px 0px 10px 10px;
  border-top: 1px solid #e4e4e7;
  background: #f9f9fc;
}

.md-title {
  color: var(--black);
  font-size: 13px;
  font-weight: 600;
  line-height: 24px;
  margin: 0;
}

.md-subtitle {
  color: var(--black);
  line-height: 20px;
  font-size: 20px;
  font-weight: 600;
  margin: 0;
}

.lg-title,
.modal-title,
.swal2-title,
.jconfirm-title,
.fc-toolbar-title,
#datepicker-container .ui-datepicker .ui-datepicker-title {
  font-size: 15px !important;
  font-weight: 600 !important;
  line-height: 24px;
  margin: 0;
  color: var(--black);
}

.xl-title{
  font-size: 40px;
    font-weight: 600;
    line-height: 44px;
    margin-bottom: 5px;
    color: var(--black);
}
#datepicker-container .ui-datepicker .ui-datepicker-title,
.fc-toolbar-title{
  font-weight: 400 !important;
}

#datepicker-container .ui-datepicker .ui-datepicker-header:after{
  content:none;
}

.sm-title {
  color: var(--dark-clr);
  font-size: 20px;
  font-weight: 600;
  line-height: 42px;
}

.sm-subtitle {
  color: var(--dark-clr);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0px;
  line-height: 23px;
}

.md-text {
  color: #000;
  font-size: 16px;
  font-weight: 400;
  line-height: 21px;
}

.lg-text {
  color: #000;
  font-size: 18px;
  font-weight: 400;
  line-height: 38.8px;
}

.text-gray {
  color: #8a8a8d;
}

.text-algae-green {
  color: #22c55e;
}

.text-coral {
  color: #f55a5a;
}

.sm_card b {
  color: var(--dark-clr);
  font-family: var(--roboto);
  font-size: 38px;
  font-weight: 600;
  line-height: 32px;
}

.sm_card small {
  color: #71717a;
  font-family: var(--roboto);
  font-size: 14px;
  font-weight: 500;
  line-height: 18px;
  text-transform: uppercase;
}

span.dot_status {
  width: 10px;
  display: inline-block;
  height: 10px;
  border-radius: 100px;
  margin-right: 10px;
}

span.dot_status.e-violet {
  background: var(--primary-color);
}

span.dot_status.e-violet-light {
  background: #b66cff;
}

span.dot_status.magic-mint {
  background: #acffd6;
}

.sales-pie {
  background-color: #ff9282;
}

.support-pie {
  background-color: #a7bbff;
}

.others-pie {
  background-color: #ffe4af;
}

.sales-pie,
.support-pie,
.others-pie {
  width: 14px !important;
  height: 14px !important;
}

.dot_status_wrap {
  padding: 23px 10px;
}

.lead_manager .top_stats_wrapper {
  padding: 30px 25px;
  min-height: 140px;
  display: flex;
  align-items: center;
  height: 100%;
}

.lead_manager .col-md-2.sm_card .top_stats_wrapper {
  padding: 30px 15px;
}

.lead_manager .top_stats_others > div {
  flex-direction: column;
}

.lead_manager .top_stats_others b {
  font-size: 38px;
  font-weight: 600;
  line-height: 32px;
}

.lead_manager {
  margin-bottom: 40px;
  display: flow-root;
}

.lead_manager h4.md-title,
.active_lead h4.md-title {
  margin-bottom: 20px;
  font-size: 30px;
}

.active_lead .head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.sidebar li .nav-second-level li a:hover {
  color: var(--primary-color) !important;
}

.active_lead .head ul,
.active_lead .head ul li {
  display: flex;
  align-items: center;
  margin-bottom: 0;
}

.active_lead .head ul li {
  margin-left: 20px;
  color: var(--text-light2);
  font-size: 14px;
  font-weight: 400;
  line-height: 42px;
  font-family: var(--roboto);
}

.active_lead .head ul li img {
  height: 20px;
  margin-right: 10px;
}

table#table-leads {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

table#table-leads tbody td {
  cursor: pointer;
}

table#table-leads #th-number {
  width: 15px;
  padding: 10px;
}

table#table-leads tbody td:first-child {
  text-align: center !important;
}

.active_lead.row .panel_s .panel-body {
  padding: 0;
  overflow: hidden;
}

/* div#table-leads_wrapper .row:nth-child(1), div#table-leads_wrapper .row:nth-child(2), div#table-tickets_wrapper .row:nth-child(2) {
    display: none;
} */
.Last_active_lead .empty-wrapper {
  height: auto;
}

.Last_active_lead .empty-wrapper .empty-wrapper-content {
  width: auto;
}

body.app.admin .sidebar {
  background: #ffffff;
  padding-right: 0px;
  position: fixed;
  /* z-index: 999; */
}

.logo-wrapper {
  border-bottom: 1px solid var(--border-clr);
}

.logo-wrapper,
.sidebar ul.nav.metis-menu {
  padding-left: 50px;
}

#wrapper,
#header {
  padding-right: 50px;
}

aside#menu ul#side-menu li,
ul.nav.metis-menu li {
  margin-right: 12.5px;
}

/* 
.menu-item-deals>a>.menu-text:after,
.menu-item-appointments>a>.menu-text:after {
    content: "New";
    background-color: var(--primary-color);
    border-radius: 10px;
    padding: 3px 6px;
    color: var(--white);
    font-size: 10px;
    font-weight: 600;
    line-height: 24px;
    margin-left: 7px;
} */

body.app.admin .sidebar li a,
body.app.admin .sidebar li a:focus {
  padding: 8px 12px;
  color: var(--black);
  font-size: 13px;
  font-weight: 400;
  line-height: 1;
  display: flex;
  align-items: center;
  gap: 10px;
}

body.app.admin .sidebar .nav > li > a:hover,
body.app.admin .sidebar li.active > a,
ul.nav.nav-second-level li a:hover {
  color: #000;
  background: var(--bg-color);
}

ul.nav.nav-second-level {
  padding-left: 40px;
}

ul.nav.nav-second-level li a {
  padding: 5px 0 !important;
  color: var(--text-light) !important;
}

ul.nav.nav-second-level li a:hover {
  background-color: transparent !important;
}

ul.nav.nav-second-level li.active a {
  color: var(--black) !important;
}

body.app.admin .sidebar li.menu-item-leads.active > a {
  color: var(--dark-clr) !important;
  background: transparent !important;
}

body.app.admin .sidebar li.active > a[aria-expanded="true"],
body.app.admin .sidebar .nav > li > a:focus {
  background: transparent;
}

body.app.admin .sm\:tw-bg-neutral-900\/50 {
  background: #fff;
}

span[class^="lead-status-"].label,
span.label.label-success,
span.label.label-danger,
span.label.label-warning,
span[class^="ticket-status-"].label {
  border: none !important;
  background-color: #5757571f !important;
  width: 100%;
  padding: 5px 9px;
  font-size: 13px;
  font-weight: 500;
  line-height: 1rem;
  color: var(--black) !important;
  position: relative;
  border-radius: 14px;
}

.custom-dropdown{
  background-color: #5757571f !important;
  border-radius:2px !important;
  padding: 5px 9px;
  font-size: 13px !important;
  line-height: 1rem !important;
}


#table-leads_wrapper span[class^="lead-status-"].label>span{
  font-weight: 400;
}

span.label.label-success,
span.label.label-danger,
span.label.label-warning {
  width: auto;
}

.equal_col span.label.label-success,
.equal_col span.label.label-danger,
.equal_col span.label.label-warning {
  width: auto;
}

span[class^="lead-status-"].label .dropdown,
.select-assignee .dropdown {
  position: absolute;
  right: 0;
  width: calc(100% - 9px);
  right: 9px;
}

span.label .dropdown a,
.custom-dropdown .dropdown a{
  font-size: 10px !important;
  color: #000 !important;
  text-align: right;
  width: 100%;
  display: block;
}

.select-assignee .dropdown a {
  width: 100%;
  display: block;
  text-align: right;
}

li.onlykeys:first-child hr {
  display: none;
}

li.onlykeys hr {
  margin: 5px 0 7px 0;
}

li.onlykeys {
  margin-bottom: 2px;
  font-weight: 500;
  color: #999999;
  font-size: 11px;
}

li.onlykeys span {
  display: block;
  margin-top: 12px !important;
  font-size: 10px;
  font-weight: 400;
  color: var(--text-light);
}

li.onlykeys:first-child span {
  margin-top: 0 !important;
}

ul.dropdown-menu.dropdown-menu-right li {
  padding: 5px 0;
}

ul.dropdown-menu.dropdown-menu-right li a {
  line-height: 12px;
  display: flex;
  align-items: center;
  color: var(--black) !important;
  padding: 4px 2px;
}

.dropdown-menu > .active > a {
  background: transparent;
}

.filter-dropdown.dropdown-menu > .active > a {
  background-color: transparent;
  position: relative;
}

.filter-dropdown.dropdown-menu > .active > a:after,
.filter-dropdown.dropdown-menu
  > .dropdown-submenu
  > .dropdown-menu
  > .active
  > a:after,
.filter-dropdown.dropdown-menu > .dropdown-submenu > a:after {
  content: "" !important;
  display: block;
  width: 4px;
  height: 8px;
  border: solid var(--primary-color);
  border-width: 0 1.5px 1.5px 0;
  transform: rotate(45deg);
  font-family: unset !important;
  margin-left: auto;
}

.filter-dropdown.dropdown-menu > .dropdown-submenu > a:after {
  float: unset;
  margin-right: unset;
  margin-top: unset;
  border-color: transparent transparent transparent #94a3b8;
  border-style: solid;
  border-width: 5px 0 5px 5px;
  transform: unset;
}

.leads-status-dropdown {
  padding: 24px 15px;
}

.leads-status-dropdown.dropdown-menu.dropdown-menu-right li a {
  padding: 0;
}

ul.leads-status-dropdown li a span[class^="lead-status-"].label {
  border-radius: unset;
  background-color: transparent !important;
  padding: 0 !important;
}

ul.dropdown-menu.dropdown-menu-right li a:hover {
  background: transparent;
}

/* span.lead-status-1.label,
span.lead-status-3.label,
span.lead-status-6.label,
span.lead-status-7.label
{
    color: var(--dark-clr) !important;
     background: transparent !important;
} */

.deal-status {
  background-color: #5757571f;
  border-radius: 2px;
  padding: 5px 11px;
  font-size: 13px;
  font-weight: 400;
  line-height: 24px;
  color: var(--black);
}

span[class^="lead-status-"].label::before,
span[class^="ticket-status-"].label::before,
.deal-status::before {
  content: "";
  display: inline-block;
  height: 8px;
  width: 8px;
  margin-right: 0.3rem;
  border-radius: 50%;
}

.deal-status::before {
  background-color: var(--primary-color);
  margin-right: 5px;
}

span.lead-status-1.label::before {
  background: var(--primary-color);
}

span.lead-status-3.label::before {
  background: #575757;
}

span.lead-status-4.label::before {
  background: #00c0f6;
}

span.lead-status-6.label::before {
  background: #ff9904;
}

span.lead-status-5.label::before {
  background: #ee004d;
}

span.lead-status-7.label::before {
  background: #7100e1;
}

span.ticket-status-1.label::before {
  background: var(--primary-color);
}

span.ticket-status-2.label::before {
  background: #f4ca9c;
}

span.ticket-status-3.label::before {
  background: #09a7b4;
}

span.ticket-status-4.label::before {
  background: #756585;
}

span.ticket-status-5.label::before {
  background: #eb4f79;
}

/* span.ticket-status-1.label,
span.ticket-status-2.label,
span.ticket-status-3.label,
span.ticket-status-4.label,
span.ticket-status-5.label{
    background: transparent !important;
    color: var(--text-light2) !important;
    border: none !important;
} */

.select-assignee {
  font-size: 13px;
  font-weight: 400;
  line-height: 24px;
  color: var(--black);
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  /* width: 80%; */
  margin: auto;
}

.select-assignee.lead-status-0 {
  color: var(--text-light);
}

span[class^="color_type_"],
span[class^="label label-default  s-status proposal-status-"],
.status-class span[class^="status_"] {
  padding: 6px 8px;
  border-radius: 2px;
  font-size: 13px;
  font-weight: 500;
  line-height: 1rem;
  color: var(--text-light);
}

span[class^="label label-default  s-status proposal-status-"],
td span.label.label-success {
  display: inline;
  border: none;
  border-radius: 14px !important;
}
.label-info {
  padding: 6px 8px;
  font-size: 13px;
}

.color_type_sales,
.proposal-status-1,
span.status_draft {
  background: rgba(245, 164, 0, 0.12);
}

.color_type_identified,
.proposal-status-1,
span.status_draft {
  background: rgba(245, 164, 0, 0.12);
}

.proposal-status-1,
span.status_draft {
  background: rgba(245, 164, 0, 0.12);
}

.color_type_support,
.proposal-status-2 {
  background: rgba(0, 174, 106, 0.12);
}

.color_type_others,
.proposal-status-6,
span.status_open {
  background: rgba(0, 192, 246, 0.12);
}

.color_type_manual{
  background: #8e44ad1f;
}

.color_type_identifier{
  background: #ff57331f
}

span.status_paid {
  background: var(--primary-color);
  color: var(--white) !important;
}
span.status_void {
  background: var(--danger-clr);
  color: var(--white) !important;
}

span[class^="label label-success  s-status proposal-status-"] {
  border-radius: 2px !important;
  line-height: 24px !important;
  display: inline;
}

td.status-class {
  text-align: center !important;
}

thead tr th,
thead tr td {
  padding-top: 10px !important;
  padding-bottom: 10px !important;
}

td span.label.label-success,
td span.label.label-danger {
  padding: 6px 8px !important;
}

tr.has-row-options td.sorting_1 {
  /* display: flex; */
  align-items: left;
}

.onoffswitch-label:before {
  right: 13px;
}

.onoffswitch {
  width: 32px !important;
  /* margin: 0 auto; */
}

/* table .onoffswitch{
    margin: 0 auto;
} */
.optionsWrap {
  margin-left: 10px;
}

table .row-options {
  /* margin: 5px 0 0 0!important; */

  padding: 0;
  line-height: 16px;
}

span.label.label-success {
  color: #135038 !important;
  background: #8cffd2 !important;
}

span.label.label-danger {
  color: var(--red-clr) !important;
  background: #ffbaba !important;
}

span.label.label-warning {
  color: #ca8a04 !important;
  background: #fefce8 !important;
}

.sidebar ul.nav-second-level li a {
  display: flex !important;
  align-items: center;
  margin: 2px 0 0 !important;
}

.sidebar li .nav-second-level li.active a,
.sidebar li .nav-second-level li a:hover {
  margin-left: 0;
  display: block;
  background: transparent !important;
}

.sidebar li .nav-second-level a .menu-icon {
  margin-right: 11px;
  font-size: 11px;
  margin-left: 3px;
  opacity: 1 !important;
}

body.hide-sidebar .sidebar .collapse.in li.active > a {
  background: transparent !important;
}

.top_stats_wrapper span.tw-truncate {
  color: #71717a !important;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 500;
}

.sidebar
  li
  .nav-second-level
  li.sub-menu-item-active-leads
  i.fa-solid.fa-circle.menu-icon {
  color: #81e8c3;
}

.sidebar
  li
  .nav-second-level
  li.sub-menu-item-closed-leads
  i.fa-solid.fa-circle.menu-icon {
  color: #e88181;
}

.sidebar
  li
  .nav-second-level
  li.sub-menu-item-disputed-leads
  i.fa-solid.fa-circle.menu-icon {
  color: #e8cb81;
}

/* ul#side-menu li.menu-item-dashboard i.fa.fa-home.menu-icon {
    background: #81E8C4;
    color: #fff;
    width: 20px;
    height: 20px;
    border-radius: 2px;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
} */

/* Table Start */

.cus_table_wrap table.dataTable {
  width: 100% !important;
}

body.app.admin.leads .table-responsive,
.cus_table_wrap .table-responsive {
  margin: 0;
}

body.app.admin.leads .active_lead .panel-body,
.cus_table_wrap.panel-body {
  padding: 0;
  overflow: hidden;
}

body.app.admin.leads .active_lead table.dataTable,
.cus_table_wrap table.dataTable {
  margin: 0 !important;
}

table.dataTable thead > tr > th {
  background-color: #f5f5f5;
}

/* .active_lead .table.dataTable>thead:first-child>tr:first-child>th, 
table.dataTable thead>tr>th, .cus_table_wrap .table.dataTable>thead:first-child>tr:first-child>th, 
.cus_table_wrap table.dataTable thead>tr>th {
    border-top: 0 !important;
} */
table.dataTable thead > tr > th:not(:last-child),
.cus_table_wrap table.dataTable thead > tr > th:not(:last-child) {
  border-right: 0 !important;
}

.dataTables_wrapper .row:last-child,
.cus_table_wrap .row:last-child {
  margin-right: 0px !important;
  margin-left: 0px !important;
  display: flex;
  align-items: center;
  padding: 25px 0 10px !important;
}

#messageTable_wrapper.dataTables_wrapper .row:first-child,
#messageTable_wrapper.dataTables_wrapper .row:last-child {
  display: none;
}

.panel-body .dataTables_wrapper .row:last-child {
  padding-bottom: 0 !important;
}

.dataTables_wrapper div.dataTables_info,
.cus_table_wrap div.dataTables_info {
  margin: 0;
  padding: 0;
  color: var(--text-light2);
  font-family: var(--roboto);
  font-size: 14px;
  font-weight: 400;
  line-height: 1px;
}

.dataTables_wrapper .row:last-child div#table-leads_info {
  margin: 0;
  padding: 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
  color: #746674;
}

.dataTables_wrapper .row:last-child .col-md-8.dataTables_paging {
  margin: 0;
}

.dataTables_wrapper .table-responsive,
.table-responsive-custom {
  /* border-bottom: 1px; */
  border-color: rgba(226, 232, 240, 0.7);
  border-style: solid;
}

.table-responsive-custom{
  min-height: .01%;
  overflow-x: auto;
}

.dataTables_wrapper div.dataTables_paging,
.cus_table_wrap div.dataTables_paging {
  margin-top: 0;
}

.dataTables_wrapper div.dataTables_paginate,
.cus_table_wrap div.dataTables_paginate {
  padding-right: 0;
}

div.dataTables_wrapper div.dataTables_paginate {
  padding: 0;
}

div.dataTables_wrapper div.dataTables_processing{
  font-weight: 700;
  background: var(--white);
}

div#InvoiceTable_wrapper .row:first-child {
  display: none;
}

div.dataTables_wrapper div.dataTables_filter label {
  margin-bottom: 0;
}

div.dataTables_wrapper div.dataTables_filter {
  text-align: left;
}

#deals-table div.dataTables_wrapper div.dataTables_filter {
  text-align: right;
}

/* div#InvoiceTable_wrapper .row:last-child .col-sm-5,
div#staffsTable_wrapper .row:last-child .col-sm-5 {
    padding-left: 15px !important;
} */
div#InvoiceTable_wrapper .row:last-child .col-sm-5 div#InvoiceTable_info {
  padding: 0;
  margin: 0;
}

.content.table_nop .panel-body {
  padding: 0;
}

.content.table_nop .panel-table-full .dataTables_wrapper .table-responsive {
  margin-left: 0;
  margin-right: 0;
  margin-bottom: 0;
}

.panel-table-full .dataTables_wrapper .table-responsive {
  margin-bottom: 0 !important;
  border-bottom: 0;
}

.panel-table-full
  #chatHistoryTable_wrapper.dataTables_wrapper
  .table-responsive {
  margin-left: 0;
  margin-right: 0;
}

#chatHistoryTable_wrapper {
  display: none;
}

.content.table_nop div.dataTables_wrapper div.dataTables_info {
  margin-top: 0;
  padding-top: 0;
}

.content.table_nop .panel-body .table_summary_info {
  padding: 1.5rem 1.5rem 0 1.5rem;
}

div.dataTables_wrapper div.dataTables_info {
  margin-top: 0;
  padding-top: 0;
}

.app_dt_empty .dataTables_info, .app_dt_empty .dataTables_paginate, .app_dt_empty table tfoot{
  display:block;
}

#appointmentTable_wrapper.dataTables_wrapper .row:nth-child(2) {
  margin-bottom: 0;
}

/* #appointmentTable_wrapper .row:nth-child(2) .col-sm-12{
    overflow: auto;
} */

/* #deals-table #DataTables_wrapper .table-responsive{
    margin: 0 -23px;
} */

/* Table End */

.welcome-section {
  max-width: 920px;
}

.welcome-section .panel,
.welcome-section .panel-body,
.welcome-section .panel_s {
  border-radius: 10px;
}

.onboard-head,
.onboard-head > img {
  margin-bottom: 3.5rem;
}

.onboard-head .md-subtitle {
  font-weight: 600;
  margin-bottom: 20px;
}

.onboard-head .md-text {
  color: var(--text-light2);
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
}

.onboard-panel-head .tw-flex,
.disable-panels .tw-flex {
  padding-bottom: 1.2rem;
  padding-top: 1.2rem;
}

.sticky-top {
  padding: 0 0 50px;
  z-index: 99999 !important;
}

.proposals.new_proposal .sticky-top,
.proposals.proposal .sticky-top{
  padding: 0 0 10px;
}

.sticky-top-offset {
  position: sticky;
  top: 22px;
}

.overflow-unset {
  overflow: unset;
}

#progressbar,
#progressbar-finished {
  overflow: hidden;
  max-width: 700px;
  margin: 0 auto 0px;
  padding-left: 0;
  counter-reset: progressbar;
}

#progressbar li,
#progressbar-finished li {
  width: 25%;
  float: left;
  position: relative;
  text-align: center;
  color: #444444;
  font-size: 17px;
  font-weight: 400;
  line-height: 21px;
  list-style: none;
}

#progressbar.progress-3 li,
#progressbar-finished.progress-3 li {
  width: 33.333333%;
  margin: 0 0 1.2em;
}

#progressbar.progress-2 li,
#progressbar-finished.progress-2 li {
  width: 50%;
}

#progressbar li:before,
#progressbar-finished li:before {
  content: counter(progressbar);
  width: 36px;
  height: 36px;
  line-height: 20px;
  font-size: 17px;
  display: block;
  /* font-weight: 700; */
  background: var(--white);
  border-radius: 50%;
  z-index: 1;
  position: relative;
  margin: 0 auto 5px auto;
  border: 2px solid #666;
  counter-increment: progressbar;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
}

#progressbar li.completed-step:before,
#progressbar-finished li.completed-step:before {
  background-color: var(--primary-color) !important;
  content: "\f00c";
  color: var(--white);
  font-weight: 900;
  font-family: "Font Awesome 6 Free";
  border-color: var(--primary-color);
}

#progressbar li:after,
#progressbar-finished li:after {
  content: "";
  width: 78%;
  height: 5px;
  background: #e9e9e9;
  position: absolute;
  left: -39%;
  top: 15px;
  z-index: 0;
}
/* #proposal-wrapper #progressbar li:after,
#proposal-wrapper #progressbar-finished li:after {
  width: 65%;
} */

/* #proposal-wrapper #progressbar li:nth-child(3):after,
#proposal-wrapper #progressbar-finished li:nth-child(3):after {
  left: -59px;
} */

#progressbar li.active:after,
#progressbar-finished li.active:after {
  background: var(--primary-color);
}

#progressbar li.completed-step:after,
#progressbar-finished li.completed-step:after {
  background: var(--primary-color);
}

#progressbar li.active:before, 
#progressbar-finished li.active:before{
  border-color: var(--primary-color) !important;
  background-color: var(--primary-color) !important;
  color: var(--white) !important;
}


#progressbar li:first-child:after,
#progressbar-finished li:first-child:after {
  content: none;
}

/* #progressbar li.active + li:after,
#progressbar-finished li.active + li:after {
    background-color: var(--primary-color);
} */

/* #proposal-wrapper #progressbar-finished li.active + li:after  {
    background-color: var(--dark-clr2);
} */


label.onoffswitch-label {
  margin-bottom: 0;
}

.panel-table-full .dataTables_wrapper table.dataTable {
  margin-top: 0 !important;
}

.onoffswitch-checkbox:disabled + .onoffswitch-label {
  opacity: 1;
  background-color: #e4e4e7 !important;
  border-color: #e4e4e7 !important;
}

.onoffswitch-label {
  height: 20px;
}

.onoffswitch-checkbox:checked + .onoffswitch-label {
  background-color: var(--primary-color) !important;
  border-color: var(--primary-color) !important;
}

.onoffswitch-label,
.onoffswitch-label:before {
  border-radius: 2rem;
}

.tickets-page.tickets .panel-body {
  padding: 0;
}

.tickets-page.tickets .panel-table-full .dataTables_wrapper .table-responsive {
  margin-left: auto;
  margin-right: auto;
}

.onoffswitch-checkbox:checked + .onoffswitch-label:before {
  border-color: var(--primary-color) !important;
}

.onoffswitch-label:before {
  height: 16px;
  width: 16px;
  top: 50%;
  transform: translateY(-50%);
  border: none;
}

.onoffswitch-checkbox:checked + .onoffswitch-label:before {
  right: 2px;
}

.welcome-step {
  color: var(--primary-color);
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 20px;
  border: 1px solid var(--primary-color);
  border-radius: 50%;
  height: 20px;
  width: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f4eaff;
}

.welcome-section .welcome-step {
  height: 30px;
  width: 30px;
}

.onboard-panel-head .sm-title,
.disable-panels .sm-title {
  font-size: 16px;
  line-height: 24px;
}

.onboard-panel-head > div > img,
.disable-panels > .panel-header > div > img {
  width: 50px;
}

.onboard-panel-head .lg-text,
.disable-panels .lg-text {
  color: #999;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}

.border-bottom-gray {
  border-bottom: 1px solid #f6f6fb;
}

.border-top-gray {
  border-top: 1px solid #f6f6fb;
}
.border-bottom-primary {
  border-bottom: 1px solid var(--border-clr);
}

.border-top-primary {
  border-top: 1px solid var(--border-clr);
}

.border-primary {
  border: 1px solid var(--primary-color);
}

.border {
  border-radius: 5px;
  border: 1px solid #d9d9d9;
}

.border-dash {
  border-radius: 6px;
  border: 2px dashed #e4e4e7;
}

.lead-attachment-wrapper a.text-danger {
  color: #999999 !important;
}

.chart_info {
  background: #f6f6fb;
  padding: 10px 20px;
  display: flex;
  margin-bottom: 20px;
  border-radius: 6px;
}

.chart_info div {
  padding: 0;
}

.chart_info .tw-items-baseline {
  font-size: 18px !important;
}

.chart_info span.tw-truncate {
  font-size: 12px !important;
  color: #777777 !important;
}

.w-10 {
  width: 10%;
}

.w-20 {
  width: 20%;
}

.w-30 {
  width: 30%;
}

.w-40 {
  width: 40%;
}

.w-40 {
  width: 40%;
}

.w-50 {
  width: 50%;
}

.w-60 {
  width: 60%;
}

.w-70 {
  width: 70%;
}

.w-80 {
  width: 80%;
}

.w-90 {
  width: 90%;
}

.w-100 {
  width: 100%;
}

.tl_chart {
  border-right: 1px solid #e4e4e7;
  padding-right: 30px;
  margin-right: 30px;
}

/* form#lead-attachment-upload {
    min-height: 140px !important;
    border: 1px dashed #E4E4E7;
    background: #F8F2FD;
} */
canvas#total_lead_pie {
  width: 140px !important;
  height: 140px !important;
  margin: -7px 0 0px;
  display: flex !important;
  align-items: center;
}

.top_stats_wrapper.chart-card {
  display: flex;
  align-items: center;
}

.table.proposal-items-preview.dataTable
  > thead:first-child
  > tr:first-child
  > th,
table.proposal-items-preview.dataTable tbody td {
  padding: 0px 5px !important;
  background: #e9e9e9;
  line-height: 24px !important;
  font-size: 17px !important;
  color: #444444 !important;
}

table.proposal-items-preview.dataTable tbody td,
#proposal-wrapper .amount-due {
  background: #e9e9e959;
  line-height: 24px !important;
}

.table.dataTable > thead:first-child > tr:first-child > th,
table.dataTable thead > tr > th {
  color: var(--black) !important;
  font-family: var(--roboto);
  font-size: 13px !important;
  font-weight: 500;
  line-height: 1;
  position: relative;
  border-top: 1px solid var(--border-clr) !important;
  border-bottom: 1px solid var(--border-clr) !important;
  text-transform: capitalize;
  position: sticky;
  top: 0;
  z-index: 99;
}

#proposal-wrapper table.dataTable > thead:first-child > tr:first-child > th,
#proposal-wrapper table.dataTable thead > tr > th {
  font-weight: 600;
  border-bottom: none !important;
  border-left-width: 1px;
}

#proposal-wrapper
  .table.dataTable
  > thead:first-child
  > tr:first-child
  > th:first-child,
#proposal-wrapper
  .table.dataTable
  > thead:first-child
  > tr:first-child
  > th:nth-child(3),
#proposal-wrapper
  .table.dataTable
  > thead:first-child
  > tr:first-child
  > th:nth-child(4),
#proposal-wrapper table.dataTable tbody tr td:first-child,
#proposal-wrapper table.dataTable tbody tr td:nth-child(3),
#proposal-wrapper table.dataTable tbody tr td:nth-child(4) {
  display: none;
}

.table.dataTable > thead:first-child > tr:first-child > th:first-child,
.product_table.table.dataTable
  > thead:first-child
  > tr:first-child
  > th:nth-child(2) {
  border-left: 1px solid var(--border-clr) !important;
  border-radius: 4px 0 0 4px;
}

.proposal-items-preview.table.dataTable > thead:first-child > tr:first-child > th:nth-child(2){
  border-radius: 12px 0 0 0;
}

.table.dataTable > thead:first-child > tr:first-child > th:last-child {
  border-right: 1px solid var(--border-clr) !important;
  border-radius: 0 4px 0 0;
}

.proposal-items-preview.table.dataTable > thead:first-child > tr:first-child > th:last-child {
  border-radius: 0 12px 0px 0;
}

table.dataTable.proposal-items-preview tbody tr:first-child td:last-child,
#proposal-wrapper table.dataTable tbody tr:first-child td:nth-child(2),
#proposal-wrapper table.dataTable tbody tr:last-child td:nth-child(2),
table.dataTable tbody tr:last-child td:last-child {
  border-radius: 0;
}

#proposal-wrapper table.dataTable td {
  border: 1px solid #F3F3F5 !important;
  border-collapse: collapse !important;
}

#proposal-wrapper table.dataTable, 
#proposal-wrapper table.dataTable th{
  border:none !important;
}

#proposal-wrapper .table.proposal-items-preview.dataTable > tbody td:last-child{
  border-right: none !important;
}

#proposal-wrapper .table.proposal-items-preview.dataTable > tbody td:nth-child(2){
  border-left: none !important;
}

.table.dataTable > thead::after {
  content: "";
  display: block;
  height: 14px;
}

/* LAST COLUMN CENTER */

.table-staff.table.dataTable
  > thead:first-child
  > tr:first-child
  > th:last-child,
#call_log_table.table.dataTable
  > thead:first-child
  > tr:first-child
  > th:last-child,
#call_log_table.table.dataTable > tbody td:last-child,
#table-leads.table.dataTable
  > thead:first-child
  > tr:first-child
  > th:last-child,
#table-leads.table.table.dataTable > tbody td:last-child,
#deals-table
  .table.dataTable
  > thead:first-child
  > tr:first-child
  > th:last-child,
#deals-table .table.table.dataTable > tbody td:last-child,
#InvoiceTable.table.dataTable
  > thead:first-child
  > tr:first-child
  > th:last-child,
#InvoiceTable.table.table.dataTable > tbody td:last-child,
#InvoiceTable.table.dataTable
  > thead:first-child
  > tr:first-child
  > th:nth-last-child(2),
#InvoiceTable.table.table.dataTable > tbody td:nth-last-child(2),
#messageTable.table.dataTable
  > thead:first-child
  > tr:first-child
  > th:last-child,
#messageTable.table.table.dataTable > tbody td:last-child,
#all_email
  .table.dataTable
  > thead:first-child
  > tr:first-child
  > th:last-child,
#all_email .table.table.dataTable > tbody td:last-child,
#staffsTable.table.dataTable
  > thead:first-child
  > tr:first-child
  > th:last-child,
.lead-management-table.table.dataTable > tbody td:last-child,
.lead-management-table.table.dataTable
  > thead:first-child
  > tr:first-child
  > th:last-child,
.table-with-actions.table.dataTable > tbody td:last-child,
.table-with-actions.table.dataTable
  > thead:first-child
  > tr:first-child
  > th:last-child,
.table-affiliates.table.dataTable
  > thead:first-child
  > tr:first-child
  > th:last-child {
  text-align: center;
}

.table-staff.table.dataTable > tbody td:last-child .onoffswitch,
#staffsTable.table.table.dataTable > tbody td:last-child .onoffswitch,
.table-affiliates.table.dataTable > tbody td:last-child .onoffswitch {
  margin: 0 auto;
}

/* HIDE SEARCH ROW TABLES*/

/* table.dataTable thead th.sorting_asc:after, table.dataTable thead th.sorting_desc:after,
table.dataTable thead th.sorting:after, table.dataTable thead th.sorting_desc:after
{position: absolute;
top: 50%;
transform: translateY(-50%);
display:none
} */

table.dataTable thead th.sorting:after {
  border-radius: 4px;
  background-color: transparent;
  top: 50%;
  transform: translateY(-50%);
  opacity: 1;
  background-size: 14px;
  height: 15px;
  width: 15px;
}

table.dataTable tbody td,
table.dataTable tfoot td {
  color: var(--black) !important;
  font-size: 13px !important;
  font-weight: 400;
  line-height: 24px;
  vertical-align: middle;
  /* padding-right: 30px !important; */
  text-wrap: nowrap;
}

.proposal-content table.dataTable tbody td,
.proposal-content table.dataTable tfoot td {
  text-wrap: unset;
}

table.dataTable tbody td a {
  color: var(--black);
}

/* table.dataTable tbody td a{
    color: var(--text-light) !important;
} */

/* table.dataTable tbody td a, table tr td, table tr th, span.lead-status-1.label, span.lead-status-3.label, span.lead-status-6.label, span.lead-status-7.label{
    color: var(--text-light2) !important;
} */

table.dataTable tbody td {
  border-bottom: 1px solid var(--border-clr);
  border-left: 1px solid var(--border-clr);
  border-top: 0 !important;
}

table.dataTable tbody tr:first-child td,
table.estimate-items-table.dataTable tbody tr:nth-child(2) td {
  border-top: 1px solid var(--border-clr) !important;
}


table.dataTable tbody tr:first-child td:first-child{
  border-top-left-radius: 4px;
}

table.dataTable tbody tr:first-child td:last-child {
  border-top-right-radius: 4px;
}

table.dataTable tbody tr:last-child td:last-child {
  border-bottom-right-radius: 4px;
}

table.dataTable tbody tr:last-child td:first-child{
  border-bottom-left-radius: 4px;
}

.table.dataTable > tbody td:last-child {
  border-right: 1px solid var(--border-clr);
}

/* table.dataTable tbody td a.tbl_edit {
    color: #7100E1 !important;
} */

table.dataTable tfoot {
  border-radius: 5px;
  background: #f9fbfd;
}

table.dataTable.product_table tfoot {
  background-color: transparent;
}

table.dataTable tfoot td {
  border: none;
}

/* .invoice p{
    color: var(--black);
font-family: var(--roboto);
font-size: 14px;
    font-weight: 400;
    line-height: 18px;
}

.invoice-detail h4{
    color: #2E2E2E;
font-family: var(--roboto);
font-size: 17px;
font-weight: 600;
line-height: 22px;
}

.invoice h5{

color: #000;
font-family: var(--roboto);
font-size: 18px;
font-weight: 400;
line-height: 20px; 
} */

.text-black {
  color: #000 !important;
}

.text-dark-grey {
  color: var(--dark-clr) !important;
}

.text-danger {
  color: var(--danger-clr) !important;
  display: inline-block;
  height: 10px;
  /* margin-left: 5px; */
}

.flex-3 {
  flex: 3;
}

.panel_s.panel-shadow.disable-panels:after {
  border-radius: inherit;
  content: "";
  height: 100%;
  width: 100%;
  left: 0;
  position: absolute;
  top: 0;
  background: #f6f6f6a3;
  display: block;
}

.panel_s.panel-shadow.completed-panels .welcome-step {
  background: var(--primary-color);
  color: #fff;
  font-size: 13px;
}

/* div.dataTables_wrapper .row:nth-child(1), #DataTables_Table_0_wrapper .row:nth-child(2) {
    display: none;
} */

.clients-table #DataTables_Table_0_wrapper .row:nth-child(2) {
  display: block;
}

.required-label {
  color: var(--black);
  font-size: 14px;
  font-weight: 500;
  line-height: 22px;
}

.required-label:after {
  content: "*";
  color: #ff0000;
}

.green_col {
  color: #00e117;
}

.red_col {
  color: #ef4747;
}

.userContact {
  /* padding: 1rem 1.5rem; */
  padding: 1rem 0;
  border-bottom: 0px solid #e2e8f0;
}

.lead-title {
  color: var(--dark-clr);
  font-family: var(--roboto);
  font-size: 20px;
  font-weight: 600 !important;
  line-height: 42px;
  margin: 0;
}

/* span.lead-status-7.label {
    padding: 0;
} */
.p-title {
  color: var(--text-light);
  font-size: 13px;
  font-weight: 400;
  line-height: 18px;
  margin-bottom: 0;
}

.p-title a {
  color: var(--primary-color);
  text-decoration: underline !important;
}

td.dataTables_empty,
.p-description,
.p-description a,
.proposal-html-info a,
.proposal-html-company-info a {
  color: var(--black);
  font-size: 13px;
  font-weight: 400;
  line-height: 18px;
  margin-bottom: 0;
}

.p-description a:hover {
  color: var(--primary-color);
}

.empty-wrapper-content .p-description a {
  text-decoration: underline !important;
}

.p-description strong {
  font-weight: 800;
}

.tw-gap-7 {
  gap: 2rem;
}

.tw-gap-7 {
  gap: 2rem;
}

.tw-gap-8 {
  gap: 3rem;
}

.tw-gap-9 {
  gap: 4rem;
}

.tw-gap-10 {
  gap: 5rem;
}

.single_lead_tabs .nav-tabs-horizontal {
  border-bottom: 0;
  margin-bottom: 0;
}

table .row-options {
  position: inherit;
  text-align: start;
}

table .row-options a {
  color: #b39999;
}

table .row-options a:hover {
  color: var(--dark-clr) !important;
}

.single_lead_tabs li a {
  font-size: 18px;
  font-weight: 500;
  line-height: 22px;
  color: var(--text-light2);
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 10px;
  margin-bottom: 20px !important;
}

.sum_box.tw-grid div {
  background-color: #f4f7fd;
  padding: 7px 14px;
  border-radius: 5px;
  border-right: 0;
}

.single_lead_tabs li.active a {
  color: var(--primary-color);
  opacity: 1;
}

.single_lead_tabs li.active > a,
.single_lead_tabs li.active > a:hover,
.single_lead_tabs li.active > a:focus {
  border-bottom: 2px solid var(--primary-color);
  color: var(--primary-color);
}

.question-wrapper {
  overflow-y: auto;
  max-height: 600px;
  padding-right: 10px;
  margin-right: -15px;
}

ul.nav.metis-menu::-webkit-scrollbar,
.table-responsive::-webkit-scrollbar,
.table-responsive-custom::-webkit-scrollbar,
.primary-scroll::-webkit-scrollbar,
.scroll-true::-webkit-scrollbar,
.sign-docs-text::-webkit-scrollbar,
.question-wrapper::-webkit-scrollbar,
#lead_notes textarea::-webkit-scrollbar,
.link-list::-webkit-scrollbar,
ul.progress-custom::-webkit-scrollbar,
.qa-list::-webkit-scrollbar,
#groupRecipientsTable_wrapper>.row>.col-sm-12::-webkit-scrollbar,
.fc .fc-scroller::-webkit-scrollbar,
.time-slot::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}

ul.nav.metis-menu::-webkit-scrollbar-track,
.table-responsive::-webkit-scrollbar-track,
.table-responsive-custom::-webkit-scrollbar-track,
.primary-scroll::-webkit-scrollbar-track,
.scroll-true::-webkit-scrollbar-track,
.sign-docs-text::-webkit-scrollbar-track,
.question-wrapper::-webkit-scrollbar-track,
#lead_notes textarea::-webkit-scrollbar-track,
.link-list::-webkit-scrollbar-track,
ul.progress-custom::-webkit-scrollbar-track,
.qa-list::-webkit-scrollbar-track,
#groupRecipientsTable_wrapper>.row>.col-sm-12::-webkit-scrollbar-track,
.fc .fc-scroller::-webkit-scrollbar-track,
.time-slot::-webkit-scrollbar-track  {
  background: #a517171a;
  border-radius: 4px;
}

ul.nav.metis-menu::-webkit-scrollbar-thumb,
.table-responsive::-webkit-scrollbar-thumb,
.table-responsive-custom::-webkit-scrollbar-thumb,
.primary-scroll::-webkit-scrollbar-thumb,
.scroll-true::-webkit-scrollbar-thumb,
.sign-docs-text::-webkit-scrollbar-thumb,
.question-wrapper::-webkit-scrollbar-thumb,
#lead_notes textarea::-webkit-scrollbar-thumb,
.link-list::-webkit-scrollbar-thumb,
ul.progress-custom::-webkit-scrollbar-thumb,
.qa-list::-webkit-scrollbar-thumb,
#groupRecipientsTable_wrapper>.row>.col-sm-12::-webkit-scrollbar-thumb,
.fc .fc-scroller::-webkit-scrollbar-thumb,
.time-slot::-webkit-scrollbar-thumb  {
  background: var(--primary-color);
  border-radius: 4px;
}

.main-chart {
  height: calc(100% - 40px);
}

.chat_bd .form-group label,
.charts-dots li,
#labelList li {
  color: var(--black) !important;
  font-size: 12px !important;
  font-weight: 400;
  line-height: 24px;
}

#labelList li > span strong {
  font-weight: 700;
}

.chat_bd .form-group label {
  line-height: 12px;
}

.chat_bd.main-chart {
  padding: 14px 16px;
}

.client_traffic_wrapper{
  padding: 14px 16px 30px !important;
}

.tooltip-custom {
  position: relative;
  display: inline-block;
}

.tooltiptext {
  visibility: hidden;
  background-color: var(--black);
  color: var(--white);
  text-align: center;
  border-radius: 4px;
  padding: 5px 10px;
  position: absolute;
  z-index: 1;
  bottom: calc(100% + 5px);
  left: 50%;
  transform: translateX(-50%);
  /* width: 100%; */
  opacity: 0;
  transition: opacity 0.3s;
  line-height: 20px;
}

.tooltip-custom:hover .tooltiptext {
  visibility: visible;
  opacity: 1;
}

.installColl .tooltiptext {
  min-width: 80px;
  bottom: calc(100% + 5px);
}

.overflow-visible {
  overflow: visible !important;
}

.month_wrap li {
  width: 33.33%;
  margin-bottom: 5px;
}

.collIcon {
  transform: rotate(180deg);
  transition: all 0.5s ease;
}

.activities-wrapper > .panel_s .collIcon {
  display: none;
}

.collIcon path {
  stroke: var(--black);
}

.panel-shadow.border-primary .collIcon {
  transform: rotate(0deg);
}

.code-inner {
  background: transparent;
  padding: 12px 17px;
  color: var(--black);
  word-break: break-all;
  border-radius: 6px;
  border: 1px solid #e4e4e7;
  font-size: 14px;
}

.form-group > .form-group.has-error {
  margin-bottom: 0;
}

.rendered-form {
  margin-top: 20px;
}

.rendered-form h1 {
  font-size: 15px;
  font-weight: 600;
  margin-top: 0;
  line-height: 24px;
  color: var(--black);
}
.rendered-form p {
  color: var(--text-light);
  font-size: 13px;
  font-weight: 400;
  line-height: 18px;
}

input.form-control,
select,
input,
.rendered-form.formbuilder-embedded-bootstrap .form-control,
.form-wrap.form-builder .frmb .form-field .form-group select,
.form-wrap.form-builder
  .frmb
  .form-field
  .form-group
  input:not(input[type="checkbox"], input[type="radio"]),
.form-wrap.form-builder .frmb .form-field .form-group textarea,
.form-wrap.form-builder
  .frmb
  .form-elements
  .input-wrap
  .fld-label.form-control {
  height: 32px !important;
  box-shadow: 0px 4px 4px 0px #00000008 inset !important;
  border-radius: 3px !important;
}

.form-wrap.form-builder .frmb .prev-holder input[type="email"]:focus,
.form-wrap.form-builder .frmb .prev-holder input[type="number"]:focus,
.form-wrap.form-builder .frmb .prev-holder input[type="text"]:focus,
.form-wrap.form-builder .frmb .prev-holder select:focus,
.form-wrap.form-builder .frmb .prev-holder textarea:focus,
[id^="frmb-"][id$="-form-wrap"] .frmb .form-elements .fld-label:focus,
[id^="frmb-"][id$="-form-wrap"] .frmb .form-elements input[type="color"]:focus,
[id^="frmb-"][id$="-form-wrap"] .frmb .form-elements input[type="date"]:focus,
[id^="frmb-"][id$="-form-wrap"] .frmb .form-elements input[type="number"]:focus,
[id^="frmb-"][id$="-form-wrap"] .frmb .form-elements input[type="text"]:focus,
[id^="frmb-"][id$="-form-wrap"] .frmb .form-elements select:focus,
[id^="frmb-"][id$="-form-wrap"] .frmb .form-elements textarea:focus {
  border-color: var(--border-clr) !important;
}

#rel_id_select > .dropdown.bootstrap-select {
  display: flex;
  flex-direction: column;
}

#rel_id_select > .dropdown.bootstrap-select > #rel_id-error {
  order: 1;
}

textarea {
  box-shadow: 0px 4px 4px 0px #00000008 inset !important;
}

.btn-default-dt-options {
  min-height: 32px;
}

.input-group.date.timepicker-wrapper{
  width: 100%;
}

.input-group.date i.fa-clock{
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 9999;
  pointer-events: none;
}

.input-group span.input-group-btn a.btn.btn-default {
  padding: 11px 15px;
}

.input-group-btn a.btn.btn-default {
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0 3px 3px 0;
}

.input-group-btn a.btn.btn-default.add_new_price {
  display: inline-flex;
}

.panel-footer {
  background-color: #fff;
  border-top: 0;
  padding-top: 0;
  padding-bottom: 21px;
}

input.form-control,
textarea.form-control,
select.form-control,
.select2-search__field {
  font-family: var(--roboto);
  font-size: 13px;
  font-weight: 400;
  line-height: 20px;
  color: var(--black) !important;
  border: 1px solid var(--border-clr);
  border-radius: 3px;
}

.bootstrap-select .dropdown-toggle:active,
.bootstrap-select .dropdown-toggle:focus,
.bootstrap-select.open > .dropdown-toggle,
.bootstrap-select.open > .dropdown-toggle:hover {
  border: 1px solid var(--border-clr);
}

.bootstrap-select .dropdown-menu li a:hover {
  background-color: var(--primary-color);
  color: var(--white);
}

.rendered-form.formbuilder-embedded-bootstrap .form-control {
  font-family: var(--roboto) !important;
  font-size: 13px !important;
  font-weight: 400 !important;
  line-height: 20px !important;
  color: var(--black) !important;
  border: 1px solid var(--border-clr) !important;
  border-radius: 3px !important;
}

.rendered-form.formbuilder-embedded-bootstrap textarea.form-control {
  overflow: hidden;
}

input.form-control:focus,
input[type="color"]:focus,
input[type="date"]:focus,
input[type="datetime-local"]:focus,
input[type="datetime"]:focus,
input[type="email"]:focus,
input[type="file"]:focus,
input[type="month"]:focus,
input[type="number"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="tel"]:focus,
input[type="text"]:focus,
input[type="time"]:focus,
input[type="url"]:focus,
input[type="week"]:focus,
select.form-control:focus,
textarea.form-control:focus {
  box-shadow: none !important;
  border-color: var(--black) !important;
}

.input-group-addon {
  border-color: var(--border-clr);
}

input.form-control::placeholder,
textarea::placeholder,
.select2-search__field::placeholder {
  color: var(--text-light) !important;
  font-size: 13px;
}

select.form-control,
.select2-container--default
  .select2-selection--single
  .select2-selection__arrow
  b {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url(/assets/images/icons/down-arrow.svg);
  background-repeat: no-repeat;
  background-position: right 10px center;
  padding-right: 30px;
  background-size: 10px;
}

.select2-container .select2-search--inline .select2-search__field {
  margin-top: 0 !important;
}

.code-fotoer input {
  width: 93%;
  font-weight: 400;
}

/* .code-fotoer button.btn.btn-primary, .tooltip-custom button.copy-btn {
    width: 115px;
} */
/* a.go_to_dashboard{
    background-color: transparent !important;
    border-color: transparent !important;
    color: #7100E1 !important;
} */
/* .tooltip-custom button.copy-btn,.code-fotoer button#sendScriptBtn {
    border-color: #7100E1;
    width: 44px;
    height: 32px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
} */
.load_more {
  display: none !important;
}

/* .chat-script-widget .home-summary .tooltip-btn .tooltip-custom button.btn {
    width: auto;
    padding: 9px 17px !important;
}  */

.code-inner code {
  color: #464646;
  background-color: transparent;
}

.bg_light_grey {
  background: #e7edf2;
}

.bg_light-grey {
  background: #e7edf2;
  padding: 0px 20px 0px 0px;
  border-radius: 6px 6px 0px 0px;
}

.read_wrap {
  border-radius: 0px 0px 6px 6px;
  border: 0px !important;
}

.bg_light-grey select:focus-visible {
  outline: none;
}

.lead-contacted-wrapper {
  width: 200px;
}

.no-border-select button {
  border: none;
  color: #2e2e2e;
  font-size: 16px !important;
}

.no-border-select button:focus,
.no-border-select button:hover,
.no-border-select button:active,
.no-border-select button:focus-visible {
  outline: none !important;
  box-shadow: none !important;
  background: transparent;
}

.toggle-wrapper {
  padding: 19px;
  height: 100%;
}

/* Report Date */
.reportDate {
  gap: 20px;
  align-items: end;
  width: 100%;
}

.reportDate .form-group {
  flex: 1;
}

.reportDate .form-control[readonly] {
  background-color: transparent;
}

table#report_lead {
  margin-top: 0 !important;
}

#report_lead tr td {
  cursor: pointer;
}

.reportDate label.sm-title {
  line-height: 20px !important;
}

/* .home-summary h4.md-title {
    margin-bottom: 15px;
} */
.alert.alertNote {
  border-radius: 4px;
  color: #f55a5a;
  font-size: 13px !important;
  /* background: #F55A5A; */
  padding: 10px 15px;
  display: flex;
  align-items: center;
}

.alert.alertNote svg {
  margin-right: 5px;
}

.alert.alertNote span a {
  color: var(--dark-clr);
  font-weight: 600;
  text-decoration-line: underline !important;
}

.toggler {
  position: relative;
  display: inline-block;
  width: 32px;
  height: 20px;
  margin-bottom: 0;
}

.toggler input {
  opacity: 0;
  width: 0;
  height: 0;
}

.toggler .toggle-slide {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--border-clr);
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.toggler .toggle-slide:before {
  position: absolute;
  content: "";
  width: 16px;
  height: 16px;
  left: 2px;
  bottom: 2px;
  background-color: white;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.toggler input:checked + .toggle-slide {
  background-color: var(--primary-color);
}

.toggler input:focus + .toggle-slide {
  box-shadow: 0 0 1px var(--primary-color);
}

.toggler input:checked + .toggle-slide:before {
  -webkit-transform: translateX(11px);
  -ms-transform: translateX(11px);
  transform: translateX(11px);
}

/* Rounded toggle-slides */
.toggler .toggle-slide {
  border-radius: 34px;
}

.toggler .toggle-slide:before {
  border-radius: 50%;
}

span.color_type {
  text-align: center;
  padding: 5px 15px;
  border-radius: 31px;
  background: #ead7ff;
  color: var(--primary-color);
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
}

table.dataTable tbody td:first-child {
  text-align: start !important;
}

table#table-tickets tbody td:first-child{
  width: 60%;
}

table#table-tickets tbody td:first-child a{
  word-break: break-all;
  white-space: break-spaces;
}

.infohas-row-options img.small_icon,
.has-row-options img.small_icon {
  width: 19px;
}

span.pro_img {
  margin-left: 5px;
  font-size: 13px;
  font-weight: 400;
  line-height: 1;
  color: var(--black);
}

.call_to_action p font b,
.call_to_action > p {
  font-size: 15px;
  font-weight: 600 !important;
  line-height: 24px;
}

/* .call_to_action p font, .call_to_action>p {
    color: var(--dark-clr);
} */
.breadcrumb > li {
  display: inline-block;
  display: flex;
  align-items: center;
  font-size: 13px;
  font-weight: 400;
  line-height: 20px;
  color: var(--text-light);
}

.breadcrumb li:last-child:before {
  font-weight: 400;
}

.breadcrumb li:last-child {
  color: var(--black);
}

.sblock label span {
  color: var(--dark-clr) !important;
  font-weight: 600 !important;
}

.sblock label span img {
  height: 25px;
  width: 25px;
  filter: grayscale(1);
}

span.circle_ticket {
  width: 7px;
  height: 7px;
  border-radius: 100%;
  margin-right: 7px;
}

.breadcrumb {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
  list-style: none;
  background-color: transparent;
  font-size: 14px;
}

/* .breadcrumb li a {
    color: var(--text-light2);
    font-size: 14px;
} */
.breadcrumb > li + li:before {
  padding: 0 11px;
  color: #8e878f;
  content: " ";
  font-size: 20px;
  background-image: url(/assets/images/icons/right-arrow.svg);
  height: 10px;
  width: 10px;
  background-size: 6px;
  background-repeat: no-repeat;
  background-position: center;
}

.breadcrumb li:last-child a {
  color: var(--dark-clr);
  font-weight: 500;
}

.table-export-exclude .dropdown-menu li a {
  font-weight: 400;
}

.breadcrumb-item + .breadcrumb-item::before {
  display: inline-block;
  padding-right: 0.5rem;
  padding-left: 0.5rem;
  color: #000;
  content: "-";
}

.breadcrumb-item,
.breadcrumb-item a {
  color: #000;
  font-family: "Readex Pro", sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 20px;
}

.breadcrumb-item.active {
  text-transform: capitalize;
}

.sign-docs-text {
  width: 100%;
  padding: 35px 35px 50px;
  max-height: 490px;
  border-radius: 4px;
  overflow-y: auto;
  background: var(--bg-color);
}

.sign-docs-text ol {
  list-style: decimal;
}

.sign-docs-text ol li {
  color: var(--text-light);
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 21px;
}

.sign-docs-text ol li:not(:last-child) {
  margin-bottom: 15px;
}

.primary-input label {
  color: var(--dark-clr);
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  margin-bottom: 0;
}

button#sig-clearBtn {
  background: transparent;
  color: #ff0000 !important;
  border-color: #ff0000;
}

button#sig-clearBtn:hover,
button#sig-clearBtn:focus {
  background-color: #ff0000 !important;
  border-color: #ff0000 !important;
  color: var(--white) !important;
}

.primary-input input[type="radio"],
.primary-input input[type="checkbox"],
#lead_notes input[type="radio"] {
  margin: 0px;
  height: 18px;
  width: 18px;
  accent-color: #7100e1;
}

#lead_notes label {
  color: var(--text-light2);
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}

.form-group.primary-input,
.form-group.primary-input {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  gap: 10px;
}

div#loaderWrapper {
  position: fixed;
  top: 0;
  left: 0;
  background: #ffffff94;
  height: 100vh;
  width: 100%;
  z-index: 9999;
}

div#loaderWrapper .loader {
  border: 6px solid #f3f3f3;
  border-top: 6px solid var(--primary-color);
  border-radius: 50%;
  content: "";
  width: 70px;
  height: 70px;
  animation: spin 2s linear infinite;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -60px;
  margin-left: -60px;
}

ul.todo {
  max-height: 350px;
  overflow-y: auto;
  padding-right: 10px;
}

ul.todo::-webkit-scrollbar {
  width: 5px;
}

ul.todo::-webkit-scrollbar-track {
  background: #f1f1f1;
}

ul.todo::-webkit-scrollbar-thumb {
  background: #e1e7ec;
}

ul.todo::-webkit-scrollbar-thumb:hover {
  background: #595959;
}

.todo-description {
  color: #000;
  margin-bottom: 3px;
  font-size: 14px;
  padding: 9px 10px 0 10px;
}

.todo-date {
  padding: 0 0 5px 0;
  font-size: 12px;
}

.tenant_script_form .dataTables_wrapper .row:nth-child(1),
.tenant_script_form .dataTables_wrapper .row:nth-child(2),
body.app.admin.staff div#DataTables_Table_0_wrapper .row:nth-child(1) {
  display: none;
}

.tenant_script_form .table-responsive,
body.app.admin.staff .table-responsive {
  margin-left: auto !important;
  margin-right: auto !important;
  margin-bottom: 0 !important;
}

.tenant_script_form .table-responsive table#DataTables_Table_0,
body.app.admin.staff .table-responsive table#DataTables_Table_0 {
  margin-top: 0 !important;
}

.tenant_script_form .panel-body.panel-table-full,
body.app.admin.staff .panel-body.panel-table-full {
  padding: 0;
}

.table > tbody > tr > td,
.table > tbody > tr > th,
.table > tfoot > tr > td,
.table > tfoot > tr > th,
.table > thead > tr > td,
.table > thead > tr > th {
  /* padding:8px !important; */
  text-align: start;
}

/* .table>thead>tr>th{
    padding:11px 8px !important;
} */

body.app.admin.staff div#DataTables_Table_0_wrapper .row:last-child,
.tenant_script_form .dataTables_wrapper .row:last-child {
  display: flex;
  align-items: center;
  padding: 14px 0 10px;
}

body.app.admin.staff
  div#DataTables_Table_0_wrapper
  .row:last-child
  div#DataTables_Table_0_info,
.tenant_script_form
  .dataTables_wrapper
  .row:last-child
  div#DataTables_Table_0_info {
  padding: 0;
  margin: 0;
}

body.app.admin.staff
  div#DataTables_Table_0_wrapper
  .row:last-child
  .dataTables_paging,
.tenant_script_form .dataTables_wrapper .row:last-child .dataTables_paging {
  margin-top: 0;
}

body.app.admin.staff
  div#DataTables_Table_0_wrapper
  .row:last-child
  .dataTables_paging
  div#DataTables_Table_0_paginate,
.tenant_script_form
  .dataTables_wrapper
  .row:last-child
  .dataTables_paging
  div#DataTables_Table_0_paginate {
  padding-right: 0;
}

/* table.dataTable tbody td:first-child {
    text-align: left;
} */

.note-editor.note-frame.panel.panel-default button.note-btn.btn.btn-default {
  padding: 2px 14px;
}

canvas#acquisitions,
canvas#leads-and-billable-bar-chart,
canvas#call-to-lead-conversion-chart {
  padding: 20px 0 0;
}

#lead_notes textarea {
  border-radius: 5px;
  overflow: auto;
  background: #f4f7fd99;
  resize: none;
  border: none;
  font-family: var(--roboto);
  color: var(--text-light2);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}

.note-editor.note-frame {
  margin-bottom: 0;
}

table td .text-has-action {
  border: none;
  padding: 0 !important;
}

textarea#description {
  resize: none;
}

.media.lead-note .staff-profile-image-small {
  height: 40px;
  width: 40px;
}

.media-heading {
  color: var(--black);
  font-size: 13px;
  font-weight: 500;
  line-height: 20px;
  word-break: break-all;
}

.media-heading-gray {
  color: var(--text-light);
  font-weight: 400;
}

.media-description {
  color: var(--text-light);
  font-size: 12px;
  font-weight: 400;
  line-height: 20px;
}

button.btn.btn-sm.tw-mt-6 {
  margin-top: 0;
}

.note-text {
  color: var(--black);
  font-family: var(--roboto);
  font-size: 12px;
  font-weight: 400;
  line-height: 18px;
  word-break: break-all;
}

.tc-content .note-text {
  font-size: 14px;
  font-weight: 400;
  line-height: 18px;
  letter-spacing: 0px;
  color: #18181b;
}

.lead_form_footer {
  display: flex;
  align-items: center;
  justify-content: end;
}

.tenant_form_footer {
  display: flex;
  align-items: center;
  justify-content: end;
}

.ts._buttons .btn-group a.btn.btn-primary.pull-left {
  border-radius: 4px;
}

.ts._buttons .btn-group a.btn.btn-default.btn-with-tooltip,
.ts._buttons .btn-group button.btn.btn-default.dropdown-toggle {
  border-radius: 0.375rem;
  width: 40px;
}

td.dataTables_empty {
  text-align: center !important;
  padding: 40px 0 0px 0 !important;
}

.checkbox label:after {
  /* top: -2px; */
  top: 0px;
}

.app_dt_empty .dataTables_length,
.app_dt_empty .dt-buttons,
.app_dt_empty table thead {
  opacity: 1 !important;
}

.dataTables_length {
  margin-bottom: 7px;
}

.active-dot,
.orange-dot,
.offline-dot {
  width: 10px;
  display: block;
  height: 10px;
  border-radius: 50%;
}

.active-dot {
  background: #20c8a7;
}

.orange-dot {
  background: #f4ca9c;
}

.offline-dot {
  background: #eb4f79;
}

.pagination {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 9px;
}

.pagination > a,
.pagination > a:focus,
.pagination > a:hover,
.pagination > span,
.pagination > span:focus,
.pagination > span:hover {
  border: none;
}

ul.pagination li a {
  border: none;
  border-radius: 2.9px;
  color: var(--text-light);
}

.dt-page-jump {
  display: none;
}

.dataTables_paging {
  padding-right: 0;
}

.paginate_button.previous a,
.paginate_button.next a {
  font-size: 0;
  background: var(--border-clr);
  height: 26px;
  width: 26px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pagination > .disabled > a,
.pagination > .disabled > a:focus,
.pagination > .disabled > a:hover,
.pagination > .disabled > span,
.pagination > .disabled > span:focus,
.pagination > .disabled > span:hover {
  background: var(--border-clr);
}

.paginate_button.previous a:before,
.paginate_button.next a:before {
  content: "";
  display: block;
  height: 20px;
  width: 20px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 10px;
}

.paginate_button.previous a:before {
  background-image: url(/assets/images/icons/pagination-prev.svg);
}

.paginate_button.next a:before {
  background-image: url(/assets/images/icons/pagination-next.svg);
}

.lead-right-bar .panel_s {
  margin-bottom: 0;
}

.custom-collapse {
  border: none;
}

.custom-collapse .lead_sm_heading {
  padding: 0;
}

.custom-collapse .lead_sm_heading h5 {
  font-size: 15px;
  font-weight: 600 !important;
  line-height: 1;
  color: var(--black);
  margin: 0;
  padding: 9px 0px !important;
  border-radius: 0 !important;
}

.custom-collapse:not(:first-of-type) .lead_sm_heading h5 {
  padding: 10px 0 !important;
}

.custom-collapse .lead_sm_heading h5.collapsed {
  border-bottom: 1px solid var(--border-clr);
}

.custom-collapse > div > .panel-body {
  padding: 20px 18px;
  border: 1px solid var(--border-clr);
  border-radius: 4px;
}

.display-block.lead-attachment-wrapper .col-md-2.text-right {
  padding-right: 0;
}

.display-block.lead-attachment-wrapper .col-md-10 a {
  color: var(--dark-clr);
  text-transform: capitalize;
  margin-left: 5px;
}

.lead-attachment-wrapper {
  border-bottom: 1px solid var(--border-clr);
}

.lead-attachment-wrapper:last-of-type {
  border: none;
}

.lead-attachment-wrapper {
  padding: 13px 0;
}

.deals-details .lead-attachment-wrapper {
  padding: 0;
}

.deals-details .lead-attachment-wrapper:not(:last-child) {
  padding-bottom: 10px;
  margin-bottom: 10px;
}

.lead-attachment-wrapper:last-of-type {
  padding-bottom: 0;
}

.lead-attachment-wrapper a {
  font-size: 13px;
  font-weight: 400;
  line-height: 24px;
  color: var(--black);
}

.paginate_button a {
  color: var(--text-light);
  font-family: var(--roboto);
  font-size: 13px;
  font-weight: 500;
  line-height: 13px;
}

.pagination > .active > a,
.pagination > .active > a:focus,
.pagination > .active > a:hover,
.pagination > .active > span,
.pagination > .active > span:focus,
.pagination > .active > span:hover {
  border-radius: 2.9px;
  background: var(--primary-color);
  font-weight: 700;
}

.paginate_button:not(.previous):not(.next) a {
  height: 26px;
  width: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
}

div#lead_attachments hr {
  display: none !important;
}

.display-block.lead-attachment-wrapper .col-md-10 {
  padding-left: 0;
}

/* input[type="search"]{
border-radius: 6px;
color: #999;
font-family: var(--roboto);
font-size: 16px;
font-weight: 400;
line-height: 24px;
padding: 10px 16px;
} */

.staff-profile-image-small {
  object-fit: cover;
}

.navbar-nav.navbar-right li a span.tw-rounded-md img {
  width: 21px;
}

.navbar-nav.navbar-right li a {
  padding-left: 0;
  padding-right: 0;
  color: var(--black);
}

/* ul.dropdown-menu.animated.fadeIn li a {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
} */
.navbar-nav.navbar-right li a > span {
  border-color: transparent;
  position: relative;
}

.icon-notifications {
  background-color: #cf313b;
  display: inline-block;
  height: 8px;
  width: 8px;
  top: 0px;
  right: -2px;
}

/* .navbar-nav.navbar-right li a:hover span {
    background-color: rgba(241,245,249,.6)!important;
} */
.navbar-nav.navbar-right li a:hover span.tw-text-xs.bg-warning {
  background-color: rgb(202 138 4 / var(--tw-bg-opacity)) !important;
}

.navbar-right {
  float: right !important;
  margin-right: -15px;
  margin: 0;
}

button.btn.btn-sm {
  padding: 5px 15px;
  font-size: 13px;
}

.equal_col {
  display: flex;
}

.website-truncate .p-description {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.equal_col:not(:last-child) p {
  margin-bottom: 12px;
}

#proposal-wrapper .equal_col:not(:last-child) p {
  margin-bottom: 10px;
}

#proposal-wrapper .equal_col .p-description {
  flex: unset;
}

.equal_col span[class^="lead-status-"].label,
.equal_col span[class^="ticket-status-"].label {
  background-color: transparent !important;
  padding: 0px;
}

.equal_col .p-title {
  width: 130px;
  flex-shrink: 0;
}

.equal_col .p-description {
  flex: 1;
  word-break: break-all;
}

.lead-right-bar h4.lead-title {
  margin: 0;
  font-size: 20px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 18px;
  margin-right: 10px;
}

/* .lead-user-contact a{
    background: rgba(113, 0, 225, 0.10);
    width: 36px;
    height: 36px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
} */
.equal_col:last-child {
  margin-bottom: 0;
}

/* div#addNote {
    margin-bottom: 30px;
} */
.mright15 {
  margin-right: 15px;
}

.note_sum {
  background: #f5f5f5;
  border-radius: 4px;
  padding: 14px;
  margin-bottom: 12px;
  border: 1px solid var(--border-clr);
}

.note_sum:last-of-type {
  margin-bottom: 0;
}

.lead_sm_heading span a {
  color: #7100e1;
  font-size: 14px;
  font-weight: 500;
}

.lead_sm_heading {
  border-bottom: 1px solid #e4e4e7;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 14px;
}

table thead tr th {
  font-size: 14px !important;
}

table tbody tr td {
  font-size: 14px !important;
}

/* table tbody tr:hover {
  background-color: #fffaf2;
} */

table tbody tr td a.valign {
  color: var(--dark-clr);
}

.leads-notes-form {
  height: 0;
  overflow: hidden;
  transition: all 0.5s;
}

.leads-notes-form.shown {
  height: auto;
}

form#lead-notes textarea#lead_note_description {
  height: 100px;
  padding-right: 80px;
  scrollbar-width: none;
}

.bdrtop .lead_sm_heading,
.bdrtop .lead_sm_heading {
  border-bottom: none;
}

.coll.lead_sm_heading h5.btn.btn-link svg.collIcon {
  transform: rotate(0deg);
}

.coll.lead_sm_heading h5.btn.btn-link.collapsed svg.collIcon {
  transform: rotate(180deg);
}

span.install_msg.green {
  display: inline-block;
  border: 1px solid green;
  padding: 3px;
  width: 100px;
  text-align: center;
  border-radius: 6px;
  color: green;
}

.collapse-body {
  padding: 4px 14px 14px;
  font-size: 13px;
  font-weight: 400;
  line-height: 15.23px;
  color: var(--black);
}

.activities-wrapper {
  padding-right: 11px;
  max-height: 800px;
  margin-right: -11px;
}

.activities-wrapper > .panel_s {
  margin-bottom: 12px;
  pointer-events: none;
}

.activities-wrapper > .panel_s:last-of-type {
  margin-bottom: 0;
}

.activity-collapse,
.collapse-body {
  background-color: #f5f5f5;
}

.coll.lead_sm_heading h5,
.activity-collapse.coll.lead_sm_heading .activity-header {
  padding: 0;
  width: 100%;
  display: flex;
  text-align: left;
  align-items: center;
  justify-content: space-between;
  font-weight: 500;
}

.activity-collapse.coll.lead_sm_heading .activity-header {
  align-items: start;
}

.activity-collapse.coll.lead_sm_heading .activity-header .activity-additional {
  font-size: 13px;
  font-weight: 500;
  line-height: 15.23px;
  color: var(--black);
  margin-bottom: 15px;
  gap: 5px;
  display: flex;
}

.activity-collapse.coll.lead_sm_heading
  .activity-header
  .activity-additional
  span {
  font-weight: 400;
  color: var(--text-light);
}

.activity-collapse.coll.lead_sm_heading .activity-header .activity-data {
  font-size: 12px;
  font-weight: 400;
  line-height: 14.06px;
  color: var(--text-light);
}

.activity-date-filter {
  font-size: 13px;
  font-weight: 500;
  line-height: 1;
  color: var(--black);
  margin-top: 1.25rem;
}

.activity-date-filter:first-of-type {
  margin-top: 0;
}

.coll.lead_sm_heading h5:hover {
  color: var(--dark-clr);
  text-decoration: none;
}

/* h4.invoice-html-number {
    color: var(--dark-clr);
    font-size: 16px;
    font-weight: 600;
    line-height: 30px;
    margin: 0;
} */
/* .invoice-html-bill-to, p.invoice-html-date span, p.invoice-html-duedate span {
    font-weight: 400 !important;
} */
/* .transaction-html-info-col-left address.invoice-html-company-info, 
.invoice-html-bill-to, 
.transaction-html-info-col-right p.invoice-html-date, 
.transaction-html-info-col-right p.invoice-html-duedate, 
.invoice-html-customer-billing-info, 
.total_amount .amount-due, 
.total_amount .total {
    color:#999;
    font-size: 14px;
    font-weight: 500;
    line-height: 24px; 
} */

.font-dark-sec,
.total_amount .total {
  color: var(--dark-clr);
}

table.dataTable thead .sorting_desc:after {
  content: "" !important;
}

table.dataTable thead > tr > td.sorting_asc,
table.dataTable thead > tr > td.sorting_desc,
table.dataTable thead > tr > th.sorting_asc,
table.dataTable thead > tr > th.sorting_desc {
  background: #f5f5f5;
}

/* .dataTables_wrapper thead>tr>th:first-child, .dataTables_wrapper tbody tr td:first-child {
    padding-left: 20px !important;
} */
/* span.lead-status-1.label, span.lead-status-2.label, span.lead-status-3.label, span.lead-status-4.label, span.lead-status-5.label, span.lead-status-6.label, span.lead-status-7.label, span.label.label-success, span.label.label-danger {
    padding: 0 !important;
} */
/* .dataTables_wrapper thead>tr>th:last-child, .dataTables_wrapper tbody tr td:last-child {
    text-align: center !important;
} */
/* @media (min-width: 768px){
    table.number-index-2 tbody>tr>td:nth-child(2), table.number-index-2 thead>tr>th:nth-child(2) {
        text-align: left !important;
    }
} */
table.table.items.items-preview.invoice-items-preview {
  margin-bottom: 0 !important;
  margin-top: 0 !important;
}

table.table.items.items-preview.invoice-items-preview
  > thead:first-child
  > tr:first-child
  > th {
  border: none !important;
}

i.fa-solid.fa-chevron-down {
  font-size: 8px;
}

/* table.table.items.items-preview.invoice-items-preview >thead th{
    color: var(--text-light2);
        font-size: 14px;
        font-weight: 500;
        line-height: 32px;
} */

/* .table.items thead {
    background: #f1f5f9;
    color: #1e293b;
} */

.table.items thead {
  background: transparent;
}

.total_amount {
  border-top: 1px solid #e4e4e7;
  display: flex;
  justify-content: flex-end;
  padding: 30px 20px 5px;
  gap: 10px;
  flex-direction: column;
}

.total_amount .amount-due,
.total_amount .total {
  gap: 29px;
  justify-content: flex-end;
}

/* table.table.items.items-preview.invoice-items-preview tr td, table.table.items.items-preview.invoice-items-preview tr td span strong {
    color: var(--text-light2) !important;
    font-size: 14px;
    font-weight: 400 !important;
    line-height: 32px;
} */

.empty_state_view h4 {
  color: var(--dark-clr);
  text-align: center;
  font-size: 20px;
  font-weight: 600;
  line-height: 24px;
  margin-bottom: 20px;
}

.empty_state_view p {
  color: var(--text-light2);
  text-align: center;
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
  padding: 8px 10px !important;
}

table.table.items.items-preview.invoice-items-preview tr th:last-child,
table.table.items.items-preview.invoice-items-preview tr td:last-child {
  padding-right: 20px !important;
}

.payment-foot {
  border-radius: 0px 0px 10px 10px;
  border-top: 1px solid #e4e4e7;
  background: #f9f9fc;
}

.chatStatus .active,
.chatStatus .active:hover {
  background: #7100e1;
  color: #fff;
  border-color: #7100e1;
}

.chatStatus li a {
  background: #fff;
  padding: 4px 10px;
  font-size: 13px;
  color: var(--dark-clr);
  border: 1px solid #e4e4e7;
}

.chatStatus li a:hover {
  color: #7100e1;
}

.chatStatus li:first-child a,
.chatStatus li:nth-child(2) a {
  border-right: 0;
}

.chatStatus li:first-child a {
  border-radius: 4px 0px 0px 4px !important;
}

.chatStatus li:last-child a {
  border-radius: 0px 4px 4px 0px;
}

/*CSS Starts 31-10-2023*/
/* .admin.reports input.start-date.flatpickr-input, 
.admin.reports input.end-date.flatpickr-input,
.admin.reports input.end-date {
    background-color: #F4F7FD;
    border: none;
    box-shadow: none;
    width: 120px;
    height: 32px;
    padding: 9px 15px;
}
.admin.reports .flatpickr-day.selected:hover,
.admin.reports .flatpickr-day.selected  {
    background: var(--primary-color);
}
.admin.reports .form-group.tw-flex.tw-items-center.tw-flex-wrap.tw-justify-between.tw-gap-7.panel_s.panel-shadow.toggle-wrapper, .admin.reports .form-group.tw-flex.tw-items-center.tw-flex-wrap.tw-justify-between.tw-gap-7.tw-mb-6.panel_s.panel-shadow.toggle-wrapper {
    height: 54px;
    padding-left: 15px;
    padding-top: 3px;
} */
/* .admin.reports input.btn.btn-primary {
    margin-top: 6px;
} */

.start-div,
.end-div {
  position: relative;
  /* background-color: #F4F7FD;
    border-radius: 4px;
    width: 120px; */
}

.reportDate img {
  position: absolute;
  top: 50%;
  right: 11px;
  transform: translateY(-50%);
}

.admin.reports .sm-title {
  font-size: 16px;
  line-height: 45px;
}

.admin.reports .flatpickr-calendar {
  top: 190px !important;
}

.flatpickr-calendar.hasTime.noCalendar{
  width: 270px;
}

.admin.reports
  .flatpickr-calendar
  .flatpickr-months
  .flatpickr-current-month
  .flatpickr-monthDropdown-months,
.admin.reports
  .flatpickr-calendar
  .flatpickr-months
  .flatpickr-current-month
  .numInputWrapper {
  font-size: 16px;
}

.admin.reports
  .flatpickr-calendar
  .flatpickr-months
  .flatpickr-current-month
  .numInputWrapper
  input {
  box-shadow: none;
}

.admin.reports .flatpickr-months .flatpickr-prev-month:hover svg,
.flatpickr-months .flatpickr-next-month:hover svg {
  fill: var(--white) !important;
  background-color: var(--primary-hover);
}

.admin.reports .flatpickr-calendar .flatpickr-months {
  justify-content: space-around;
  align-items: center;
  padding: 12px;
}

.admin.reports .flatpickr-months .flatpickr-prev-month {
  margin-left: 10px;
  margin-top: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}

.admin.reports .flatpickr-months .flatpickr-next-month {
  margin-right: 10px;
  margin-top: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}

.admin.reports .flatpickr-weekdays,
.flatpickr-days .dayContainer {
  padding: 10px;
}

.admin.reports .flatpickr-months .flatpickr-prev-month:hover,
.admin.reports .flatpickr-months .flatpickr-next-month:hover {
  background: var(--primary-hover);
  border-radius: 50%;
}

.admin.reports .flatpickr-days .dayContainer .flatpickr-day:hover {
  background-color: var(--primary-hover) !important;
  color: var(--white);
}

.form-control.flatpickr-input[readonly]{
  border: 1px solid var(--border-clr);
  background-color: var(--white);
}

/*CSS Ends 31-10-2023*/
/****************************/

/*CSS Starts 1-11-2023*/

.tw-m-auto {
  margin: auto;
}

.tw-text-2x {
  font-size: 20px;
  line-height: 24px;
  font-weight: 600;
}

.empty-wrapper-content {
  width: 50%;
  row-gap: 5px;
}

.tw-h-48 {
  height: 12.5rem;
}

.empty-wrapper {
  height: calc(100vh - 300px);
}

.ticket-response .empty-wrapper {
  height: 100%;
}

.tw-w-100 {
  width: 100%;
}

.tw-h-100 {
  height: 100%;
}

/*CSS Ends 1-11-2023*/

.modal-header:after,
.modal-header:before {
  content: none;
}

.integration-logos {
  border-radius: 4px;
  border: 1px solid #e4e4e7;
  display: block;
  background: #fff;
  overflow: hidden;
}

.integration-box-wrapper .integration-meta {
  border-top: 1px solid #e4e4e7;
  padding: 14px;
  background-color: #f6f7fa;
}

.integration-box-wrapper .integration-meta h4 {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0px;
  text-transform: capitalize;
  color: #18181b;
}

.integration-box-wrapper .integration-meta p {
  font-size: 12px;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: 0px;
  color: #999999;
}

.integration-box-wrapper .integration-image {
  height: 81px;
  border-radius: 10px !important;
}

.integration-box {
  margin-bottom: 13px;
}

.btn-with-tooltip-group._filter_data button {
  padding: 6px 12px !important;
}

/* button#clearRange {
    line-height: 14px;
    margin-left: 7px;
} */
.btn-with-tooltip-group button.dropdown-toggle {
  padding: 7px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px !important;
}

.tickets-page.tickets .panel-body .table-responsive {
  margin-bottom: 0;
}

.tickets-page.tickets .panel-body .row:last-child div#table-tickets_info {
  margin: 0;
  padding: 0;
}

.tc-content {
  color: var(--black);
  font-size: 13px;
  font-weight: 400;
  line-height: 21px;
}

.tc-content-inner:empty {
  display: none;
}

.bg-transparent {
  background: transparent !important;
}

.tx-m-0 {
  margin: 0 !important;
}

.empty-wrapper.tw-h-auto {
  height: auto;
}

ul.menu-list li a span.icons img {
  width: 25px;
  filter: grayscale(1);
}

.selectbox a.iconbox img {
  width: 17px;
}

#script_stage .sblock label:before {
  content: "-";
  background-color: var(--bg-color);
  min-width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 2px;
}

div#script_stage .sblock label.expands:before {
  content: "+";
}

.sblock label {
  padding: 9px 9px 9px 40px;
}

.user-staff {
  border-radius: 3px;
  background: rgba(113, 0, 225, 0.1);
  padding: 2px 8px;
  text-align: center;
  line-height: 15px;
}

.user-staff span {
  color: var(--primary-color);
  font-size: 12px;
  font-weight: 500;
}

.user-staff-name a {
  color: var(--dark-clr);
  font-size: 12px;
  font-weight: 500;
  line-height: 24px;
}

.ticket-submitter-info > div {
  padding-bottom: 24px;
  border-bottom: 1px solid #e4e4e7;
}

.ticket-status .btn.dropdown-toggle {
  border-radius: 3px;
  border: 1px solid #e4e4e7;
  height: 32px;
  padding: 15px 20px;
  line-height: normal;
}

.ticket-status .btn.dropdown-toggle:before {
  width: 8px;
  height: 8px;
  content: "";
  display: block;
  border-radius: 50%;
  margin-right: 5px;
}

.ticket-status .btn.dropdown-toggle[title="In Progress"]:before {
  background: #f4ca9c;
}

.ticket-status .btn.dropdown-toggle[title="Open"]:before {
  background: var(--primary-color);
}

.ticket-status .btn.dropdown-toggle[title="Answered"]:before {
  background: #09a7b4;
}

.ticket-status .btn.dropdown-toggle[title="On Hold"]:before {
  background: #756585;
}

.ticket-status .btn.dropdown-toggle[title="Closed"]:before {
  background: #eb4f79;
}

._delete[data-title="Delete ticket"] {
  border-radius: 4px;
  border: 1px solid #e4e4e7;
  background: #f8fafd;
  display: flex;
  width: 50px;
  height: 50px;
  padding: 10px;
  justify-content: center;
  align-items: center;
}

.tw-overflow-unset {
  overflow: unset;
}

/* CSS For Loggedin Hours Start */

.profile-wrapper .staff_logged_time {
  height: 100%;
}

.profile-wrapper .last-logged-in {
  height: 100%;
  width: 100%;
}

.profile-wrapper .staff_logged_time dl {
  display: unset;
}

.last-logged-in {
  padding: 21px;
  width: 202px;
  height: auto;
  border-radius: 4px;
  border: 1px solid var(--border-clr);
}

/* .last-logged-text {
    color: #71717A;
    padding: 0 0 5px 0;
    font-size: 14px;
} */
/* .last-logged-time {
    color: #18181B !important;
    font-size: 16px;
} */
/* .reset-pass button {
    background-color: #FFF !important;
    color: #18181B !important;
} */
.gp-10 {
  gap: 10px;
}

.tw-justify-content-end {
  justify-content: end;
}

.pl-35 {
  padding-left: 35px;
}

/* CSS For Loggedin Hours End */

.dropdown-menu > li > a {
  padding: 9px 1rem;
}

.noteEmpty svg {
  height: 120px;
}

.noteEmpty h3 {
  margin-bottom: 5px;
}

.notifications_wrap .noti_head {
  border-bottom: 1px solid var(--border-clr);
  padding: 15px;
  height: 64px;
}
.navbar-nav > li > .dropdown-menu.notifications {
  overflow: inherit;
  padding: 18px 20px 0;
}
.notifications.notifications_wrap ul {
  max-height: calc(100% - 119px) !important;
  overflow: auto;
  padding-right: 0;
}
.lead-assignee.scroll-true {
  max-height: 350px !important;
}
.notifications_wrap .noti-footer a.btn {
  padding: 0 !important;
  border: none;
}
.notifications_wrap .noti-footer {
}
.notifications_wrap .noti-footer .view-all-noti,
.notifications_wrap .noti-footer .p-description {
  font-size: 13px;
  font-weight: 500;
  line-height: 24px;
  color: var(--black);
  padding: 15px 0;
  border-top: 1px solid var(--border-clr);
  display: flex;
  justify-content: center;
  align-items: center;
}
.notifications_wrap .noti-footer .p-description {
  border-top: none;
}
.notifications.notifications_wrap ul li {
  z-index: 100;
  border-bottom: 1px solid #E2E8F0;
  padding: 13px !important;
}
.notifications.notifications_wrap .notification-box {
  display: flex;
  gap: 8px;
}
.notifications.notifications_wrap ul li:last-child {
  /* padding: 0 !important; */
  font-weight: 400 !important;
  text-align: left !important;
}
.notifications.notifications_wrap ul li:last-child {
  border-bottom: 0;
}
.notification-title,
.notification-time,
.notification-time + a {
  color: var(--text-light) !important;
  font-size: 12px;
  font-weight: 400;
  line-height: 14.06px;
  text-align: left;
}
.notification-title {
  line-height: 17px;
}
.notification-title span {
  font-weight: 500;
  text-transform: capitalize;
  color: var(--black);
}
.notification-time + a {
  font-size: 10px;
  line-height: 1;
}
.scroll-true {
  max-height: 471px;
  padding-right: 11px;
  overflow-y: auto;
  margin-right: -11px;
}
.notifications_wrap h4 {
  font-size: 13px;
  font-weight: 600;
  line-height: 24px;
  color: var(--black);
}
.notifications_wrap a.tw-inline {
  font-size: 12px !important;
}

div#build-wrap .rendered-form > div {
  width: 100%;
}
#build-wrap .formbuilder-radio,
#build-wrap .formbuilder-checkbox {
  display: flex;
  align-items: center;
  margin-bottom: 0.4rem;
}

#build-wrap .formbuilder-radio label,
#build-wrap .formbuilder-checkbox label {
  width: 89%;
  margin-bottom: 0;
  font-weight: 400 !important;
}

#build-wrap .formbuilder-radio input,
#build-wrap .formbuilder-checkbox input {
  height: 15px !important;
  width: 15px;
  margin-right: 8px;
}

#build-wrap label {
  width: 99%;
}

div#build-wrap select {
  height: 44px;
}

.cusFormField {
  pointer-events: none;
}

.cusFormBuilder .formbuilder-textarea textarea {
  height: 44px !important;
}

form#setMapFieldsForm span.selection span {
  line-height: 20px;
  color: var(--black);
}

form#setMapFieldsForm span.selection span.select2-selection--single,
form#setMapFieldsForm span.selection span span.select2-selection__arrow {
  height: 32px !important;
}

.select2-container--default .select2-selection--single {
  border: 1px solid var(--border-clr) !important;
}
.select2-container--default
  .select2-selection--single
  .select2-selection__arrow
  b {
  border: none !important;
  top: 0 !important;
  height: 100% !important;
  left: -5px !important;
  margin-top: 0 !important;
}

body.dashboard.invoices-total-manual .checkbox-group label,
body.dashboard.invoices-total-manual .radio-group label {
  margin-bottom: 0 !important;
}

body.dashboard.invoices-total-manual
  .question-wrapper
  div#build-wrap
  .rendered-form
  .formbuilder-text {
  margin-bottom: 15px;
}

.Last_active_lead div#table-leads_wrapper .row:last-child {
  display: none;
}

.pr-0 {
  padding-right: 0 !important;
}

.pl-0 {
  padding-left: 0 !important;
}

aside#menu ul#side-menu {
  height: calc(100vh - 77px);
  overflow-y: auto;
  overflow-x: hidden;
  margin-top: 7px;
}

ul.nav.metis-menu {
  overflow: auto;
  height: calc(100vh - 40px);
}

.viewinvoice a.btn.btn-success.invoice-html-pay-now-top {
  background-color: #7100e1;
  border-color: #7100e1;
}

/* Super Admin Start*/
body.superadmin_body #DataTables_Table_0_wrapper .row:nth-child(2),
body.superadmin_body div#RegionTable_wrapper .row:nth-child(1),
.dataTables_wrapper .row:nth-child(2),
body .dataTables_wrapper .row:nth-child(1) {
  /* display: block; */
  /* padding: 15px 15px; */
  margin-bottom: 20px;
}

body .dataTables_wrapper .row:empty:nth-child(1) {
  display: none;
}

body.superadmin_body
  div#RegionTable_wrapper
  .row:nth-child(1)
  .col-sm-6:first-child {
  display: none;
}

body.superadmin_body div#RegionTable_wrapper .row:last-child {
  border-top: 1px;
  border-color: rgba(226, 232, 240, 0.7);
  border-style: solid;
}

body.superadmin_body div#RegionTable_wrapper .row:last-child .col-sm-5 {
  padding-left: 15px;
}

body.superadmin_body #DataTables_Table_0_wrapper .row:nth-child(2) .col-md-7,
body.superadmin_body
  #DataTables_Table_0_wrapper
  .row:nth-child(2)
  .col-md-6:first-child,
.spam-tables .tab-pane .dataTables_wrapper .row:nth-child(2),
body .dataTables_wrapper .row:nth-child(1) .col-sm-6:nth-child(1),
body .dataTables_wrapper .row:nth-child(2) .col-md-6:nth-child(1),
body .dataTables_wrapper .row:nth-child(2) .col-md-7 {
  display: none;
}

body.superadmin_body #DataTables_Table_0_wrapper .row:nth-child(2) .col-md-5,
body.superadmin_body
  #DataTables_Table_0_wrapper
  .row:nth-child(2)
  .col-md-6:nth-child(2),
.dataTables_wrapper .row:nth-child(2) .col-md-5,
body .dataTables_wrapper .row:nth-child(1) .col-sm-6:nth-child(2),
.dataTables_wrapper .row:nth-child(2) .col-md-6:nth-child(2) {
  width: 100% !important;
  display: flex;
  align-items: center;
  justify-content: end;
}

body.superadmin_body
  #DataTables_Table_0_wrapper
  .row:nth-child(2)
  .col-md-5
  .dataTables_filter
  .input-group
  span.input-group-addon,
body.superadmin_body
  #DataTables_Table_0_wrapper
  .row:nth-child(2)
  .col-md-6:nth-child(2)
  .dataTables_filter
  .input-group
  span.input-group-addon {
  padding: 0 11px;
}

body.superadmin_body
  #DataTables_Table_0_wrapper
  .row:nth-child(2)
  .col-md-5
  .dataTables_filter
  .input-group,
body.superadmin_body
  #DataTables_Table_0_wrapper
  .row:nth-child(2)
  .col-md-6:nth-child(2)
  .dataTables_filter
  .input-group {
  box-shadow: none;
}

.input-group-addon {
  border-radius: 3px 0 0 3px !important;
}

.input-group input {
  border-radius: 0 3px 3px 0 !important;
}

div#agreementDoc h2 {
  margin: 0;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--black);
  text-align: center;
}

div#agreementDoc ol li {
  list-style: none;
}

span.form-control {
  min-height: 34px !important;
  height: auto;
}

span.alert-title {
  padding-right: 50px;
}

.tw-truncate-head {
  color: #18181b;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
}

.col-md-3 .navbar-pills-flat {
  border-radius: 4px;
  padding: 10px;
}

.navbar-pills-flat > li:last-child a {
  border-radius: 0;
  border-bottom: 0;
}

.col-md-3 .navbar-pills-flat li a {
  border-color: transparent;
  border-radius: 4px !important;
  color: var(--black);
  padding: 8px 12px;
  font-size: 13px;
  font-weight: 400 !important;
  display: flex;
  align-items: center;
}

.col-md-3 .navbar-pills-flat li a i {
  height: 22px;
  width: 22px;
  border: 2px solid #a8a8a8;
  border-radius: 100%;
  font-size: 11px;
}

.col-md-3 .navbar-pills-flat li.active a,
.col-md-3 .navbar-pills-flat li.active a:hover,
li.cust > a,
li.personalize > a {
  background-color: var(--bg-color) !important;
  border: none !important;
}

/* .col-md-3 .navbar-pills-flat li.active a img,
li.cust>a img,
li.personalize>a img
{
    filter: invert(43%) sepia(100%) saturate(5410%) hue-rotate(244deg) brightness(104%) contrast(118%);
} */

li.cust > a i {
  border-color: var(--primary-color) !important;
}

.customer-tabs > li:not(:last-child) {
  border-bottom: 1px solid #f6f6fb;
}

.nav-stacked > li + li {
  margin-top: 0;
  margin-bottom: 0;
}

.navbar-pills-flat.customer-tabs.expanded {
  height: 100%;
  overflow: unset;
  padding: 10px;
  margin-bottom: 1rem;
}

.expand-customer-tabs {
  display: none;
}

span.badge.pull-right {
  display: flex;
  background-color: #f55a5a;
  color: #fff;
  width: 20px !important;
  height: 20px;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  font-weight: 700;
  margin-top: -1px;
  margin-left: auto;
}

.superadmin_body .row div.dataTables_info {
  margin-top: 0;
  padding-top: 0;
}

body.superadmin_body .panel-body .tab-content .new-contact-wrapper {
  display: flex;
  align-items: center;
  justify-content: end;
}

body.superadmin_body
  .panel-body
  .tab-content
  h4.customer-profile-group-heading {
  position: static;
  top: 20px;
  left: 23px;
  margin: 0 !important;
}

body.superadmin_body
  .panel-body
  .tab-content
  #DataTables_Table_0_wrapper
  .row:nth-child(2) {
  display: none !important;
}

body.superadmin_body
  .panel-body
  .tab-content
  .row:last-child
  .col-md-4
  div#DataTables_Table_0_info {
  margin: 0;
  padding: 0;
}

body.superadmin_body
  .panel-body
  .tab-content
  .row:last-child
  .dataTables_paging
  div#DataTables_Table_0_paginate {
  padding-right: 0;
}

body.superadmin_body .panel-body .tab-content div#DataTables_Table_0_wrapper {
  border: 1px solid rgba(226, 232, 240, 0.7);
  overflow: hidden;
  border-radius: 10px;
}

body.superadmin_body
  .panel-body
  .tab-content
  div#DataTables_Table_0_wrapper
  table#DataTables_Table_0 {
  margin: 0 !important;
}

.ticket-status .btn.dropdown-toggle .filter-option-inner-inner {
  line-height: 20px;
}

.bootstrap-tagsinput .tag {
  display: inline-block;
  color: var(--black) !important;
  background: var(--bg-color);
  padding: 5px;
  padding-right: 30px;
  padding-left: 10px;
  margin: 4px;
  font-size: 13px;
  position: relative;
  border-radius: 3px;
  font-weight: 400;
}

.bootstrap-tagsinput .tag [data-role="remove"] {
  margin-right: 0;
}

.bootstrap-tagsinput .tag [data-role="remove"]:after {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  background: #cecece;
  color: var(--black);
  margin-left: 4px;
  display: inline-flex;
  width: 17px;
  font-size: 12px;
  content: "\f00d" !important;
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  align-items: center;
  justify-content: center;
}

.bootstrap-select .btn {
  height: 32px;
  line-height: 21px;
  background-color: transparent;
  border: 1px solid var(--border-clr);
  border-radius: 3px;
  padding: 6px 12px !important;
}

#proposal-wrapper .bootstrap-select .btn {
  height: 50px !important;
}

#proposal-wrapper .bootstrap-select .filter-option-inner {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

[dir="ltr"] .bootstrap-select .dropdown-toggle .caret {
  right: 14px;
  padding: 2px;
  transform: rotate(45deg) translateY(-50%);
  margin-top: 0 !important;
  top: calc(50% - 1px);
}

.dropup.btn-group .caret {
  margin-right: 3px;
}

.cus_table_wrap div#InvoiceTable_wrapper .row:first-child,
.cus_table_wrap .historyTable .row:first-child {
  display: block;
  padding: 20px;
}

.cus_table_wrap div#InvoiceTable_wrapper .row:first-child .col-sm-6:first-child,
.cus_table_wrap .historyTable .row:first-child .col-sm-6:first-child {
  display: none;
}

.cus_table_wrap div#InvoiceTable_wrapper .row:first-child .col-sm-6:last-child,
.cus_table_wrap .historyTable .row:first-child .col-sm-6:last-child {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: end;
}

.cus_table_wrap
  div#InvoiceTable_wrapper
  .row:first-child
  .col-sm-6:last-child
  div#InvoiceTable_filter
  label
  input,
body.superadmin_body
  div#RegionTable_wrapper
  .row:nth-child(1)
  .col-sm-6:last-child
  div#RegionTable_filter
  label
  input {
  /* height: 35px !important;
    background-color: transparent; */
  margin-left: 10px !important;
  width: auto !important;
  /* font-size: 14px; */
}

.cus_table_wrap .row:last-child div#call_log_table_info {
  margin: 0;
  padding: 0;
}

.cus_table_wrap .row:last-child div#call_log_table_paginate {
  padding-right: 0;
}

.form-wrap.form-builder .cb-wrap {
  width: 20% !important;
}

.form-wrap.form-builder .stage-wrap {
  width: 80% !important;
}

.form-wrap.form-builder .cb-wrap ul {
  width: 100%;
}

.form-wrap.form-builder .frmb-control {
  border-radius: 4px !important;
  padding: 10px !important;
  background: #fff;
  border: 1px solid var(--border-clr);
}

.form-wrap.form-builder .frmb-control li {
  border-radius: 4px !important;
  margin-top: 10px !important;
  border-color: var(--border-clr);
}

.form-wrap.form-builder .frmb-control li.disabled {
  background: #f6f6fb;
}

.form-wrap.form-builder .frmb li.form-field {
  padding: 21px !important;
  border-radius: 4px !important;
  border: 1px solid var(--border-clr) !important;
  overflow: hidden;
  margin-bottom: 10px !important;
}

.form-wrap.form-builder .frmb .field-actions {
  margin: 0;
  top: 5px !important;
  right: 5px !important;
}

.form-wrap.form-builder .frmb li.form-field:hover .field-actions a {
  border: 1px solid #ccc !important;
  margin-left: 5px;
  width: 30px;
  height: 30px;
  line-height: 30px;
  border-radius: 4px !important;
}

.form-wrap.form-builder .frmb li.form-field:hover {
  box-shadow: none !important;
}

.form-wrap.form-builder .frmb li.form-field label.field-label {
  line-height: 18px;
}

.form-wrap.form-builder .cb-wrap.pull-left .form-actions {
  display: flex;
  align-items: center;
  justify-content: end;
  width: 100%;
  margin-top: 15px;
}

.frm-holder .form-elements label {
  text-align: left !important;
  width: 16.66666667% !important;
}

.form-wrap.form-builder .frmb .form-elements .input-wrap label {
  width: inherit !important;
}

.form-wrap.form-builder .frmb .form-elements {
  padding: 21px !important;
  background: #fcfcfc !important;
  border-radius: 4px !important;
}

.form-wrap.form-builder
  .frmb
  .form-elements
  .input-wrap
  .fld-label.form-control {
  min-height: 32px;
  line-height: 18px;
}

.form-wrap.form-builder .frmb-control li:first-child {
  margin-top: 0 !important;
}

.form-wrap.form-builder
  .frmb
  .form-elements
  .input-wrap
  > input[type="checkbox"] {
  margin-top: 0 !important;
}

.form-wrap.form-builder .frmb .form-elements .input-wrap {
  display: flex;
  align-items: center;
  gap: 13px;
}

.form-wrap.form-builder .frmb .form-elements label:first-child {
  padding-top: 0 !important;
}

.form-wrap.form-builder .frmb .sortable-options .option-selected {
  width: auto !important;
  margin-right: 10px !important;
}

.form-wrap.form-builder .frmb .sortable-options > li {
  padding: 15px !important;
}

.form-wrap.form-builder .frmb .sortable-options input[type="text"] {
  width: 45%;
}

.tenant_body #call_log_table_wrapper .table-responsive {
  margin-left: 0;
  margin-right: 0;
}

/* #call_log_table tr td {
  cursor: pointer;
} */

.nav-tabs > li.personalize > a i.menu-icon,
.nav-tabs > li.personalize > a:focus i.menu-icon,
.nav-tabs > li.personalize > a:hover i.menu-icon {
  --tw-text-opacity: 1;
  color: rgb(37 99 235 / var(--tw-text-opacity));
}

.call_history_view small {
  display: block;
  color: #999;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px;
}

.call_history_view span {
  color: #18181b;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}

/* .call_history_view .col-md-4,.call_history_view .col-md-6 {
    margin-bottom: 20px;
} */

.loader_wrapper {
  position: absolute;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: 9999999;
}

.lds-ripple {
  display: inline-block;
  position: absolute;
  width: 80px;
  height: 80px;
  margin: 0 auto;
  right: 0;
  left: 0;
  top: 20%;
}

.lds-ripple div {
  position: absolute;
  border: 4px solid #8d8181;
  opacity: 1;
  border-radius: 50%;
  animation: lds-ripple 1s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}

.lds-ripple div:nth-child(2) {
  animation-delay: -0.5s;
}

@keyframes lds-ripple {
  0% {
    top: 36px;
    left: 36px;
    width: 0;
    height: 0;
    opacity: 0;
  }

  4.9% {
    top: 36px;
    left: 36px;
    width: 0;
    height: 0;
    opacity: 0;
  }

  5% {
    top: 36px;
    left: 36px;
    width: 0;
    height: 0;
    opacity: 1;
  }

  100% {
    top: 0px;
    left: 0px;
    width: 72px;
    height: 72px;
    opacity: 0;
  }
}

a.add_number {
  text-align: right;
  display: block;
}

/* table tbody tr .checkbox{
    left: 8px !important;
} */

.table .checkbox {
  padding-left: 0;
}

/* table tbody tr .checkbox input {
    position: absolute !important;
    left: -10px;
    width: 19px;
    display: inline-block;
} */
body.commision div.dataTables_wrapper .row:nth-child(1),
body.commision #DataTables_Table_0_wrapper .row:nth-child(2) {
  display: block !important;
}

body.commision div.dataTables_wrapper .row:nth-child(1),
body.commision #DataTables_Table_0_wrapper .row:nth-child(2) {
  display: block !important;
}

body.commision div.dataTables_wrapper .row:nth-child(1) .col-sm-6:nth-child(1),
body.commision
  #DataTables_Table_0_wrapper
  .row:nth-child(2)
  .col-sm-6:nth-child(1) {
  display: none;
}

body.commision
  div.table-responsive
  > div.dataTables_wrapper
  > div.row
  > div[class^="col-"]:last-child
  label {
  width: 100% !important;
  display: block;
}

body.commision
  div.table-responsive
  > div.dataTables_wrapper
  > div.row
  > div[class^="col-"]:last-child
  .dataTables_filter {
  margin-bottom: 15px;
}

body.commision
  div.table-responsive
  > div.dataTables_wrapper
  > div.row
  > div[class^="col-"]:last-child
  label
  input {
  margin-left: 10px !important;
}

body.commision
  div.table-responsive
  > div.dataTables_wrapper
  > div.row
  > div[class^="col-"]:last-child
  label
  input:focus {
  width: auto !important;
}

.commision .whitebox {
  display: none !important;
}

body.commision
  div.table-responsive
  > div.dataTables_wrapper
  > div.row
  > div[class^="col-"]:last-child {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: end;
}

body.restricted_regions.superadmin_body .row:last-child .col-sm-5,
body.staff.commision.superadmin_body .row:last-child .col-sm-5 {
  padding-left: 15px !important;
}

body.staff.commision.superadmin_body input.staff_row {
  position: inherit !important;
}

body.staff.commision.superadmin_body
  div#StaffTable_wrapper
  .row:nth-child(2)
  .col-sm-12 {
  display: inline;
  min-height: 0.01%;
  overflow-x: auto;
}

.availibility .whitebox {
  display: none !important;
}

span.online_status {
  width: 12px;
  height: 12px;
  display: inline-block;
  background: #01d56e;
  border: 1px solid #ddd;
  border-radius: 100%;
  float: right;
  position: relative;
  top: 4px;
}

#file_widget {
  height: 0;
  opacity: 0;
  position: absolute;
}

.upload_image_file,
.upload_image_gallery {
  /* background: #7100E1; */
  /* padding: 10px; */
  text-align: center;
  /* border-radius: 5px; */
  cursor: pointer;
}

.uload_image {
  float: left !important;
  display: block !important;
  width: 200px;
  position: relative;
}

span.offline_status {
  width: 12px;
  height: 12px;
  display: inline-block;
  background: #cfc1c1;
  border: 1px solid #ddd;
  border-radius: 100%;
  float: right;
  position: relative;
  top: 4px;
}

.lead-chat-times {
  padding: 28px 18px;
  background-color: #f5f5f5;
  border-bottom: 1px solid var(--border-clr);
  gap: 10px;
}

.lead-call-times {
  flex-wrap: wrap;
  gap: 20px 10px;
}

.lead-chat-times > div {
  flex: 1;
}

.lead-call-times > div {
  flex: 1 0 32%;
}

.lead-chat-times .mbot10 {
  margin-bottom: 10px;
}

.mychatbox {
  width: 100%;
  margin: 30px auto 0;
  padding: 25px;
  border-radius: 10px;
  background: #f9f9fc;
  border: 1px solid #e4e4e7;
}

.chat_primary.chat_single {
  background: #f0f0f0;
  clear: both;
  width: 70%;
  margin-bottom: 0;
}

.chat_primary .p-description,
.chat_secondry .p-description {
  border-radius: 6px;
  border: none !important;
  margin-bottom: 5px !important;
  margin-bottom: 0 !important;
  font-size: 13px;
  line-height: 20px;
}

.chat_primary.chat_single {
  border: none !important;
}

.chat_secondry.chat_single {
  float: right;
  width: 70%;
  border: none !important;
}

.chat_secondry.chat_single {
  background: rgba(113, 0, 225, 0.1);
  text-align: right;
}

.chat_primary.chat_single,
.chat_secondry.chat_single {
  margin-bottom: 15px;
  padding: 10px 15px !important;
}

.chat_primary.chat_single p.p-title {
  /* color: #18181B; */
  font-weight: 400;
}

.chat_secondry.chat_single p.p-title {
  text-align: right;
  /* color: #7100E1; */
  font-weight: 400;
}

/* .chat_primary.chat_single:last-child,
.chat_secondry.chat_single:last-child {
    margin-bottom: 0 !important;
} */

.chat_single:not(:first-child) {
  padding-top: 1rem;
}

.chat-wrapper .chat_single {
  padding: 10px 15px !important;
  border-radius: 5px;
  max-width: 90%;
  margin-bottom: 4px;
  word-break: break-word;
  min-width: 100px;
}

.chat-wrapper .chat_primary {
  display: flex;
  align-content: flex-start;
  flex-wrap: wrap;
  flex-direction: column;
}

.chat-wrapper .chat_primary .chat_single {
  background: #efefef;
}

.chat-wrapper .chat_secondry {
  display: flex;
  align-content: flex-end;
  flex-wrap: wrap;
  flex-direction: column;
}

.chat-wrapper .chat_secondry .chat_single {
  background: #e0f5ed;
}

.chat_single .p-description,
.chat-wrapper p.p-title {
  font-size: 13px;
  font-weight: 400;
  line-height: 16px;
  color: var(--black);
}

.chat-wrapper p.p-title {
  font-weight: 500;
  text-align: start;
}

.chat_secondry p.p-title {
  text-align: end;
}

.chat_secondry,
.chat_primary {
  margin-bottom: 13px;
}

.lead-right-bar .panel-body {
  padding: 14px 18px;
}

.active_lead ul.leadStatusView {
  display: flex;
  align-items: center !important;
}

.active_lead ul.leadStatusView li {
  display: flex;
  align-items: center;
  margin-right: 15px;
}

div#statusDiv label,
div#assigneDiv label {
  display: block;
  color: #999;
  font-size: 12px;
  width: 100%;
  font-weight: 400;
}

select#display_leads {
  width: 75px;
  font-size: 14px;
  font-weight: 500;
  line-height: 21px;
  border-radius: 0.375rem;
  border-color: #ccc;
  padding: 5px 25px 5px 10px;
  height: 39.33px !important;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-color: transparent;
  background-image: url(/assets/images/icons/down-arrow.svg);
  background-repeat: no-repeat;
  background-position: calc(100% - 10px) center;
}

.upload_image_file {
  display: block;
  text-align: left;
}

.prompt_box_wrapper {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1050;
  display: none;
  overflow: hidden;
  -webkit-overflow-scrolling: touch;
  outline: 0;
}

@media (min-width: 768px) {
  .prompt_box {
    width: 600px;
    margin: 30px auto;
  }
}

.prompt_box_wrapper.fade .prompt_box {
  -webkit-transform: translate(0, -25%);
  -ms-transform: translate(0, -25%);
  -o-transform: translate(0, -25%);
  transform: translate(0, -25%);
  -webkit-transition: -webkit-transform 0.3s ease-out;
  -o-transition: -o-transform 0.3s ease-out;
  transition: -webkit-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out,
    -o-transform 0.3s ease-out;
}

.prompt_box {
  position: relative;
  width: auto;
  margin: 10px;
}

a.image_thumbs_gallery:hover {
  border-color: var(--primary-color);
}

a.image_thumbs_gallery_active {
  border-color: var(--primary-color) !important;
}

a.image_thumbs_gallery img {
  width: 100%;
}

a.image_thumbs_gallery {
  width: 101px;
  display: inline-block;
  border-radius: 100%;
  overflow: hidden;
  margin: 5px 5px;
  border: 3px solid transparent;
  transition: 0.5s ease;
}

.nav-tabs > li > a.active {
  --tw-border-opacity: 1;
  --tw-text-opacity: 1;
  background-color: transparent;
  border-color: rgb(37 99 235 / var(--tw-border-opacity));
  border-radius: 0;
  border-style: solid;
  border-width: 0 0 1px;
  color: rgb(37 99 235 / var(--tw-text-opacity));
  margin-bottom: 1px;
}

.partner_body .header-timers.timer-button,
.partner_body .header-todo,
.partner_body .header-notifications {
  display: none !important;
}

body.partner_body .dropdown.inline-block.mleft5.table-export-exclude {
  display: none;
}

.select2-container--open span.select2-dropdown.select2-dropdown--below {
  z-index: 99999;
}

#form-client-assign span.select2.select2-container.select2-container--default {
  width: 100% !important;
}

.select2-container--default .select2-selection--single {
  height: 32px !important;
  padding: 5px 0px;
}

.select2-container--default
  .select2-selection--single
  .select2-selection__arrow {
  height: 32px !important;
}

.select2-container--default
  .select2-selection--single
  .select2-selection__rendered {
  line-height: 20px !important;
}

.menu-item-customers.active span.menu-text {
  white-space: nowrap;
}

.text-upper-case {
  text-transform: capitalize;
}

.step {
  display: none;
}

.step.active {
  display: block !important;
}

.partner_body a[data-toggle="collapse"],
.partner_body .lead-user-contact {
  display: none;
}

.alertify-notifier .ajs-message.ajs-error {
  color: #fff !important;
}

/* .partner_body table.table tr td,.tenant_body table.table tr td{
    cursor: pointer;
} */
table#partnership_table {
  width: 100% !important;
}

table#partnership_table tr td {
  cursor: pointer;
}

span.color-green {
  color: #0e9f06;
  margin-right: 1px;
  font-size: 20px;
}

#partnership_table a.text-small-on-hover {
  font-size: 11px;
  color: #979797;
  position: absolute;
  bottom: 1px;
  display: none;
}

#partnership_table span.tw-block {
  margin-bottom: 5px;
}

#partnership_table tr td {
  position: relative;
}

#partnership_table tr td:hover a.text-small-on-hover {
  display: block !important;
}

a.text-small-on-hover:hover {
  color: navy !important;
}

span#email_error {
  color: red;
  padding: 0;
  display: block;
  padding-bottom: 12px;
}

span#email_error:empty {
  display: none;
}

.partner_manage li.nav-item {
  padding: 0px 0px 10px;
}

.partner_manage li.nav-item:hover {
  border-bottom: 3px solid rgb(203, 213, 225);
}

.partner_manage li.nav-item.active {
  border-bottom: 3px solid rgb(37, 99, 235) !important;
  color: rgb(37, 99, 235);
}

.partner_manage li.nav-item button {
  border: none;
  background: transparent;
}

.partner_manage li.nav-item {
  margin-right: 8px;
}

/*===================SWITCH===================*/
.switches {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}

.switches input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.switches input:checked + .slider {
  background-color: var(--primary-color);
}

.switches input:focus + .slider {
  box-shadow: 0 0 1px #2196f3;
}

.switches input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}

/* Rounded sliders */
.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}

.payeer_table tr td {
  padding: 20px;
}

section.partner_type_section {
  display: flex;
  flex-flow: row wrap;
  gap: 20px;
  margin-top: 15px;
}

section.partner_type_section > div {
}

.partner_type_section input[type="radio"] {
  display: none;
}

.partner_type_section input[type="radio"]:not(:disabled) ~ label {
  cursor: pointer;
}

.partner_type_section input[type="radio"]:disabled ~ label {
  color: rgba(188, 194, 191, 1);
  border-color: rgba(188, 194, 191, 1);
  box-shadow: none;
  cursor: not-allowed;
}

.partner_type_section label {
  height: 100%;
  display: block;
  background: white;
  border: 1px solid var(--primary-color);
  border-radius: 4px;
  /* padding: 1rem; */
  /* margin-bottom: 1rem; */
  text-align: center;
  box-shadow: 0px 3px 10px -2px rgba(161, 170, 166, 0.5);
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 12px;
  gap: 8px;
}

section.partner_type_section label h2 {
  font-size: 14px;
  font-weight: 300;
  margin: 0;
}

.partner_type_section input[type="radio"]:checked + label {
  background: var(--primary-color);
  color: rgba(255, 255, 255, 1);
  box-shadow: rgba(59 129 247, 0.75);
}

.partner_type_section input[type="radio"]:checked + label::after {
  color: rgba(61, 63, 67, 1);
  font-family: FontAwesome;
  border: 2px solid var(--primary-color);
  content: "\f00c";
  font-size: 10px;
  height: 20px;
  width: 20px;
  line-height: 17px;
  text-align: center;
  border-radius: 50%;
  background: white;
  box-shadow: 0px 2px 5px -2px rgba(0, 0, 0, 0.25);
}

.partner_type_section input[type="radio"]#control_05:checked + label {
  background: red;
  border-color: red;
}

.partner_type_section p {
  font-weight: 900;
}

@media only screen and (max-width: 700px) {
  section.partner_type_section {
    flex-direction: column;
  }
}

.name-wrap input,
.stage-wrap .form-field input[type="color"],
.stage-wrap .form-field input[type="date"],
.stage-wrap .form-field input[type="datetime-local"],
.stage-wrap .form-field input[type="file"],
.stage-wrap .form-field select[multiple="true"],
.web-to-lead-form
  [id^="frmb-"][id$="-form-wrap"]
  .frmb
  .form-field
  .form-group.field-options
  input[type="text"] {
  pointer-events: fill !important;
  cursor: auto !important;
  background: #fff !important;
  color: #000 !important;
}

a.make_withdrawal,
a.cancel_withdrawal {
  /* position: absolute;
    right: 26px;
    bottom: 15px; */
  font-size: 11px;
  background: #e3f5ff;
  padding: 5px 10px 5px 10px;
  color: #5a5151;
  border-radius: 4px;
  font-weight: 500;
  height: auto;
}

a.cancel_withdrawal {
  background: var(--danger-clr) 33;
}

.modal-dialog-centered {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (0.5rem * 2));
  justify-content: center;
}

@media (min-width: 576px) {
  .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
}

.modal-body .modal-title {
  font-weight: 600;
}

.modalFooter a {
  padding: 12px;
  display: inline-block;
  width: 49%;
  text-align: center;
  font-size: 12px;
  font-weight: 500;
}

.modalFooter a:first-child {
  color: #999;
}

.modalFooter a:last-child {
  color: #337ab7;
}

.modalFooter {
  background: #f3f3f3;
}

.card {
  padding: 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
  margin-bottom: 22px;
}

.bold_text {
  font-weight: bold;
  font-size: 15px;
  text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.1);
  color: #4c4c4c;
}

span.color-yellow {
  color: #c3390c8f;
  margin-right: 1px;
  font-size: 20px;
}

/* Super Admin */
a.integration-logos.sm img {
  width: 23%;
}

a.remove_logo {
  right: 110px;
  font-size: 16px;
  font-weight: 500;
  font-family: inherit;
}

.top-position-btns {
  position: absolute;
  top: 17px;
  right: 20px;
}

div#profile-save-section.top-position-btns {
  top: 17px;
}

.add-field {
  background-color: #00ae6a26;
  border-radius: 3px;
  text-align: center;
  font-size: 12px;
  font-weight: 500;
  line-height: 20px;
  letter-spacing: 0px;
  color: var(--black);
  padding: 7px;
}

.add-field a,
.add-field button,
.add-field input[type="submit"] {
  text-align: center;
  font-size: 12px;
  font-weight: 500;
  line-height: 20px;
  letter-spacing: 0px;
  color: var(--black);
  width: 100%;
  height: 100% !important;
  display: block;
}

.add_website_fields{
  display: flex !important;
  align-items: center;
  justify-content: center;
}

/* .add-field .add_number{
text-align: center;
font-size: 12px;
font-weight: 500;
line-height: 20px;
letter-spacing: 0px;
color: var(--primary-color);
} */

.tenant-widget {
  row-gap: 11px;
}

.tenant-widget .toggle-wrapper {
  padding: 12px 12px;
}

.tenant-widget .toggle-wrapper label {
  margin-bottom: 0px;
}

.integration-wrapper img {
  width: 60px;
  height: 26px;
  object-fit: contain;
}

.tenant-widget .onoffswitch {
  margin: 0 0 0 auto;
}

.toggle-wrapper .control-label {
  margin-bottom: 0;
}

#change_pricing {
  display: flex;
  flex-wrap: wrap;
  margin-right: -6.5px;
  margin-left: -6.5px;
}

#change_pricing > .form-group,
.lead_typex {
  padding-right: 6.5px;
  padding-left: 6.5px;
  width: 100%;
}

.form-group-btn {
  width: 100% !important;
}

@media (min-width: 768px) {
  #change_pricing > .form-group {
    width: 50%;
  }
}

.disable-text {
  font-size: 13px;
  font-weight: 400;
  line-height: 20px;
  margin-bottom: 0;
  color: var(--black) !important;
  border: 1px solid var(--border-clr);
  background-color: var(--bg-color);
  height: 32px;
  display: flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 3px;
  overflow: auto;
}

.disable-text a {
  display: flex;
  align-items: center;
  gap: 7px;
}

.disable-text::-webkit-scrollbar {
  height: 4px;
}

.disable-text::-webkit-scrollbar-thumb {
  background-color: #f1f1f1;
}

/* .tenant-info .toggle-wrapper {
    padding: 8px 12px;
} */

.client-sidebar {
  position: sticky;
  top: 20px;
}

.small-fonts {
  font-size: 16px;
}

.action_status {
  position: relative;
}

.add_clients .action_status a span {
  background-color: #fff2f2;
  border-radius: 3px;
  padding: 6px 10px;
  display: block;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.action_status .subMenu {
  background: #fff;
  position: absolute;
  border: 1px solid #ddd;
  border-radius: 5px;
  display: none;
  z-index: 999;
  top: 25px;
  right: 0;
}

.action_status .subMenu li {
  display: block;
  font-size: 13px;
  margin: 6px;
  padding: 5px 10px 4px 10px;
}

.action_status .subMenu li a {
  color: #333;
  display: block;
}

.action_status .subMenu li:hover {
  background: #f9f8f8;
}

.badge-success {
  background: #6eff6f;
}

span.badge {
  /* border-radius: 50% !important; */
  padding: 6px 8px;
  border-radius: 3px;
}

.badge-warning {
  background: #ffc656;
}

/* .has-error .text-danger {
    position: absolute;
    left: 0;
} */
.has-error {
  position: relative;
}

.has-error #message-error {
  position: absolute;
}

/* a.integration-logos img {
    width: 160px;
    height: 65px;
    object-fit: contain;
} */

@media (max-width: 1290px) {
  .tenant-widget .sm-title {
    font-size: 17px;
  }
}

.delete-btn {
  background: var(--bg-color);
  height: 32px;
  width: 32px;
  border-radius: 3px;
  border: 1px solid var(--border-clr);
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.delete-btn img {
  height: 16px;
  width: 16px;
}

.calling-number-row {
  display: flex;
  align-items: flex-end;
  gap: 13px;
}

.calling-number-delete {
  padding-bottom: 15px;
}

.calling-number-delete .btn-actions {
  height: 32px;
  width: 32px;
}

.tw-flex-2 {
  flex: 2 2 0%;
}

.disable-btn {
  background: #f6f7fa;
  filter: grayscale(100%);
  pointer-events: none;
}

.panel_body #InvoiceTable,
.panel_body #LeadsTable,
.panel_body table#staffsTable {
  margin-top: 0px !important;
}

table#ClientList {
  width: 100% !important;
  margin-top: 0px !important;
  margin-bottom: 0px !important;
}

.add_padding {
  padding: 12px;
}

.adjust_body {
  width: 100%;
  height: 450px;
  overflow: scroll;
}

.cus_dropdown {
  border: 1px solid #e5e5e5;
  border-radius: 4px;
  padding: 11px;
  color: var(--black) !important;
  font-size: 13px;
  font-weight: 400;
  height: 40px;
  display: flex;
  align-items: center;
}

ul.cus-dropdown-menu {
  min-width: 128px;
  right: 0 !important;
  left: auto;
  padding: 5px 0;
  box-shadow: 0px 8.29px 33.85px 8.29px #8c98a42d;
}

ul.cus-dropdown-menu.dropdown-menu.animated.fadeIn li a {
  padding: 0 !important;
}

ul.cus-dropdown-menu.dropdown-menu.animated.fadeIn li a:focus {
  background-color: transparent;
}

ul.cus-dropdown-menu li {
  font-size: 14px;
  padding: 5px 15px;
  cursor: pointer;
}

.cus_dropdown span img {
  width: 8px;
}

.cus_dropdown span {
  /* border-left: 1px solid #E4E4E7; */
  margin-left: 10px;
  padding-left: 10px;
}

ul.cus-dropdown-menu li:hover {
  background-color: #f4f7fd;
}

select.minimal {
  /* styling */
  background-color: #fff;
  border: 1px solid #e4e4e7;
  border-radius: 4px;
  display: inline-block;
  font: inherit;
  line-height: 1.5em;
  padding: 0.5em 3.5em 0.5em 1em;
  /* reset */
  margin: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-appearance: none;
  -moz-appearance: none;
}

select.minimal {
  background-image: linear-gradient(45deg, transparent 50%, gray 50%),
    linear-gradient(135deg, gray 50%, transparent 50%),
    linear-gradient(to right, #ccc, #ccc);
  background-position: calc(100% - 15px) calc(1em + 4px),
    calc(100% - 10px) calc(1em + 4px), calc(100% - 2.5em) 0.77em;
  background-size: 5px 5px, 5px 5px, 1px 1.5em;
  background-repeat: no-repeat;
}

select.minimal:focus {
  background-image: linear-gradient(45deg, green 50%, transparent 50%),
    linear-gradient(135deg, transparent 50%, green 50%),
    linear-gradient(to right, #ccc, #ccc);
  background-position: calc(100% - 10px) calc(1em + 4px),
    calc(100% - 15px) calc(1em + 4px), calc(100% - 2.5em) 0.77em;
  background-size: 5px 5px, 5px 5px, 1px 1.5em;
  background-repeat: no-repeat;
  border-color: #e4e4e7;
  outline: 0;
}

select:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 #000;
}

.call-transfer-wrapper {
  border-radius: 4px;
  border: 1px solid var(--border-clr);
}

.call-transfer-wrapper.checked,
.call-transfer-wrapper:hover {
  border-color: var(--primary-color);
}

.call-transfer-wrapper:hover .call-transfer-check {
  color: var(--primary-color);
}

.call-transfer-wrapper label {
  padding: 12px 14px;
  cursor: pointer;
}

.call-transfer-check {
  display: flex;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0px;
  flex-direction: column;
  color: #18181b;
}

.call-transfer-wrapper.checked .call-transfer-check {
  color: var(--primary-color);
}

.call-transfer-wrapper.checked p {
  color: var(--black);
}

.call-transfer-check p {
  font-size: 12px;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: 0px;
  color: var(--text-light);
}

input[type="radio"][name="cell_id"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: none;
}

#attachments .dropzone.dz-started .dz-message,
#attachments .dropzone .dz-message {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 12px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0px;
  text-align: center;
}

/* #attachments .dropzone .dz-message::before{
    background-image: url(/assets/images/icons/upload-image.svg);
    height: 50px;
    content: "";
    display: block;
    width: 50px;
    background-repeat: no-repeat;
    background-size: 100%;
} */

.response-footer {
  background-color: #f8fafd;
  border-top: 1px solid #e4e4e7;
  padding: 24px;
}

.response-footer textarea {
  height: 44px;
}

.ticket-response .panel-body {
  background-color: transparent;
}

.satusbox.disputed,
.satusbox.closed #statusBox option[value="1"],
.satusbox.closed #statusBox option[value="2"],
.satusbox.closed #statusBox option[value="3"],
.satusbox.closed #statusBox option[value="6"],
.satusbox.closed #statusBox option[value="7"],
.satusbox.active #statusBox option[value="2"],
.satusbox.active #statusBox option[value="3"],
.satusbox.active #statusBox option[value="4"],
.satusbox.active #statusBox option[value="5"] {
  display: none;
}

.ticket-submitter-info .user-img {
  height: 35px;
  width: 35px;
}

.ticket-submitter-info .user-img img {
  height: 100%;
  width: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.ticket-status-no-padd span.ticket-status-1 {
  padding: 0;
  color: #000 !important;
  font-weight: 500;
  font-size: 13.5px;
}

table#tenant_question_form_list tr th,
table#tenant_question_form_list tr td {
  text-align: left !important;
}

.formbuilder-text,
.formbuilder-textarea,
.formbuilder-select,
.formbuilder-number {
  position: relative;
}

.formbuilder-select .bootstrap-select {
  padding: 0 !important;
  border: 0 !important;
}

/* .formbuilder-text label,
.formbuilder-textarea label,
.formbuilder-select label{
    position: absolute;
    top: 11px;
    left: 10px;
}

.formbuilder-select select {
    text-indent: -50px;
}    */

.dropdown-menu {
  min-width: 200px;
  padding: 18px 20px;
  border-radius: 4px;
  border: 1px solid #e5e7e8;
  box-shadow: 0px 4px 24px 0px #191b1c29;
}

.bootstrap-select .dropdown-menu {
  padding: unset;
}

table#ClientList tr th,
table#ClientList tr td {
  text-align: left !important;
}

table#ClientList tr td,
table#tenant_question_form_list tr td {
  cursor: pointer;
}

body.staff.tenant_body table.table-staff td.sorting_1,
.customer-profile table td.sorting_1 {
  display: flex;
  align-items: center;
}

.chat-script-widget .home-summary .panel-body label,
.chat-script-widget .home-summary .panel-body p {
  font-size: 12px !important;
  font-weight: 500;
  line-height: 14.06px;
  color: var(--black);
}

.chat-script-widget .home-summary .panel-body p {
  color: var(--text-light);
  font-weight: 400;
}

.modal-footer button.btn.btn-default {
  padding: 5px 16px;
  border-radius: 4px;
}

.modal-footer {
  background-color: #f9f9fc;
}

.custom_fields
  .table.dataTable
  > thead:first-child
  > tr:first-child
  > th:last-child,
.custom_fields .dataTables_wrapper tbody tr td:last-child {
  text-align: left !important;
}

h5.note-tittle a {
  font-weight: 400;
  color: #999999;
  font-size: 13px;
}

h5.note-tittle {
  margin-left: 5px;
}

.noteWrap svg.collIcon.collapsed {
  rotate: -90deg;
}

.noteWrap .collIcon path {
  stroke: blue;
}

/* #totalVisitorsIncreasedBy, 
#allLeadsIncreasedBy,
#billableLeadsIncreasedBy,
#totalClickIncreasedBy,
#leadConversionIncreasedBy,
#totalCallsIncreasedBy,
#totalChatsIncreasedBy {
    visibility: hidden;
} */
.checkbox.checkbox-info label,
.control-label {
  color: var(--black) !important;
}

.text-dark-1 {
  color: #000000 !important;
}

.border-0 {
  border: 0px !important;
}

.bootstrap-select > .dropdown-toggle.bs-placeholder,
.bootstrap-select > .dropdown-toggle.bs-placeholder:active,
.bootstrap-select > .dropdown-toggle.bs-placeholder:focus,
.bootstrap-select > .dropdown-toggle.bs-placeholder:hover {
  color: var(--text-light) !important;
}

.input-group-btn:first-child > select + .btn {
  border-bottom-left-radius: 3px !important;
  border-top-left-radius: 3px !important;
}

.input-group-btn > select + .btn,
.bootstrap-select .btn {
  box-shadow: 0px 4px 4px 0px #00000008 inset !important;
}

.panel-body h4.tw-mb-4 {
  font-weight: 500;
}

div#LeadsTable_wrapper .col-sm-5 {
  padding-left: 15px;
}

table.dataTable tbody tr td label.switches {
  width: 40px;
  height: 20px;
  margin: 0;
}

.switches input:checked + .slider:before {
  content: "";
  left: 3px !important;
}

table.dataTable tbody tr td span.slider.round:before {
  content: "";
  height: 13px;
  width: 13px;
  left: 3px;
  top: 3px;
}

table.dataTable tbody tr td .switches input:checked + .slider::before {
  left: -2px !important;
}

a.small.deleteStaff {
  font-size: 11px;
}

table.dataTable tbody tr td div span.tw-block {
  line-height: 13px;
}

table#RegionTable tbody tr td div span.tw-block {
  line-height: 20px !important;
}

body table.dataTable tbody td .row-options a,
body table.dataTable tbody td a.small.deleteStaff,
table.dataTable tbody tr td div a.small.deleteZip {
  color: #999999 !important;
  text-decoration: underline !important;
}

table tbody tr td a img,
button.btn.comt-btn i img,
button.btn.comt-btn i img,
table.dataTable tbody tr td i img {
  width: 18px;
}

button.btn.comt-btn i img,
table.dataTable tbody tr td button.btn.comt-btn {
  opacity: 1;
  padding: 0;
}

.content.table_nop_cus .panel-body .dataTables_wrapper .row:nth-child(2) {
  padding-left: 0 !important;
  padding-right: 0 !important;
  padding-top: 0 !important;
}

a.btn._delete {
  background-color: #fff2f2;
  color: #f55a5a;
  display: flex;
  padding: 9px 12px;
}

a.btn._delete img {
  margin-right: 5px;
}

ul.setting-tabs.customer-tabs li a {
  display: flex;
  align-items: center;
}

ul.setting-tabs.customer-tabs li a i {
  height: auto !important;
}

td.dataTables_empty {
  padding: 10px !important;
}

button.btn.comt-btn {
  background: transparent;
}

.form-check input {
  margin-top: 0;
  margin-right: 6px;
}

.form-check label {
  margin-bottom: 0;
}

.form-check {
  margin-bottom: 10px;
  display: flex;
}

.checkbox + .checkbox,
.radio + .radio {
  margin-top: 0;
}

.form-check .form-check-label {
  display: flex;
}

.form-group label,
.form-check label,
p.bold {
  color: var(--black) !important;
}

/* .checkbox label:after {
    color: #fff;
    line-height: 15px;
    font-size: 11px;
    height: 17px;
    padding-left: 3px;
    padding-top: 1px;
    top: 0;
    width: 17px;
    background-color: #7100e1;
    border-radius: 3px;
} */

.checkbox input[type="checkbox"],
.checkbox input[type="radio"] {
  opacity: 1;
  z-index: 1;
}

/* .checkbox label:before,
.checkbox label:after{
    content:none !important;
} */

input[type="checkbox"],
input[type="radio"] {
  accent-color: #04aa69;
  height: 12px;
  width: 12px;
  margin-top: 0;
  box-shadow: none !important;
}

table input[type="checkbox"] {
  vertical-align: middle;
}

body.partner.leads.partner_body ul.leadStatusView,
body.leads.status.tenant_body ul.leadStatusView {
  display: none;
}

.smtp_connection {
  gap: 17px;
}

.smtp_connection input {
  margin-top: 0 !important;
  margin-right: 8px;
}

.smtp_connection .connected {
  color: var(--primary-color);
  margin-left: 15px;
  font-size: 13px;
  background: #f5f5f5;
  border-radius: 4px;
  padding: 2px 12px;
  line-height: 24px;
}

#smtp_setup .control-label,
#smtp_setup label,
.custom-checkbox label,
.custom-radio label {
  font-size: 14px !important;
  font-weight: 400;
  line-height: 24px;
  color: var(--black) !important;
  margin-bottom: 0;
  display: flex;
  align-items: center;
}

.smtp-form-row > .form-group {
  margin-bottom: 13px;
}

#RegionTable_wrapper div.dataTables_wrapper .row:nth-child(1),
#RegionTable_wrapper #DataTables_Table_0_wrapper .row:nth-child(2) {
  display: block !important;
}

/* body.app.admin .sidebar div#logo {
  width: 200px;
} */

/* body.app.admin .sidebar div#logo img {
  object-fit: cover;
  height: 50px;
  width: 200px;
} */

.sign-docs-text {
  font-family: var(--roboto);
}

.sign-docs-text li {
  color: #8a8a8d;
  margin-bottom: 24px;
  line-height: 20px;
}

/* new css */

/* #add_new_deal_modal .modal-dialog-centered {
  top: -2% !important;
} */

#add_new_deal_modal,
#view_message_modal,
.modal-dropshadow {
  background: rgba(51, 65, 85, 0.7);
}

.view-blur {
  filter: blur(4px);
  width: 100%;
  user-select: none;
  pointer-events: none;
}

.easypiechart span {
  padding-left: 12px !important;
}

.inside-con > span {
  display: none;
}

.inside-con div:last-child,
ul.progress-custom {
  display: flex;
}

ul.progress-custom {
  overflow: auto;
}

.progress-custom li {
  flex-shrink: 0;
}

table.dataTable tbody .deleteBtn,
table.dataTable tbody span.fa.fa-list-alt {
  color: #fff !important;
}

.btn.disabled {
  pointer-events: none;
}

span.circle-round {
  font-weight: bold;
  font-family: sans-serif;
  background: #8e00e6;
  display: inline-block;
  padding: 4px;
  border-radius: 100%;
  color: #fff;
  font-size: 12px;
  min-width: 25px;
  text-align: center;
}

.text-danger1 {
  color: var(--danger-clr) !important;
  display: inline-block;
  height: 10px;
  margin-right: 5px;
}

.bootstrap-select.ajax-remove-values-option:not(.select-placeholder)
  .ajax-clear-values {
  top: 50%;
  transform: translateY(-50%);
}

.tour-tour-element {
  background: #ebebeb;
  border-radius: 1px;
  box-shadow: 0px 0px 20px 0px #9595952e;
  outline: 2px solid #a9a9a9 !important;
  outline-offset: 4px;
}

.popover {
  max-width: 300px !important;
  font-family: "Poppins", sans-serif !important;
}

.popover-content {
  padding: 20px 14px 10px !important;
}

.popover-navigation {
  padding: 10px 14px 10px;
}

#deals-table > .col-md-12 .hr-panel-separator {
  margin-bottom: 0;
}

#deals-table div.table-responsive > div.dataTables_wrapper > div.row {
  padding-left: 20px !important;
  padding-right: 20px !important;
}

div.table-responsive > div.dataTables_wrapper > div.row {
  margin-bottom: 20px;
}

.panel_s .panel-body div.table-responsive > div.dataTables_wrapper > div.row:last-child{
  margin-bottom: 0;
}

#deals-table > .col-md-12 > .row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-right: -7.5px;
  margin-left: -7.5px;
}

#deals-table > .col-md-12 > .row > .col-md-12 {
  /* margin-bottom: 0; */
  display: none;
}

/* .table-responsive .dataTables_wrapper>.row>.col-sm-12{
    overflow: auto;
    max-height: 550px;
} */

div#deals-table > .col-md-12 > .table-responsive {
  max-height: unset;
}

.deals ._buttons.tw-mb-2 {
  display: flex;
  align-items: center;
  /* justify-content: space-between; */
  flex-wrap: wrap;
}

.kan-ban-body.deals ._buttons.tw-mb-2 {
  display: unset;
}

.kan-ban-body.deals ._buttons.tw-mb-2 > .tw-flex-1 {
  display: none;
}

.deals
  .deals-overview
  > #deal_state_report_div
  > .row
  > .col-lg-3
  > .panel.widget {
  min-height: 140px;
}

.deals .deals-overview {
  width: 100%;
}

.deals .deals-overview .panel.widget {
  margin-bottom: 14px;
}

.deals ._buttons.tw-mb-2 > .row {
  margin: 0;
}

.deals ._buttons.tw-mb-2 > .row > .col-sm-5 {
  width: 100%;
  padding: 0;
}

@media (min-width: 768px) {
  .kan-ban-body.deals ._buttons.tw-mb-2 > .row > .col-sm-5 {
    width: 41.66666667%;
  }
}

.deals ._buttons.tw-mb-2 > .btn.btn-primary.mright5.pull-left.display-block {
  margin-right: 10px;
}

.dataTables_filter input:focus {
  width: auto !important;
}

.deals ._buttons.tw-mb-2 + .panel_s .panel-body {
  padding: 0;
}

.form-inline .checkbox input[type="checkbox"],
.form-inline .radio input[type="radio"] {
  position: relative;
  margin-left: 0;
}

.alertify-notifier.ajs-right .ajs-message.ajs-visible {
  top: 53px;
  border-radius: 3px;
}

.alertify-notifier .ajs-message.ajs-success {
  background-color: var(--primary-color) !important;
  color: var(--white);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.4px;
}

.navbar-nav > li {
  float: left;
}

.navbar-right .dropdown-menu {
  right: 0;
  left: auto;
}

input[type="date"]::-webkit-inner-spin-button,
input[type="date"]::-webkit-calendar-picker-indicator {
  display: none;
  -webkit-appearance: none;
}

.edit-button {
  cursor: pointer;
  margin: 10px 0 10px 0;
}

.btn.comt-btn.reminder.Paid {
  pointer-events: none;
  cursor: w-resize;
  opacity: 0.3 !important;
}

.icon_field i {
  width: 30px;
  display: flex;
  background: var(--bg-color);
  align-items: center;
  justify-content: center;
  height: 32px;
  box-shadow: 0px 4px 4px 0px #00000008 inset;
  border-bottom-left-radius: 3px;
  border-top-left-radius: 3px;
}

.icon_field input {
  padding-left: 35px;
}

#append_pixel .row:not(:last-child)::after {
  content: "";
  height: 1px;
  width: calc(100% - 13px);
  background: #eee;
  margin: 15px 0 15px 5px;
  display: inline-block;
}

.alertify .ajs-modal {
  z-index: 10001 !important;
}

.modal-header,
.panel-heading {
  position: relative;
}

.modal-header .close,
.panel-heading .close,
div:where(.swal2-container) button:where(.swal2-close) {
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  margin: 0;
  font-size: 21px;
  color: var(--black);
  opacity: 1;
  outline: 2px solid transparent;
  outline-offset: 2px;
  width: 1.75rem;
  font-weight: 300;
  height: 1.75rem;
}

div:where(.swal2-container) button:where(.swal2-close) {
  font-size: 21px !important;
  color: var(--black) !important;
  width: 1.75rem !important;
  height: 1.75rem !important;
  top: 20px;
  transform: translateY(0);
}

#InvoiceTable tr td {
  cursor: pointer;
}

#InvoiceTable .dropdown .label {
}

.jconfirm-box {
  border-radius: 4px !important;
  padding: 0 !important;
}

.jconfirm .jconfirm-cell {
  vertical-align: top !important;
}

.jconfirm .jconfirm-holder {
  padding: 30px !important;
}

.jconfirm.jconfirm-white .jconfirm-bg,
.jconfirm.jconfirm-light .jconfirm-bg,
.alertify .ajs-dimmer {
  background-color: #334155b3 !important;
  opacity: 1 !important;
}

.jconfirm.jconfirm-light .jconfirm-box .jconfirm-buttons button {
  padding: 5px 16px !important;
  font-weight: 400 !important;
  font-size: 13px !important;
  text-transform: capitalize !important;
  transition: all 0.3s !important;
  margin: 0 !important;
  border-radius: 4px !important;
  line-height: 20px;
}

.jconfirm.jconfirm-light .jconfirm-box .jconfirm-buttons .btn-primary {
  border: 1px solid var(--primary-color) !important;
}

.jconfirm.jconfirm-light .jconfirm-box .jconfirm-buttons .btn-default {
  background-color: var(--bg-color) !important;
  border-color: var(--bg-color) !important;
}

/* .jconfirm.jconfirm-light .jconfirm-box .jconfirm-buttons .btn-default{
    border: 1px solid rgb(203 213 225 / 1) !important;
    background: #fff !important;
} */

.jconfirm .jconfirm-box div.jconfirm-title-c,
.jconfirm .jconfirm-box div.jconfirm-content-pane {
  padding: 21px !important;
}

.jconfirm .jconfirm-box div.jconfirm-title-c {
  border-bottom: 1px solid var(--border-clr);
}

.jconfirm .jconfirm-box div.jconfirm-content-pane {
  height: auto !important;
}

.jconfirm .jconfirm-box .jconfirm-buttons,
.alertify .ajs-footer .ajs-buttons.ajs-primary {
  padding: 0 21px 21px !important;
  float: unset !important;
  display: flex;
  flex-direction: row-reverse;
  gap: 0.5rem;
}

.alertify .ajs-footer .ajs-buttons.ajs-primary {
  padding: 0 !important;
}

.jconfirm .jconfirm-box div.jconfirm-content-pane {
  margin-bottom: 0 !important;
}

.table-staff tr td:first-of-type {
  display: flex;
}

.select2-selection.select2-selection--multiple {
  height: 32px;
  position: relative;
  border: 1px solid rgb(203 213 225 / 1) !important;
  border-radius: 3px !important;
}

.select2-container--default
  .select2-results__option--highlighted[aria-selected] {
  background-color: var(--primary-color) !important;
}

ul.select2-selection__rendered {
  height: 100%;
  padding-left: 12px !important;
  padding-right: 12px !important;
}

.select2-container--default
  .select2-selection--multiple
  .select2-selection__rendered {
  border-radius: 3px;
}

ul.select2-selection__rendered li.select2-search {
  /* margin-top: 0 !important;
    margin-bottom: 0; */
  height: 100%;
}

/* 
.select2-search__field{
    font-family: var(--roboto);
    font-size: 14px !important;
    line-height: 21px;
    color: #18181B;
    height: 100%;
    margin-top: 0 !important;

} */

.select2-selection__choice {
  border-color: #e2e8f099 !important;
  background-color: #f6f7fa !important;
}

.appointment-box {
  min-height: 226px;
  border: 1px solid var(--color-grey-3, #cccccc);
  border-radius: 4px;
  box-shadow: 0 1px 6px 0 rgb(0 0 0 / 10%);
}

.card-stripe {
  height: 5px;
  background-color: var(--primary-color);
  border-radius: 4px 4px 0 0;
  margin-top: -1px;
  margin-right: -1px;
  margin-left: -1px;
}

.appointment-box a:hover {
  text-decoration: underline;
}

.appointment-card-meta {
  flex: 1 0 auto;
}

.appointment-avatar {
  width: 32px;
  min-width: 32px;
  height: 32px;
  min-height: 32px;
  font-size: 14px;
  background: #cccccc;
}

/* .appointment-card-footer{
    border-top:1px solid #1a1a1a1a;
} */

.appointment-card-footer button {
}

.col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}

.col-lg-1,
.col-lg-10,
.col-lg-11,
.col-lg-12,
.col-lg-2,
.col-lg-3,
.col-lg-4,
.col-lg-5,
.col-lg-6,
.col-lg-7,
.col-lg-8,
.col-lg-9,
.col-md-1,
.col-md-10,
.col-md-11,
.col-md-12,
.col-md-2,
.col-md-3,
.col-md-4,
.col-md-5,
.col-md-6,
.col-md-7,
.col-md-8,
.col-md-9,
.col-sm-1,
.col-sm-10,
.col-sm-11,
.col-sm-12,
.col-sm-2,
.col-sm-3,
.col-sm-4,
.col-sm-5,
.col-sm-6,
.col-sm-7,
.col-sm-8,
.col-sm-9,
.col-xs-1,
.col-xs-10,
.col-xs-11,
.col-xs-12,
.col-xs-2,
.col-xs-3,
.col-xs-4,
.col-xs-5,
.col-xs-6,
.col-xs-7,
.col-xs-8,
.col-xs-9 {
  padding-right: 6.5px;
  padding-left: 6.5px;
}

.row {
  margin-right: -6.5px;
  margin-left: -6.5px;
}

.hr-separator {
  margin-top: 20px;
  margin-bottom: 20px;
  border-top: 1px solid var(--border-clr);
}

.boost-sale-banner .boost-text-area {
  background-color: var(--primary-color);
  width: 40%;
  border-radius: 4px 0 0 4px;
  padding: 23px;
}

.boost-sale-banner h2 {
  font-size: 32px;
  font-weight: 600;
  line-height: 35px;
  color: var(--white);
  margin: 0 0 16px;
}

.boost-sale-banner p {
  font-size: 13px;
  font-weight: 400;
  line-height: 18px;
  color: var(--white);
  margin-bottom: 22px;
}

.boost-sale-banner a {
  font-size: 13px;
  font-weight: 400;
  line-height: 1;
  color: #1e1e1e;
  background-color: var(--white);
  border-radius: 4px;
  padding: 11px 17px;
}

.boost-sale-image {
  flex: 1;
}

.boost-sale-image img {
  width: 100%;
}

.charts-dots li span,
#labelList li > span:first-child {
  height: 8px;
  width: 8px;
  display: inline-block;
  border-radius: 50%;
}

/* #doughnut,
#doughnutChart {
  width: 210px !important;
  height: 100% !important;
} */

ul#doughnutLabels.charts-dots,
ul#labelList {
  column-gap: 15px;
}

.tw-w-auto {
  width: auto;
}

.chart-select select {
  font-size: 10px;
  font-weight: 400;
  line-height: 20px;
  color: var(--black) !important;
  background-size: 9px;
  padding: 7px 30px 7px 7px;
  height: auto !important;
  background-color: #f5f6f7;
  border-radius: 2px;
  background-image: url(/assets/images/icons/down-arrow-dark.svg);
  border: none;
}

.custom-input-1 {
  color: #746674;
}

.custom-input-1::placeholder {
  color: #746674 !important;
  font-size: 15px;
}

.toggler input:checked + .toggle-slide.custom-color-slide {
  background-color: #00ae6a !important;
}

.mb-0 {
  margin-bottom: 0px;
}

/* 
.btn-secondary {
    padding: 10px 21px !important;
    background-color: #00AE6A !important;
    color: #FFFFFF !important;
} */

@media (min-width: 992px) {
  .col-md-10-2 {
    max-width: 20%;
  }
}

#table-voice_receptionist_wrapper.dataTables_wrapper > .row:nth-child(2) {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  justify-content: flex-end;
}

.dataTables_wrapper > .row:nth-child(2) > .col-md-7,
.dataTables_wrapper > .row:nth-child(2) > .col-md-5 {
  width: auto;
}

div.dataTables_wrapper div.dataTables_length label {
  margin-bottom: 0;
}

.switch-kanban,
.btn-actions-md {
  background-color: var(--bg-color);
  border-radius: 4px;
  padding: 5px 10px;
  border: 1px solid var(--bg-color);
}

.btn-actions-md {
  height: 32px;
  width: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-actions {
  height: 22px;
  width: 22px;
  border-radius: 2px;
  background-color: var(--bg-color);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
}

.btn-actions:hover {
  background-color: var(--bg-color);
}

.btn-actions img {
  height: 12px;
  width: 12px;
}

.btn-actions i {
  font-size: 10px;
}

.btn-actions:not(:last-of-type) {
  margin-right: 5px;
}

.table-striped > tbody > tr:nth-of-type(odd) {
  background-color: transparent;
}

.deals-tabs {
  border: none;
}

.deals-tabs.nav-tabs > li.active > a,
.deals-tabs.nav-tabs > li.active > a:focus,
.deals-tabs.nav-tabs > li.active > a:hover {
  color: var(--black);
  border-color: var(--primary-color);
  border-width: 0 0 1px;
}

.deals-tabs.nav-tabs > li.active > button{
  color: var(--black);
  border-bottom: 1px solid var(--primary-color);
}

.nav-tabs>li>button:hover {
  --tw-border-opacity: 1;
  border-bottom-width: 1px !important;
  border-color: rgb(203 213 225 / var(--tw-border-opacity)) !important;
  border-bottom-style: solid !important;
}

.deals-tabs.nav-tabs > li {
  padding: 0 15px;
}

.deals-tabs.nav-tabs > li:first-of-type {
  padding-left: 0;
}

.deals-tabs.nav-tabs > li > a,
.deals-tabs.nav-tabs > li > button  {
  font-size: 15px;
  font-weight: 400;
  line-height: 1;
  color: var(--text-light);
  padding: 7px 0;
  margin: 0;
}
.deals-tabs.nav-tabs > li > button{
  background-color: transparent;
  border:none
}

.deals-tabs.nav-tabs > li.active > a,
.deals-tabs.nav-tabs > li.active > button{
  font-weight: 600;
}

.side-tabs .nav-tabs > li {
  padding: 0;
}

.side-tabs .deals-tabs {
}

.side-tabs .deals-tabs.nav-tabs > li.active > a,
.side-tabs .deals-tabs.nav-tabs > li.active > a:focus,
.side-tabs .deals-tabs.nav-tabs > li.active > a:hover,
.side-tabs .deals-tabs.nav-tabs > li > a:hover {
  border: none;
  background: var(--bg-color);
}

.side-tabs .deals-tabs.nav-tabs > li > a {
  padding: 8px 12px;
  color: var(--black);
  font-size: 13px;
  font-weight: 400;
  line-height: 1;
}

.side-tabs .deals-tabs.nav-tabs > li:not(:first-of-type) > a {
  margin-top: 0.5rem;
}

.nav-tabs > li.active > a,
.nav-tabs > li.active > a:focus,
.nav-tabs > li.active > a:hover {
  margin-bottom: 0;
}

.deals-details {
  padding-top: 15px;
  padding-bottom: 15px;
  word-break: break-all;
}

.deals-details:first-of-type {
  padding-top: 0;
}

/* .deals-details:last-of-type{
    padding-bottom: 0px;
} */

.deals-details:not(:last-child) {
  border-bottom: 1px solid var(--border-clr);
}

.deals-details p,
.deals-details label,
.deals-details .task-user a {
  font-size: 15px;
  font-weight: 400;
  line-height: 1;
  color: var(--black);
  /* text-transform: capitalize; */
  margin-bottom: 0;
}

/* .task_details .deals-details p{
    text-transform: capitalize;
} */

.event-details .deals-details p {
  text-transform: none;
}

.deals-details label {
  color: var(--text-light);
  min-width: 150px;
}

.email-tabs .nav-tabs {
  gap: 23px;
  border: none;
}

.email-tabs .nav-tabs::after,
.email-tabs .nav-tabs::before {
  content: none;
}

.email-tabs .nav-tabs > li {
  flex: 1;
  border: 1px solid var(--border-clr);
  border-radius: 4px;
  overflow: hidden;
}

.email-tabs .nav-tabs > li > a {
  text-align: center;
  font-size: 15px;
  font-weight: 400;
  line-height: 24px;
  color: var(--text-light);
  margin: 0 !important;
}

.email-tabs .nav-tabs > li > a:hover {
  border-bottom: 0;
}

.email-tabs .nav-tabs > li.active > a,
.email-tabs .nav-tabs > li.active > a:focus,
.email-tabs .nav-tabs > li.active > a:hover {
  border: none;
  color: var(--black);
  font-weight: 600;
  background-color: #f5f5f5;
}

.control-label-1 {
  font-size: 15px;
  font-weight: 600;
}

.block-label {
  display: block;
  line-height: 1;
  margin-top: 8px;
}

.block-label {
  display: block;
  line-height: 1;
  margin-top: 8px;
}

.requested-btn {
  background-color: #efefef;
  border: 0px;
  padding: 11px 17px;
  border-radius: 4px;
  color: #000000;
  font-weight: 400;
  font-family: var(--roboto);
  display: block;
}

.toggler input:checked + .custom-color-slide {
  background-color: #00ae6a;
}

.toggler .custom-color-slide {
  background-color: var(--border-clr);
}

/* .nav-tabs>li>a:hover{
    border: none;
} */

.custom-radio input[type="radio"] {
  display: none;
}

.custom-radio label {
  position: relative;
  padding-left: 24px;
  cursor: pointer;
  letter-spacing: 0.3px;
}

.custom-radio label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 17px;
  height: 17px;
  border: 1px solid var(--primary-color);
  border-radius: 50%;
  background: #fff;
}

.custom-radio input[type="radio"]:checked + label::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 50%;
  transform: translateY(-50%);
  width: 9px;
  height: 9px;
  background: var(--primary-color);
  border-radius: 50%;
}

.events-table #messageTable_wrapper > .col-sm-12 {
  max-height: 70vh;
  min-height: 0.01%;
  overflow-x: auto;
}

.event-key-wrapper {
  padding: 45px;
}

.event-key-wrapper .event-key-inner {
  max-width: 290px;
  margin: auto;
}

.event-key-input input {
  padding-right: 35px;
}

.appointment-note {
  list-style: disc;
  padding-left: 15px;
}

.appointment-note li {
  margin-bottom: 10px;
}

.event-key-input button {
  position: absolute;
  top: 50%;
  right: 3px;
  padding: 2px 7.5px !important;
  transform: translateY(-50%);
  height: calc(100% - 6px);
}

.ui-widget.ui-widget-content,
.form-group>.bootstrap-tagsinput {
  padding: 0;
  background: #fff;
  margin-bottom: 0;
  font-family: var(--roboto);
  font-size: 13px;
  font-weight: 400;
  line-height: 20px;
  color: var(--black) !important;
  border: 1px solid var(--border-clr) !important;
  border-radius: 3px;
}

.form-group>.bootstrap-tagsinput{
  width:100%;
}

.form-group .bootstrap-tagsinput>input {
  border: 0 !important;
}

.task-user .ui-widget.ui-widget-content {
  margin-bottom: 0;
}

.ui-button.ui-state-active:hover,
.ui-button:active,
.ui-state-active,
.ui-widget-content .ui-state-active,
.ui-widget-header .ui-state-active,
a.ui-button:active {
  font-weight: 400;
  color: var(--black);
  border: none;
  background: none;
}

.req.text-danger,
.control-label .text-danger {
  float: right;
}

.req.text-danger {
  margin-top: -5px;
}

.daterangepicker td.active,
.daterangepicker td.active:hover {
  background-color: var(--primary-color) !important;
}

.daterangepicker td.off,
.daterangepicker td.off.in-range,
.daterangepicker td.off.start-date,
.daterangepicker td.off.end-date {
  color: #e4e4e4 !important;
}

.icon.header-setup .tw-flex.tw-gap-2 img {
  height: 18px;
  width: 18px;
}

.alert-success,
.alert-info {
  border-radius: 4px;
}

.alert {
  z-index: 999 !important;
}

/* #leadFilter .panel,
#leadFilter .panel-body, 
#leadFilter .panel_s{
    overflow: visible;
} */
.new-alert {
  background-color: var(--primary-color);
  padding: 8px 0px;
  text-align: center;
  position: sticky;
  top: 0;
  z-index: 999;
}

.new-alert p {
  color: var(--white);
  font-size: 14px;
  font-weight: 500;
  line-height: 18px;
}

.skeleton-loader {
  position: relative;
  padding: 19px 11px;
  border-radius: 4px;
  height: 100%;
  border: 1px solid var(--border-clr);
  overflow: hidden;
}

.skeleton-proposal{
  border: none;
  padding: 0;
}

.skeleton-charts {
  height: 298px;
}

.skeleton-loader:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(
    110deg,
    rgba(227, 227, 227, 0) 0%,
    rgba(227, 227, 227, 0) 40%,
    rgba(227, 227, 227, 0.5) 50%,
    rgba(227, 227, 227, 0) 60%,
    rgba(227, 227, 227, 0) 100%
  );
  animation: gradient-animation_2 1.2s linear infinite;
}

.skeleton-loader .wrapper {
  width: 100%;
  height: 100%;
  position: relative;
}

.skeleton-loader .wrapper .loader-lines,
.skeleton-loader .loader-box {
  background-color: var(--bg-color);
}

.skeleton-loader .line-1 {
  width: 100%;
  height: 15px;
}

.skeleton-loader.skeleton-proposal .line-1{
  height: 48px;
}

.skeleton-loader .line-2 {
  width: 15px;
  height: 21px;
}

.skeleton-loader .line-3 {
  width: 52px;
  height: 21px;
}

.skeleton-loader .loader-box {
  width: 100%;
  height: 225px;
  margin-top: 20px;
}

.skeleton-loader.skeleton-proposal .loader-box{
  border-radius: 12px;
  margin-top: 37px;
}

.skeleton-loader.skeleton-proposal .loader-label{
  height: 20px;
  margin-bottom: 15px;
  width: 40%;
}

.skeleton-loader.skeleton-proposal .loader-field{
  height: 44px;
  margin-bottom: 15px;
}

.skeleton-loader.skeleton-proposal .loader-textarea{
  height: 150px;
  margin-bottom: 15px;
}


.skeleton-loader.skeleton-proposal .loader-radio{
  height: 24px;
  width: 130px;

}

@keyframes gradient-animation_2 {
  0% {
    transform: translateX(-100%);
  }

  100% {
    transform: translateX(100%);
  }
}

.disable-pointer {
  pointer-events: none;
}

.card-meta {
  gap: 15px;
}

.card-meta .card-image {
  background-color: #00579f;
  height: 51px;
  width: 51px;
  border-radius: 5px;
}

.card-meta .card-image img {
  width: 38px;
}

.card-meta .btn-actions {
  margin-left: auto;
}

#card-element {
  border: 1px solid var(--border-clr);
  border-radius: 3px;
  padding: 6px 12px;
  box-shadow: 0px 4px 4px 0px #00000008 inset;
}

/* .nav-tabs>li.active>a, 
  .nav-tabs>li.active>a:focus, 
  .nav-tabs>li.active>a:hover{
    color: var(--primary-color);
    border-color: var(--primary-color);
  } */

p.initializer {
  display: block;
  text-align: center;
  padding: 3rem;
  text-transform: uppercase;
  font-size: 19px;
  color: var(--black);
}

.text-separator hr {
  border-color: var(--border-clr);
}

.text-separator span {
  white-space: nowrap;
}

/* .additional-qa-wrapper{
    position: relative;
    padding-left: 20px;
}

.additional-qa-wrapper:before {
    content: counter(wrapper-counter) " ";
    counter-increment: wrapper-counter;
    position: absolute;
    left: 0;
    top: 1px;
    font-size: 14px;
    font-weight: 500;
    line-height: 22px;
    margin-bottom: 5px;
} */

.additional-qa-wrapper:last-of-type hr {
  display: none;
}

/* .additional-qa-wrapper:first-of-type{
    margin-top: 15px;
} */

.copy-affiliate-link {
  border: 1px solid var(--primary-color);
  background-color: #e4fff5;
  border-radius: 4px;
  padding: 50px;
  color: var(--black);
  font-weight: 600;
  line-height: 25px;
}

.copy-affiliate-link h4 {
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 24px;
  margin-top: 0;
}

.copy-affiliate-link h2 {
  font-size: 25px;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 24px;
  margin-top: 0;
}

.review-container .review:not(:first-of-type) {
  margin-top: 40px;
}

.author-avatar {
  border-radius: 50%;
  width: 42px;
  height: 42px;
}

.star {
  margin-right: 3px;
}

.review-content {
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  color: var(--black);
}

.delete-form {
  position: absolute;
  bottom: 0;
  left: 90px;
}

.date-container {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.date-container input {
  max-width: 200px;
  margin-left: 10px;
}

.date-container button {
  margin-left: 10px;
}

.google-account-listing {
  border-radius: 4px;
  border: 1px solid var(--border-clr);
}

.google-account-listing .google-account-header {
  padding: 38px 62px;
  background-color: #f2f2f2;
}

.google-account-body {
  padding: 38px 62px;
}

.liveforce-address,
.no-listing-found {
  font-size: 15px;
  font-weight: 500;
  line-height: 23px;
  color: var(--black);
}

.no-listing-found {
  font-weight: 400;
}

.google-account-body .location-list {
  margin: 0;
}

.location-item {
  padding: 15px;
  border: 1px solid var(--border-clr);
  border-radius: 4px;
  margin-bottom: 10px;
  background-color: var(--bg-color);
  transition: background-color 0.3s ease;
}

.location-item:last-child {
  margin-bottom: 0;
}

.location-item:hover {
  background-color: #f1f1f1;
}

.location-item input[type="submit"] {
  text-decoration: none;
  color: var(--black);
  font-size: 16px;
  line-height: 20px;
  font-weight: 500;
  border: none;
  background: none;
  cursor: pointer;
  padding: 0;
  margin-bottom: 6px;
}

.location-item input[type="submit"]:hover {
  color: var(--primary-hover);
}

.review-recipients {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  margin-bottom: 0;
}

/* .review-recipients li {
    border-right: 1px solid var(--border-clr);
} */

.review-recipients li {
  padding: 15px 22px;
  border-bottom: 1px solid var(--border-clr);
  border-left: 1px solid var(--border-clr);
}

/* .review-recipients li:empty{
    display: none;
} */

.review-recipients li:nth-child(6n) {
  border-right: 1px solid var(--border-clr);
  margin-right: 0 !important;
}

.review-recipients li:nth-child(-n + 6) {
  border-top: 1px solid var(--border-clr);
}

.review-recipients li:last-child {
  border-right: 1px solid var(--border-clr);
  margin-right: -1px;
}

#access_token-error {
  position: absolute;
}

.email-list {
  display: inline-block;
  color: var(--black);
  background: var(--bg-color);
  padding: 5px 10px;
  font-size: 13px;
  position: relative;
  border-radius: 3px;
  margin-bottom: 0;
}


.spinner {
  font-size: 18px;
  position: relative;
  display: inline-block;
  width: 1em;
  height: 1em;
}

.spinner .spinner-blade {
  position: absolute;
  left: 0.4629em;
  bottom: 0;
  width: 0.074em;
  height: 0.2777em;
  border-radius: 0.0555em;
  background-color: transparent;
  -webkit-transform-origin: center -0.2222em;
  -ms-transform-origin: center -0.2222em;
  transform-origin: center -0.2222em;
  animation: spinner-fade9234 1s infinite linear;
}

.spinner .spinner-blade:nth-child(1) {
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
  -webkit-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  transform: rotate(0deg);
}

.spinner .spinner-blade:nth-child(2) {
  -webkit-animation-delay: 0.083s;
  animation-delay: 0.083s;
  -webkit-transform: rotate(30deg);
  -ms-transform: rotate(30deg);
  transform: rotate(30deg);
}

.spinner .spinner-blade:nth-child(3) {
  -webkit-animation-delay: 0.166s;
  animation-delay: 0.166s;
  -webkit-transform: rotate(60deg);
  -ms-transform: rotate(60deg);
  transform: rotate(60deg);
}

.spinner .spinner-blade:nth-child(4) {
  -webkit-animation-delay: 0.249s;
  animation-delay: 0.249s;
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}

.spinner .spinner-blade:nth-child(5) {
  -webkit-animation-delay: 0.332s;
  animation-delay: 0.332s;
  -webkit-transform: rotate(120deg);
  -ms-transform: rotate(120deg);
  transform: rotate(120deg);
}

.spinner .spinner-blade:nth-child(6) {
  -webkit-animation-delay: 0.415s;
  animation-delay: 0.415s;
  -webkit-transform: rotate(150deg);
  -ms-transform: rotate(150deg);
  transform: rotate(150deg);
}

.spinner .spinner-blade:nth-child(7) {
  -webkit-animation-delay: 0.498s;
  animation-delay: 0.498s;
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.spinner .spinner-blade:nth-child(8) {
  -webkit-animation-delay: 0.581s;
  animation-delay: 0.581s;
  -webkit-transform: rotate(210deg);
  -ms-transform: rotate(210deg);
  transform: rotate(210deg);
}

.spinner .spinner-blade:nth-child(9) {
  -webkit-animation-delay: 0.664s;
  animation-delay: 0.664s;
  -webkit-transform: rotate(240deg);
  -ms-transform: rotate(240deg);
  transform: rotate(240deg);
}

.spinner .spinner-blade:nth-child(10) {
  -webkit-animation-delay: 0.747s;
  animation-delay: 0.747s;
  -webkit-transform: rotate(270deg);
  -ms-transform: rotate(270deg);
  transform: rotate(270deg);
}

.spinner .spinner-blade:nth-child(11) {
  -webkit-animation-delay: 0.83s;
  animation-delay: 0.83s;
  -webkit-transform: rotate(300deg);
  -ms-transform: rotate(300deg);
  transform: rotate(300deg);
}

.spinner .spinner-blade:nth-child(12) {
  -webkit-animation-delay: 0.913s;
  animation-delay: 0.913s;
  -webkit-transform: rotate(330deg);
  -ms-transform: rotate(330deg);
  transform: rotate(330deg);
}

@keyframes spinner-fade9234 {
  0% {
    background-color: #fff;
  }

  100% {
    background-color: transparent;
  }
}

.additional-link-wrapper .btn-actions,
.additional-wrapper .btn-actions,
#add-link-field,
.add-btn,
.additional-location-wrapper .btn-actions,
.additional-qa-wrapper .btn-actions,
.remove_website_fields.btn-actions {
  height: 32px;
  width: 32px;
  flex-shrink: 0;
  cursor: pointer;
}

.transaction-html-info-col-left address.invoice-html-company-info,
.invoice-html-bill-to,
.transaction-html-info-col-right p.invoice-html-date,
.transaction-html-info-col-right p.invoice-html-duedate,
.invoice-html-customer-billing-info,
.total_amount .amount-due,
.total_amount .total {
  color: var(--text-light) !important;
  font-size: 13px !important;
  font-weight: 400 !important;
  line-height: 18px !important;
}

.viewinvoice p.invoice-html-date span.tw-font-medium,
.viewinvoice p.invoice-html-date span.tw-font-medium a,
.viewinvoice p.invoice-html-duedate span.tw-font-medium,
.invoices p.invoice-html-date span.tw-font-medium,
.invoices p.invoice-html-date span.tw-font-medium a,
.invoices p.invoice-html-duedate span.tw-font-medium {
  color: var(--black);
  font-size: 13px;
  font-weight: 400;
  line-height: 18px;
}

.total_amount .amount-due .p-title:nth-child(2) {
  color: var(--dark-clr2);
}

.alertify .ajs-commands {
  margin: 0 !important;
  right: 21px !important;
  top: 19px;
}

.alertify .ajs-dialog {
  margin: 30px auto !important;
  padding: 0 !important;
  border-radius: 4px;
  max-width: 600px !important;
}

.alertify .ajs-header {
  margin: 0 !important;
  font-size: 15px;
  font-weight: 600 !important;
  line-height: 24px;
  margin: 0;
  color: var(--black);
  border-bottom: 1px solid #e5e5e5;
  padding: 21px !important;
  border-radius: 4px 4px 0 0;
}

.alertify .ajs-body .ajs-content {
  padding: 21px !important;
  color: var(--black);
  font-size: 13px;
  font-weight: 400;
  line-height: 18px;
  margin-bottom: 0;
}

.alertify .ajs-footer {
  margin: 0 !important;
  padding: 0 21px 21px !important;
  border-radius: 0 0 4px 4px;
}

.alertify .ajs-footer .ajs-buttons.ajs-primary .ajs-button {
  margin: 0 !important;
  min-width: unset;
  min-height: unset;
}

.alertify-notifier {
  z-index: 100001 !important;
}

.blur-leads {
  height: 100vh;
  width: 100%;
  display: block;
  background: url(/assets/images/blur.png);
  background-repeat: no-repeat;
  background-size: cover;
}

div:where(.swal2-container) h2:where(.swal2-title) {
  border-bottom: 1px solid var(--border-clr);
}

div:where(.swal2-container) h2:where(.swal2-title),
div:where(.swal2-container) .swal2-html-container {
  padding: 21px !important;
  text-align: start !important;
}

div:where(.swal2-container) div:where(.swal2-actions) {
  padding: 0px 21px 21px !important;
  margin: 0 !important;
  justify-content: end !important;
  gap: 5px;
}

div:where(.swal2-container) div:where(.swal2-popup) {
  padding: 0 !important;
}

.swal2-html-container {
  color: var(--black) !important;
  font-size: 13px !important;
  font-weight: 400 !important;
  line-height: 18px !important;
  margin-bottom: 0 !important;
}

div:where(.swal2-icon).swal2-success {
  display: none !important;
}

div:where(.swal2-container) button:where(.swal2-styled) {
  margin: 0 !important;
}

.swal2-actions button {
  border-radius: 4px;
  color: var(--white) !important;
  background: var(--primary-color);
  padding: 5px 16px;
  font-weight: 400;
  font-size: 13px;
  border: 1px solid var(--primary-color);
  text-transform: capitalize;
  transition: all 0.3s;
}

.swal2-actions button.swal2-confirm {
  order: 4;
}

.swal2-actions button.swal2-cancel {
  border: 1px solid var(--bg-color);
  background-color: var(--bg-color);
  order: 3;
  color:var(--black) !important;
}

.link-list,
.qa-list {
  max-height: 70vh;
  overflow: hidden auto;
  padding-right: 6px;
  margin-right: -6px;
}

.qa-list {
  max-height: 100vh;
  margin-top: 15px;
  /* counter-reset: wrapper-counter; */
}

.link-list:empty {
  display: none;
}

.process-svg.bg-none-color .rounded-svg-disabled {
  background-color: var(--border-clr) !important;
  color: var(--border-clr) !important;
  border-color: var(--border-clr);
}

.deals-actions {
  gap: 8px 15px;
}

.deals-actions a {
  background-color: var(--bg-color);
  border: 1px solid var(--border-clr);
  padding: 9px;
  border-radius: 8px;
  cursor: pointer;
}

.deals-actions a img {
  height: 24px;
}

/* .contact-actions a {
    background-color: var(--bg-color);
    border: 1px solid var(--border-clr);
    padding: 6px;
    border-radius: 4px;
    cursor: pointer;
}

.contact-actions a img {
    height: 16px;
} */

label[for="stage_id"] small {
  display: none;
}

.ui-widget-header {
  background: var(--primary-color);
  border-color: var(--primary-color);
}

.ui-state-highlight,
.ui-widget-content .ui-state-highlight,
.ui-widget-header .ui-state-highlight,
.ui-widget-content .ui-state-hover {
  background: #00ae6a80;
  border-color: var(--primary-color);
}

.ui-widget-content .ui-state-hover {
  color: var(--black);
}

.ui-datepicker .ui-datepicker-next,
.ui-datepicker .ui-datepicker-prev {
  cursor: pointer;
}

.ui-state-hover .ui-icon {
  background-image: url("../plugins/jquery-ui/images/ui-icons_ffffff_256x240.png");
}

.ui-datepicker .ui-datepicker-next-hover,
.ui-datepicker .ui-datepicker-prev-hover {
  top: 2px;
}

.ui-datepicker .ui-datepicker-prev-hover {
  left: 2px;
}

.ui-datepicker .ui-datepicker-next-hover {
  right: 2px;
}

.event-detail-table th {
  min-width: 130px;
}

.event-detail-table td {
  word-break: break-all;
}

.unbind {
  background: #ddd !important;
  color: #8b8a8a !important;
  border: 1px solid #dfdfdf !important;
}

li.menu-item-rest_api {
  display: none;
}

.switch_btn {
  line-height: 1px;
  font-size: 13px;
  color: var(--black) !important;
  width: 117px;
}

/* .chat_widget div span {
    color: #a55a5a;
    font-weight: bold;
    text-align: center;
} */

.uploading {
  pointer-events: none;
  background: #dddddd99;
}
input.form-control.urls.failed_status {
  border: 1px solid red;
}

#attachment_info a {
  height: 50px;
  width: 50px;
  display: block;
  border: 1px solid var(--border-clr);
}

#attachment_info a img {
  object-fit: cover;
}

.radio-collapse {
  border: 1px solid var(--border-clr);
  border-radius: 4px;
}

.radio-collapse .radio-group {
  padding: 10px 17px;
  border-bottom: 1px solid var(--border-clr);
}

.radio-collapse .collapse-body {
  background-color: transparent;
}

.radio-collapse .collapse-body {
  padding: 20px;
}
.instruction-body {
  background: #efefef;
  padding: 20px;
  border-radius: 4px;
}

.action-dropdown .dropdown-toggle img {
  transform: rotate(90deg);
  height: 15px;
}

.action-dropdown-menu.dropdown-menu {
  padding: 0;
}

ul.dropdown-menu.action-dropdown-menu li {
  padding: 6px 15px;
}

ul.dropdown-menu.action-dropdown-menu li:empty {
  display: none;
}

ul.dropdown-menu.action-dropdown-menu li:last-child {
  padding-bottom: 15px;
}

ul.dropdown-menu.action-dropdown-menu li:nth-child(2) {
  padding-top: 15px;
}

ul.dropdown-menu.action-dropdown-menu li a {
  gap: 6px;
  font-size: 12px;
  font-weight: 400;
  line-height: 1;
  padding: 0;
}

ul.dropdown-menu.action-dropdown-menu li input {
  height: auto !important;
  line-height: 1;
}

ul.dropdown-menu.action-dropdown-menu li img {
  width: 15px;
  height: 15px;
}

ul.dropdown-menu.action-dropdown-menu li.onlykeys {
  padding: 10px 15px;
  border-bottom: 1px solid var(--border-clr);
}
ul.dropdown-menu.action-dropdown-menu li.onlykeys span {
  font-size: 13px;
  font-weight: 500;
  line-height: 1;
  color: var(--black);
}

.btn-large {
  width: 40%;
  margin: 0 auto !important;
  display: block;
}

a.btn-color-orange:hover {
  background: #fc7330;
  border-color: #fc7330;
}

a.btn-color-orange {
  background: #fc7330;
  border-color: #fc7330;
}

address:empty {
  display: none;
}

#clientInvoices {
  height: auto !important;
  width: 100% !important;
}

.proposal-footer tr td {
  padding: 5px 0 5px !important;
  border: none !important;
  vertical-align: middle !important;
}

.proposal-footer tr td.subtotal,
.proposal-footer tr td.discount-total,
.proposal-footer tr td.adjustment,
.proposal-footer tr td.total {
  padding-left: 10px !important;
  text-align: end;
}

.toggle-password-wrapper {
  position: relative;
}

.toggle-password-wrapper .toggle-password-button {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  background-color: transparent;
  padding: 0;
  border: none;
}

.proposal-html-info br,
.proposal-html-company-info:empty,
.proposal-html-info:empty {
  display: none;
}

.proposal-html-info a,
.proposal-html-company-info a {
  display: block;
}

.proposal-html-info * {
  margin-bottom: 16px !important;
}
.table.items .main,
table.product_table tr.main {
  margin-top: 35px;
  background-color: #f9fafb;
}
.table span.select2 {
  width: 100% !important;
}
.table.items .main td {
  border-left: none;
  vertical-align: top;
}

.table.items tbody tr.main td:first-child,
.table.product_table tbody tr.main td:nth-child(2) {
  border-left: 1px solid var(--border-clr);
}
a#add_new_product {
  color: var(--primary-color);
  font-weight: 500;
}
#product-details table tr:not(.main) td {
  border-left: none !important;
  border-right: none !important;
  border-radius: 0 !important;
  vertical-align: top;
  vertical-align: middle;
}

#product-details table tr td:last-child,
#savePackageInfo table tr td:last-child {
  text-align: center;
}

table.proposal-footer tr td.total.p-title {
  text-align: end !important;
  color: var(--dark-clr2);
  font-size: 13px !important;
  line-height: 18px;
}

/* #product-details table tr:nth-child(2) td{
    border-top: 1px solid var(--border-clr) !important;
} */

/* #product-details table td{
    padding: 20px 10px !important;
} */

#product-details table tbody tr:hover,
table.proposal-items-preview tbody tr:hover {
  background-color: transparent;
}

.proposal-items-preview.table.dataTable > thead::after {
  content: unset;
}

.proposal-items-preview.table.dataTable
  > thead:first-child
  > tr:first-child
  > th,
table.proposal-items-preview.dataTable thead > tr > th,
table.proposal-items-preview.dataTable tbody td {
  /* border: none !important; */
  padding: 10px 20px !important;
  /* border-radius: 0; */
}

/* table.proposal-items-preview.dataTable tbody tr:first-child td {
  border-top: none !important;
} */

#product-details table .form-control[readonly],
#savePackageInfo table .form-control[readonly] {
  background-color: var(--white);
}

.eventToggler[disabled] + label {
  color: var(--text-light) !important;
}

.form-control[disabled] + button {
  background-color: #eef1f6;
}

select option:hover {
  background: orange;
}

.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker
  .xdsoft_timepicker
  .xdsoft_time_box
  > div
  > div.xdsoft_current {
  background-color: var(--primary-color);
}

.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  background-color: var(--primary-hover) !important;
  color: var(--white) !important;
}

.table-proposals.table.dataTable > tbody td:last-child,
.table-proposals.table.dataTable > tbody td:nth-last-child(2),
.table-proposals.table.dataTable > thead:first-child > tr:first-child > th:last-child {
  text-align: center;
}

.table-proposals.table.dataTable > thead:first-child > tr:first-child > th:last-child::after{
display:none;

}
.table-proposals.table.dataTable > thead:first-child > tr:first-child > th:last-child{
  pointer-events: none;
}

.table.proposal-items-preview.dataTable
  > thead:first-child
  > tr:first-child
  > th:last-child,
.table.proposal-items-preview.dataTable > tbody td:last-child {
  text-align: end;
}

#proposal-wrapper .total_amount {
  border-top: none;
  padding: 0;
}

.stripe-fields {
  gap: 20px;
}

#proposal-wrapper input[type="checkbox"],
#proposal-wrapper input[type="radio"] {
  accent-color: var(--dark-clr2);
}

#proposal-wrapper .custom-checkbox input:checked + label:before {
  background-color: var(--dark-clr2);
  border-color: var(--dark-clr2);
}

.signature-pad--body {
  border-color: var(--border-clr);
}

#proposal-wrapper .bootstrap-select .dropdown-menu li a:hover {
  background-color: var(--dark-clr2);
  color: var(--white);
}

/* .agreement-box{
    border: 1px solid var(--border-clr);
    padding: 30px;
    margin-bottom: 20px;
    border-radius: 4.28px;
} */

.agreement-box ol {
  padding-left: 17px;
  margin: 0;
  color: var(--black);
  font-size: 13px;
  font-weight: 400;
  line-height: 24px;
  list-style: initial;
}

.agreement-box ol li:not(:last-child) {
  margin-bottom: 25px;
}

td.rate {
  position: relative;
}
td .add_price {
  display: none;
  position: absolute;
  right: 10px;
  width: calc(100% - 20px);
  z-index: 99;
}

.estimate-items-table td.rate .bootstrap-select,
.product_table td.rate .bootstrap-select {
  width: 100%;
}

a.add_price_act.btn.btn-default {
  position: absolute;
  top: 1px;
  right: 1px;
  height: 30px;
  padding: 5px 10px;
}

table.estimate-items-table tbody tr:not(.main) td:first-child {
  display: none;
}

.radio-primary input[type="radio"]:checked + label:before {
  border-color: var(--primary-color);
}
.radio-primary input[type="radio"]:checked + label:after {
  background-color: var(--primary-color);
}

.proposal-status h1 {
  font-size: 25px;
  line-height: 35px !important;
  font-weight: 400;
  color: #121131;
  margin: 5px !important;
}

.form-group.disabled,
.col-md-1.disabled,
.col-md-2.disabled,
.col-md-3.disabled,
.col-md-4.disabled,
.col-md-5.disabled,
.col-md-6.disabled,
.col-md-7.disabled,
.col-md-8.disabled,
.col-md-9.disabled,
.col-md-10.disabled,
.col-md-11.disabled,
.col-md-12.disabled {
  pointer-events: none;
}

/* .form-group.disabled .dropdown,
.col-md-1.disabled .dropdown,
.col-md-2.disabled .dropdown,
.col-md-3.disabled .dropdown,
.col-md-4.disabled .dropdown,
.col-md-5.disabled .dropdown,
.col-md-6.disabled .dropdown,
.col-md-7.disabled .dropdown,
.col-md-8.disabled .dropdown,
.col-md-9.disabled .dropdown,
.col-md-10.disabled .dropdown,
.col-md-11.disabled .dropdown,
.col-md-12.disabled .dropdown{
    background-color: rgba(45, 62, 80, .79);
} */

.usage {
  position: absolute;
  right: 36px;
  top: 0;
  border: 0;
  border-radius: 0 !important;
  outline: none;
  border-left: 1px solid var(--border-clr);
  border-right: 1px solid var(--border-clr);
  text-align: center;
  font-size: 10px;
  padding: 3px;
  width: 80px;
  background: transparent;
  text-align: start;
}

.overlay-full {
  position: relative;
}

.overlay-full:after {
  content: "";
  height: 100%;
  width: 100%;
  background: #ffffff91;
  display: block;
  position: absolute;
  top: 0;
  z-index: 99999;
}

.formbuilder-inner .select2-container {
  width: 100% !important;
}

table.table.dataTable.table-main-estimate-edit tr.main:hover,
table.table.dataTable.product_table tr.main:hover {
  background-color: #f9fafb !important;
}
table.table.dataTable.table-main-estimate-edit
  tr.main
  .col-md-12.package_selec {
  padding: 0;
}
.proposals.new_proposal span.select2.select2-container button.select2-selection__clear,
.proposals.proposal span.select2.select2-container button.select2-selection__clear {
  display: none;
}
table.table.dataTable.product_table tr.main td:nth-child(2),
div#product_select_wrapper table.table.dataTable th:first-child {
  border-left: 1px solid var(--border-clr);
}
table.table.dataTable.product_table tr.main td,
div#product_select_wrapper table.table.dataTable th {
  border-left: 0;
}
div#product_select_wrapper table.table.dataTable th:first-child {
  border-radius: 4px 0 0 4px !important;
}
div#product_select_wrapper table.table.dataTable th:nth-child(2) {
  border-left: 0 !important;
  border-radius: 0 !important;
}
table.table.dataTable.product_table tr.main td:first-child {
  border-left: 1px solid var(--border-clr) !important;
}
table.table.dataTable.estimate-items-table.items.table-main-estimate-edit th {
  min-width: auto;
}
.has-error span.select2-selection.select2-selection--single {
  border-color: rgb(239 68 68 / var(--tw-border-opacity)) !important;
}
.select2-container--default
  .select2-selection--single
  .select2-selection__placeholder {
  color: #555;
}
.customer_wrap {
  position: relative;
}
.customer_wrap p#customerDropdown-error {
  position: absolute;
  bottom: -20px;
  left: 0;
}

.integration-box-wrapper .integration-image img {
  width: 69%;
}

#clientCalender ul{
  list-style: decimal;
  padding-left: 15px;
}

#clientCalender ul li{
  margin-bottom: 5px;
}

.free_tier .free_tier_input{
  position: relative;
  width: 140px; 
}

.free_tier button{
height: 32px;
width: 140px;
}

.free_tier input{
  position: absolute;
  left: 0;
  top: 0;
  height: 32px;
  width: 140px; 
}

.free_tier .close-trial{
  position: absolute;
  right: 0;
  width: 30px;
  background: transparent;
    border: none;
}

.free_tier .select-trial {
  position: absolute;
  right: 0;
  top: 1px;
  font-size: 15px;
  background: transparent;
  border: none;
  width: 32px;
}

.free_tier .close-trial img{
  width: 16px;
}

.free_tier input[type="number"]::-webkit-inner-spin-button,
.free_tier input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Hide number input arrows in Firefox */
.free_tier input[type="number"] {
    -moz-appearance: textfield;
}

#mailContainer,
#mailContainerGroupRecipients,
.mail-container{
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

#mailContainerGroupRecipients > span,
#mailContainer > span,
#tags .mail-container> span {
  display: inline-block;
  color: var(--black);
  background: var(--bg-color);
  padding: 5px;
  padding-left: 10px;
  font-size: 13px;
  position: relative;
  border-radius: 3px;
  word-break: break-all;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

#mailContainerGroupRecipients > span::after,
#mailContainer > span::after,
#tags .mail-container> span::after {

      cursor: pointer;
      background: #cecece;
      color: var(--black);
      margin-left: 4px;
      display: inline-flex;
      width: 17px;
      font-size: 12px;
      content: "\f00d";
      font-family: "Font Awesome 6 Free";
      font-weight: 900;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
}

.group_email_recipients>.row.tw-mt-3>.col-md-12>.table-responsive {
  min-height: unset;
  overflow-x: unset;
  max-height: unset;
}

#groupRecipientsTable_wrapper>.row>.col-sm-12{
  min-height: .01%;
  overflow-x: auto;
}

#trialDays{
  border-bottom: 1px dashed #ddd;
  cursor: pointer;
  color: #6e6e6e;
  position: relative;
}

#trialDays i {
  font-size: 11px;
  color: #6e6e6e;
  margin-left: 10px;
  position: absolute;
  bottom: 2px;
}

#add_new_appointments_google_calendar .modal-dialog{
  overflow: hidden;
  position: relative;
}

 .fc-view-harness.fc-view-harness-active{
   min-height: 330px;
}
.fc .fc-daygrid-body,
.fc .fc-scrollgrid-section-body table,
.fc .fc-scrollgrid-section table{
  width: 100% !important;
}

/* .fc .fc-scrollgrid-section-body table{
  height: 100% !important;
} */

 .fc-view{
  overflow: auto;
}

.fc .fc-scroller-liquid-absolute{
  overflow: auto;
}

.fc-theme-standard td{
cursor: pointer;
}

.fc .fc-daygrid-day.fc-day-today{
  background-color: transparent;
}

 .fc-scrollgrid-section>th{
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

        .fc-theme-standard td, .fc-theme-standard th,
        .fc-theme-standard .fc-scrollgrid {
            border: none;
        }

        .fc .fc-daygrid-day-top {
            justify-content: center;
            align-items: center;
            height: 100%;
            width: 44px;
            height: 44px;
            margin-right: auto;
            margin-left: auto;
            font-weight: 400;
        }
        .fc .fc-daygrid-body-unbalanced .fc-daygrid-day-events{
            min-height: auto;
        }

        .fc .fc-daygrid-day.fc-day-today .fc-daygrid-day-top {
            border-radius: 50%;
            font-weight: 500;
        }

        .fc .fc-daygrid-day.selected-date .fc-daygrid-day-top{
          background-color: var(--primary-color);
          border-radius: 50%;
          font-weight: 500;
        }

        .fc .fc-daygrid-day.fc-day-today .fc-daygrid-day-top{
            position: relative;
        }
        .fc .fc-daygrid-day.fc-day-today .fc-daygrid-day-top::after{
            content: "";
            height: 5px;
            width: 5px;
            display: block;
            position: absolute;
            top: 50%;
            transform: translateY(10px);
            background: #1a1a1a9c;
            border-radius: 50%;
        }

        .fc .fc-daygrid-day-number{
            padding: 0;
            color: #1a1a1a9c;
        }

        .fc .fc-col-header-cell-cushion{
          color: #1a1a1a9c;
        }


        .fc-toolbar-chunk .fc-today-button{
          display: none;
        }

        .fc .fc-button-group{
          margin-left: 0 !important;
          width: 100%;
          justify-content: space-between;
          align-items: center;
        }

        .fc .fc-button-group > .fc-button{
          flex: unset;
        }

        .fc .fc-button-primary{
          height: 38px;
          width: 38px;
          border-radius:50% !important;
          padding: 0 !important;
          background-color: #59ca9e;
        }
        

        .fc-header-toolbar .fc-toolbar-chunk:nth-child(1){
          width: 100%;
          text-align: center;
        }

        .fc-header-toolbar .fc-toolbar-chunk:nth-child(2){
          display: none;
        }

        .fc-header-toolbar .fc-toolbar-chunk:nth-child(3){
          position: absolute;
          width: 60%;
          left: 50%;
          transform: translateX(-50%);
        }

.modal-open #timeSlotModal.modal{
  padding-right: 15px;
}

 table tbody tr:hover{
  background-color: transparent;
}

/* 
#time-slots{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
} */

#time-slots button{
  border-radius: 4px;
  padding: 5px 16px;
  font-weight: 500;
  font-size: 13px;
  text-transform: capitalize;
  transition: all 0.3s;
  width: 100%;
  margin-bottom: 10px;
}

#time-slots .slot-button-wrapper{
  white-space: nowrap;
}

#time-slots .slot-button-wrapper:last-child{
  margin-bottom: 0;
}

#time-slots button.btn-success,
#time-slots .btn.btn-danger[disabled]{
  color: var(--white);
  background: var(--primary-color);
  border: 1px solid var(--primary-color);
  height: 42px;
  width: 48.5%;
}

#time-slots .btn.btn-danger[disabled]{
  width: 100%;
}

#save-slots:not(.calendar-step #save-slots),
.slot-button-wrapper .next-btn{
  width: 48.5% !important;
  margin-left: 3%;
  height: 42px;
  transform: translateX(40px);
  transition: all 0.3s ease !important;
}

#time-slots button.btn-success+#save-slots,
#time-slots button.btn-success+.next-btn{
  transform: translateX(0);
  padding: 0;

}

#time-slots button.btn-success:focus{
box-shadow: none;
}

#time-slots button.btn-outline-primary{
  background-color: transparent;
  border-color: var(--primary-color);
  color: var(--primary-color);
  position: relative;
  transition: all 0.3s ease;
  height: 42px;
}

#time-slots button.btn-outline-primary:hover{
  border-width: 2px;
}

#time-slots .btn.btn-danger[disabled]{
  cursor: not-allowed;
  opacity: .65;
  -webkit-box-shadow: none;
  box-shadow: none;
width: 100%;
}

#time-slots button.btn-success{
background-color: #59ca9e;
pointer-events: none;
}

.time-slot{
  overflow-y: auto;
  overflow-x: hidden;
  height: 342px;
  padding-right: 10px;
}

.reschedule-time-slot .modal-body{
  padding: 0 21px;
}

.reschedule-time-slot .time-slot{
  height: 290px;
}

.reschedule-time-slot .col-md-7{
  padding-top: 15px;
  padding-bottom: 21px;
}

.reschedule-time-slot .ui-datepicker table{
margin-bottom: 0;
}

#datepicker-container .ui-widget.ui-widget-content{
  display: block !important;
  position: static !important;
  width: 100%;
  border: none !important;
}
#datepicker-container .ui-widget-header{
  background-color: transparent;
  border: none;
  margin-bottom: 6px;
  height: 43px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

#selected-date{
  margin-bottom: 25px;
  margin-top: 13px;
  font-size: 15px;
  font-weight: 400; 
}


#datepicker-container .ui-datepicker .ui-datepicker-prev,
#datepicker-container .ui-datepicker .ui-datepicker-next{
color: var(--white) !important;
background: #59ca9e;
padding: 5px 16px;
font-weight: 400;
font-size: 13px;
border: 1px solid #59ca9e;
text-transform: capitalize;
transition: all 0.3s;
width: 38px;
height: 38px;
position: relative;
border-radius: 50%;
}



#datepicker-container .ui-datepicker .ui-datepicker-next{
 order: 3;
}

#datepicker-container .ui-datepicker .ui-datepicker-prev.ui-state-disabled,
#datepicker-container .ui-datepicker .ui-datepicker-next.ui-state-disabled{
  background-color: transparent;
  border-color: transparent;
}

#datepicker-container .ui-datepicker .ui-datepicker-prev span,
#datepicker-container .ui-datepicker .ui-datepicker-next span{
  background-position:center;
  background-size: 10px;
}

#datepicker-container .ui-datepicker .ui-datepicker-prev span{
  background-image: url("/assets/images/icons/chevron-left.png");
}

#datepicker-container .ui-datepicker .ui-datepicker-next span{
  background-image: url("/assets/images/icons/chevron-right.png");
}


#datepicker-container .ui-datepicker .ui-datepicker-prev.ui-state-disabled span,
#datepicker-container .ui-datepicker .ui-datepicker-next.ui-state-disabled span{
  filter: invert(1) grayscale(1);
}

#datepicker-container .ui-datepicker-calendar td{
  padding: 0 2px;
}

 
#datepicker-container .ui-widget-content .ui-state-hover{
  background-color: #59ca9e !important;
  color: var(--white) !important;
}

#datepicker-container .ui-state-highlight{
  position: relative;
  font-weight: 500 !important;
}

#datepicker-container .ui-state-highlight::after{
  content: "";
  height: 5px;
  width: 5px;
  display: block;
  position: absolute;
  top: 50%;
  transform: translate(-50%, 10px);
  background: #1a1a1a9c;
  border-radius: 50%;
  left: 50%;
}

#datepicker-container .ui-widget-content .ui-datepicker-next.ui-state-hover,
#datepicker-container .ui-widget-content .ui-datepicker-prev.ui-state-hover{
  background-color: var(--primary-color) !important;
  border: none;
}

#datepicker-container .ui-button, 
#datepicker-container .ui-state-default, 
#datepicker-container .ui-widget-content .ui-state-default, 
#datepicker-container .ui-widget-header .ui-state-default, 
html #datepicker-container .ui-button.ui-state-disabled:active, 
html #datepicker-container .ui-button.ui-state-disabled:hover{
  border:none;
  font-size: 14px;
  color: #1a1a1a9c;
  line-height: 20px;
  font-weight: 400;
background:transparent;
font-family: var(--bs-body-font-family) !important;
border-radius: 50%;
height: 44px;
width: 44px;
}

#datepicker-container .ui-state-default{
  display: flex;
  align-items: center;
  justify-content: center;
}

#datepicker-container .ui-button, 
#datepicker-container .ui-state-default, 
#datepicker-container .ui-widget-content .ui-state-default, 
#datepicker-container .ui-widget-header .ui-state-default{
  min-height: 3em;
  text-align: center;
}


#datepicker-container .ui-datepicker th{
  font-size: 14px;
  color:#1a1a1a9c;
  line-height: 20px;
  font-weight: 400;
  font-family: var(--bs-body-font-family) !important;
  padding-left:0;
  padding-right: 0;
}

.ui-datepicker td a, .ui-datepicker td span{
  padding: 4px;
}

.selected-date a,
.highlighted-date a{
  background-color: var(--primary-color) !important;
  color: var(--white) !important;
}

.selected-date-wrapper{
  padding-top: 15px;
  padding-bottom: 21px;
}

body.authentication{
  background-image: url(/assets/images/login_bg.jpg);
  background-repeat: no-repeat;
  background-position: bottom;
  background-size: cover;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.collapse-appoinment{
  width: 0;
  overflow: hidden;
}


.time-slot-area #calendar{
  width: 50% !important;
}

.fc .fc-highlight{
  background-color: transparent;
}

.fc .fc-toolbar.fc-header-toolbar{
  margin-bottom: .5em;
}
.calendar-step {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  transition: transform 0.4s ease, opacity 0.4s ease;
  opacity: 0;
  transform: translateX(100%);
  z-index: 1;
}


.calendar-step.active {
  opacity: 1;
  transform: translateX(0%);
  z-index: 2;
  position: relative;
}

.calendar-step .prev-btn{
  position: absolute;
  left: 0;
}


@media (min-width: 768px) {
  .reschedule-time-slot .modal-dialog {
      width: 700px;
  }

}

.accordian-buttons{
  position: absolute;
  top: 13px;
  right: 60px;
}

.main-filter-dropdown .dropdown-toggle{
  height: 33px;
  padding: 10px;

}

#import_form .input-group-addon{
  padding: 0;
  border: none;
}

#import_form .input-group-addon .lead-add-inline-submit-source{
  height: 32px;
  display: flex;
  border: 1px solid #cbd5e1;
  align-items: center;
  justify-content: center;
  border-radius: 0 3px 3px 0;
  padding: 5px 16px;
}


.blog-slider .row .blog-image{
  padding-right: 25px;
}

.blog-slider .row .col-lg-6:nth-child(2){
  padding-left: 25px;
  padding-right: 80px;

}

.blog-slider .blog-image{
  height: 370px;
  overflow: hidden;
}

.blog-slider .blog-image img{
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 4px;

}

.blog-title{
  font-weight: 600;
  font-size: 32px;
  line-height: 35px;
  color:var(--black);
  margin-bottom: 20px;
}

.blog-title span{
  color:var(--primary-color)
}

.blog-user{
  display:flex;
  align-items:center;
  gap:16px;

}

.blog-user img{
height: 51px;
width:51px;
border-radius:50%;
}

.blog-user p {
font-weight: 500;
font-size: 13px;
line-height: 24px;
color:var(--black)
}


.slick-slide {
  margin: 0 10px;
}

.slick-slider {
  margin: 0 -10px;
}

.tw-line-clamp-1,
.tw-line-clamp-2{
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.tw-line-clamp-1{
  -webkit-line-clamp: 1;
}

.tw-line-clamp-2{
  -webkit-line-clamp: 2;
}


.blog-slider .slick-prev{
left:30px;
background: url('/assets/images/icons/chevron-left-black.svg'), var(--white) !important;
}

.blog-slider .slick-next{
right:20px;
background: url('/assets/images/icons/chevron-right-black.svg'), var(--white) !important;
}

.blog-slider .slick-prev,
.blog-slider .slick-next{
  border-radius: 50%;
  height: 35px;
  width:35px;
  z-index: 999;
  background-size: 10px 10px !important;
  background-position: center !important;
  background-repeat:no-repeat !important;
  border: 1px solid var(--black);
}

.blog-slider .slick-prev:before,
.blog-slider .slick-next:before{
 content:none;
}

.blog-slider .slick-prev:hover, 
.blog-slider .slick-prev:focus, 
.blog-slider .slick-next:hover, 
.blog-slider .slick-next:focus{
  background-color: #F2F5F7;
}

.progress-bar{
  background-color:#00AE6A;
}

/* new lead table */

.leads-table-two .lead-user-info>div{
  border-right: 1px solid var(--border-clr);
}

.leads-table-two .lead-user-info>div>img{
  border-radius:50%;
  height: 50px;
  width: 50px;
}

.leads-table-two td{
  vertical-align: top !important;
  padding:10px 15px !important;
}

table.dataTable.leads-table-two tbody td:nth-child(2) {
  border-left: 0;
}

/* .checkbox label:after, 
.checkbox label:before{
  opacity: 0;
} */
 
tr[data-name="affiliate_management"] {
  display: none;
}