:root {
  --theme-primary: #3c68ec;
  --theme-secondary: #ecf0fe;
  --theme-tertiary: #eeeeee;
  --theme-quaternary: #b7babf;
  --theme-text: #37474f;
  --theme-link: #3e8ef7;
  --theme-link-hover: #ef343b;
  --theme-focus: #93c0ee;
  --theme-white: #ffffff;
  --theme-black: #000000;
  --theme-dark-gray: #333333;
  --theme-gray: #76838f;
  --theme-light-gray: #e4eaec;
  --theme-green: #11c26d;
  --theme-yellow: #ffbf4b;
  --theme-red: #f3535e;
  --theme-transparent: transparent;
}

.popup {
  background: #37474f;
  background-color: #1c253844;
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100%;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease-out;
}

.popup .popup-right {
  height: 100vh;
  width: 390px;
  position: fixed;
  right: 0;
  top: 0;
  background-color: #ffffff;
  padding: 25px 20px 20px;
  display: flex;
  flex-direction: column;
  transition: transform 0.15s cubic-bezier(0.4, 0, 0.2, 1);
  /* transform: translateX(100%); */
  overflow-y: auto;
}


.popup .popup-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  width: 560px;
  background-color: var(--theme-white);
  border-radius: 10px;
  padding: 40px 36px 36px;
  display: flex;
  flex-direction: column;
  overflow-y: visible;
  min-height: max-content;
  max-height: 90vh;
  overflow-y: auto;
}

#cmp-test-popup .popup-center{
  min-height: 0;
}

.popup .popup-right-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.popup .popup-right-title {
  font-style: normal;
  font-weight: bold;
  font-size: 15px;
  line-height: 20px;
  color: #111;
}

.popup .profile {
  display: none;
  position: static;
  width: 370px;
  min-width: 370px;
  background-color: var(--theme-white);
  border-left: 1px solid var(--theme-tertiary);
  border-right: 1px solid var(--theme-tertiary);
  padding: 0;
  max-height: 100%;
  overflow-y: auto;
}

.popup .chat {
  width: 857px;
  padding: 0;
  background-color: #fcfcfc;
  display: flex;
  flex-direction: column;
}

.show-profile {
  display: flex;
  justify-content: flex-end;
}

.show-profile .profile {
  display: flex;
}

.show-profile .chat {
  position: static;
  width: 487px;
}

.popup .notes-list-close {
  opacity: 0.6;
  border: none;
  background-color: transparent;
  grid-column: 3/4;
  grid-row: 1/2;
  background-repeat: no-repeat;
  background-size: 12px 12px;
  background-position: center 10px;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6 4.7L10.5.2l1.3 1.3L7.3 6l4.5 4.5-1.3 1.3L6 7.3l-4.5 4.5-1.3-1.3L4.7 6 .2 1.5 1.5.2 6 4.7z' fill='%231C2538'/%3E%3C/svg%3E");
}

.popup .popup-right-close {
  height: 20px;
  width: 20px;
  background-position: center;
}

.popup .popup-center-title {
  font-size: 18px;
  line-height: 25px;
  font-weight: 800;
}

.popup .popup-right-form {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  padding-top: 20px;
}

.popup .popup-center-form {
  padding-top: 26px;
  flex: 1;
}

.popup.opened {
  opacity: 1;
  pointer-events: all;
  display: flex;
}

.popup .popup-right-blue-button {
  height: 41px;
  font-style: normal;
  font-weight: bold;
  font-size: 14px;
  line-height: 19px;
  margin-top: auto;
}

.add-lead.popup .blue-button {
  background: #3c68ec;
  border-radius: 5px;
  min-height: 48px;
  padding: 0 26px;
  border: none;
  color: #ffffff;
  transition: background-color 0.15s cubic-bezier(0.4, 0, 0.2, 1);
}

.popup .error_label {
  color: #f3535e;
  font-weight: 700;
  font-size: 14px;
  padding: 0px 10px;
  display: none;
  margin-bottom: 5px;
}

.add-lead.popup .text-input {
  margin-bottom: 12px !important;
  margin-top: 8px;
  padding-left: 16px;
  height: 44px;
  min-height: 44px;
  border: 1px solid #e4eaec;
  background-color: #ffffff;
  border-radius: 5px;
  padding-right: 13px;
  display: inline-block;
  font-family: "Inter";
  font-weight: 400;
  font-size: 14px;
  line-height: 21px;
  transition: background-color 0.15s cubic-bezier(0.4, 0, 0.2, 1);
}

.popup [type=button]:not(:disabled), .popup [type=reset]:not(:disabled), .popup [type=submit]:not(:disabled), .popup button:not(:disabled) {
  cursor: pointer;
}

.add-lead.popup .text-input:hover, .add-lead.popup .text-input:focus {
  background-color: #ffffff !important;
}

.add-lead.popup .popup-right-textarea.text-input {
  resize: none;
  padding: 12px 16px;
  height: auto;
}


/* Task Popup */
.popup .profile-header-edit {
  width: 26px;
  height: 26px;
  background-color: #3c68ec11;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 6px;
  border: none;
  margin-right: 10px;
}

.popup .profile-header {
  display: block;
  height: 75px;
  align-items: center;
  justify-content: space-between;
  padding: 12px 24px;
  margin-bottom: 20px;
}

.popup .square-button {
  height: 48px;
  width: 48px;
  min-width: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: none;
  outline: none;
  border-radius: 5px;
  background-color: var(--theme-secondary);
  position: relative;
  transition: background-color 0.15s cubic-bezier(0.4, 0, 0.2, 1);
}

.popup .square-button:hover {
  background-color: #dde4fc;
}

.popup .task-view-buttons-done {
  margin-left: auto;
  width: auto;
  background-color: #DEDEDE;
}

.popup .profile-header {
  height: 75px;
  align-items: center;
  justify-content: space-between;
  padding: 12px 24px;
  margin-bottom: 20px;
}

.popup .profile-header-buttons {
  display: flex;
  float: right;
}

.popup .task_view .profile-header {
  height: auto !important;
}

.popup .task_view .profile-header {
  padding: 0px;
}

.popup .task-view-buttons-done span {
  padding-left: 8px;
  color: var(--theme-dark-grey);
}

.popup .text-danger {
  color: #ff4c52 !important;
}

.popup .profile-header-user {
  display: flex;
  align-items: center;
}

.popup .profile-header-name {
  padding-top: 8px;
}

.popup .leads-table-text--bold {
  font-size: 14px;
  line-height: 19px;
  font-weight: 500;
  display: inline;
}

.popup .profile-top-label {
  background: #99dc1322;
  padding: 4px 9px;
  border-radius: 4px;
  font-weight: bold;
  font-size: 10px;
  line-height: 14px;
  text-align: center;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--theme-green);
}

.pipeline-column-item-avatar {
  height: 30px;
  width: 30px;
  margin-right: 5px;
  cursor: pointer;
}

.pipeline-column-item-avatar-empty {
  height: 40px;
  width: 40px;
  margin-top: 5px;
  border-radius: 50%;
  background-color: var(--theme-secondary);
  font-style: normal;
  font-weight: bold;
  font-size: 12px;
  line-height: 16px;
  text-align: center;
  color: var(--theme-primary);
  text-transform: uppercase;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 3px;
}

.leads-table-text {
  display: block;
  font-size: 14px;
  line-height: 18px;
  font-family: "Inter";
}

.leads-table-text--bold {
  font-size: 14px;
  line-height: 19px;
  font-weight: 500;
  display: inline;
}

.chat-header-name {
  font-size: 16px;
  line-height: 20px;
  margin-left: 10px;
}

.profile-header-name {
  padding-top: 8px;
}

.profile .chat-header-name {
  color: #111;
}

.profile-info-item {
  padding: 23px 20px 24px;
  border-bottom: 1px solid #f1f1f1;
}

.profile-info-item:last-child {
  border-bottom: 0;
}

.profile-info-column .profile-info-item {
  padding-top: 5px;
  padding-bottom: 5px;
}

.profile-info-title {
  font-weight: bold;
  font-size: 12px;
  line-height: 1.334;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--theme-quaternary);
  margin-bottom: 11px;
}

.profile-header-mail {
  font-family: "Inter";
  font-style: normal;
  font-weight: normal;
  font-size: 12px;
  line-height: 150%;
  color: var(--theme-text);
  opacity: 1;
}

.badge {
  display: inline-block;
  padding: 0.25em 0.6em;
  font-size: 75%;
  font-weight: 400;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: 0.215rem;
  margin: 1px;
}

.badge-dark {
  color: #fff;
  background-color: #343a40;
}

.badge a {
  text-decoration: none;
  color: inherit;
}

.badge-primary {
  color: #fff;
  background-color: #007bff;
}

.profile-small-text {
  font-size: 12px;
  font-weight: normal;
  color: #76838f;
}

.profile-info-tags {
  padding: 7px 2px 2px 7px;
  background: #f9f9f9;
  border-radius: 10px;
}

.multi-select-container {
  display: block;
  position: relative;
}

.multi-select-button {
  display: block;
  height: 44px;
  font-size: 14px;
  line-height: 42px;
  padding-left: 14px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  background-color: var(--theme-light-gray);
  border: 1px solid var(--theme-light-gray);
  border-radius: 10px;
  cursor: default;
  padding-right: 35px;
  background-image: url(images/select.svg);
  background-repeat: no-repeat;
  background-position: calc(100% - 14px) 50%;
  background-size: 10px 6px;
}

.multi-select-menu {
  position: absolute;
  max-width: 100%;
  left: 0;
  top: 100%;
  z-index: 1;
  min-width: 100%;
  background: var(--theme-light-gray);
  border: 1px solid var(--theme-light-gray);
  display: none;
  border-radius: 10px;
  padding: 14px 14px 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.multi-select-menu, .multi-select-button {
  background: #f8f8f8 !important;
  border: 1px solid #f8f8f8 !important;
}

.multi-select-menuitem {
  display: block;
}

.multi-select-container--open .multi-select-menu {
  display: block;
}

.multi-select-menuitem input {
  position: absolute;
  margin-top: 0.25em;
  margin-left: -20px;
}

.multi-select-menuitem input {
  display: none;
}

.popup .profile-top {
  padding: 24px 20px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.popup .profile-top-tabs {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 5px;
  background: var(--theme-light-gray);
  border-radius: 10px;
}

.popup .profile-top-tab {
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 1 1 0;
  max-width: 100%;
  border: none;
  background-color: transparent;
  padding: 11px 10px 10px;
}

.popup .profile-top-tab.selected {
  background: var(--theme-white);
}

.popup .profile-top-tab svg {
  margin-right: 6px;
}

.popup .profile-top-tab-text {
  font-style: normal;
  font-weight: 800;
  font-size: 13px;
  line-height: 18px;
  color: var(--theme-gray);
}

.popup .profile-top-tab.selected .profile-top-tab-text {
  color: var(--theme-primary);
}

.profile-activities-header {
  padding: 25px 20px;
  display: flex;
  justify-content: space-between;
}

.profile-details-item-title {
  font-weight: bold;
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--theme-quaternary);
  display: inline-block;
  width: 100%;
}

.profile-activities-select.select {
  background: unset;
  background-image: url(images/select.svg);
  background-repeat: no-repeat;
  background-position: 100% 50%;
  background-size: 10px 6px;
  border: none;
  height: auto;
  width: auto;
  font-weight: normal;
  font-size: 14px;
  line-height: 19px;
  padding-right: 27px;
}

.profile-activities-body {
  padding: 0 20px 20px;
}

.profile-activities-item {
  border: unset;
  border-radius: 0px;
  border-bottom: 1px solid #e3e3e4;
  padding: 13px 9px 17px;
  margin-bottom: 15px;
}

.profile-activities-item-icon {
  float: left;
  padding: 5px 12px 5px 9px;
}

.profile-activities-item-icon img {
  width: 30px;
}

.profile-activities-item-header {
  display: flex;
  padding-bottom: 6px;
}

.profile-notes-wrapper {
  display: flex;
  flex-direction: column;
  padding: 4px 20px 20px;
}

.profile-notes-add {
  flex: 0 0 auto;
  max-width: 100%;
}

.profile-notes-content {
  flex: 1 0 auto;
  max-width: 100%;
}

.profile-notes-item {
  padding: 16px 10px;
  border-bottom: 1px solid #f1f1f1;
}

.profile-notes-item-header {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}

.profile-notes-item-name {
  flex-grow: 1;
  font-size: 12px;
  line-height: 1.43;
  color: var(--theme-gray);
}

.profile-notes-item-date {
  text-align: right;
  padding-left: 10px;
  font-family: ""Inter"", -apple-system, BlinkMacSystemFont, "Segoe UI", "Inter", "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-size: 12px;
  line-height: 1.334;
  color: rgba(17, 17, 17, 0.4);
  letter-spacing: -0.02em;
}

.profile-notes-item-text {
  font-family: ""Inter"", -apple-system, BlinkMacSystemFont, "Segoe UI", "Inter", "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
  color: var(--theme-black);
}

.profile-activities-item-title {
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: 140%;
  letter-spacing: -0.02em;
  display: block;
}

.profile-activities-item-type {
  font-family: "Inter";
  font-style: normal;
  font-weight: normal;
  font-size: 11px;
  line-height: 13px;
  color: #9a9fa7;
  padding-left: 0px;
  padding-right: 10px;
}

.profile-activities-item-time {
  margin-left: auto;
  font-family: "Inter";
  font-style: normal;
  font-weight: normal;
  font-size: 12px;
  line-height: 13px;
  color: #444444;
}

.profile-activities-item-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding-top: 6px;
}

.profile-activities-item-description {
  font-family: "Inter";
  font-style: normal;
  font-weight: normal;
  font-size: 12px;
  line-height: 14px;
  color: #9a9fa7;
}

.profile-activities-item-sep {
  display: block;
  height: 2px;
  width: 2px;
  border-radius: 50%;
  background-color: #c4c4c4;
  margin: 0 6px;
}

.profile-notes-add-button .button {
  vertical-align: top;
  width: 100%;
}

.profile-activities-item-description.blue {
  color: var(--theme-primary);
  font-weight: 500;
}

.popup a.button, button.button, input.button {
  border-radius: 5px;
  display: inline-block;
  font-size: 14px;
  font-weight: bold;
  line-height: normal;
  border: 1px solid var(--theme-primary);
  background: var(--theme-primary);
  color: var(--theme-white);
  text-align: center;
  padding: 10px 12px;
  transition: color 0.15s cubic-bezier(0.4, 0, 0.2, 1), background-color 0.15s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.15s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: color, background-color, border-color;
}

.profile-top-tab path {
  fill: var(--theme-quaternary);
}

.profile-top-tab.selected path {
  fill: var(--theme-primary);
}

.leads .text-input, .popup .text-input {
  border: 1px solid var(--theme-light-gray);
  background-color: var(--theme-white);
  border-radius: 5px;
  padding-left: 47px;
  padding-right: 13px;
  display: inline-block;
  height: 48px;
  font-family: "Inter";
  font-weight: 400;
  font-size: 14px;
  line-height: 21px;
  transition: background-color 0.15s cubic-bezier(0.4, 0, 0.2, 1);
}

.popup .text-input {
  margin-bottom: 24px !important;
}

.popup .popup-right-input.text-input {
  padding-left: 16px;
  height: 44px;
  min-height: 44px;
  margin-bottom: 12px;
}

.popup .blue-button {
  background: var(--theme-primary);
  border-radius: 5px;
  height: 48px;
  min-height: 48px;
  padding: 0 26px;
  border: none;
  font-style: normal;
  font-weight: bold;
  font-size: 15px;
  line-height: 20px;
  color: var(--theme-white);
  transition: background-color 0.15s cubic-bezier(0.4, 0, 0.2, 1);
}

.popup .blue-button--light {
  background-color: var(--theme-secondary);
  color: var(--theme-primary);
}

.task-action-button {
  font-size: 10px;
  padding: 0px 15px !important;
  height: 30px !important;
}

.task-view-toggle {
  cursor: pointer !important;
}

.ongoing {
  margin-top: -20px;
}

.ongoing-spacer {
  height: 14px;
}

.ongoing-row {
  display: flex;
  margin: 0 -5px;
}

.ongoing-col {
  padding: 0 5px 10px;
  flex: 1 1 auto;
  max-width: 100%;
}

input.input-text, select.select, textarea.textarea {
  width: 100%;
  border-radius: 4px;
  height: 44px;
  border: 1px solid var(--theme-light-gray);
  background: var(--theme-white);
  padding: 0 14px;
  font-size: 14px;
  color: var(--theme-text);
  transition: color 0.15s cubic-bezier(0.4, 0, 0.2, 1), background-color 0.15s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.15s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: color, background-color, border-color;
}

.popup .popup-center-attachment-title {
  display: inline-block;
  padding-bottom: 18px;
}

.popup .checklist-title {
  font-weight: 800;
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #9a9fa7;
}

.popup-center-file {
  width: 100%;
  height: 60px;
  border-radius: 10px;
  background-color: transparent;
  color: #9a9fa7;
  border: 1px dashed #e3e3e4;
  transition: background-color 0.15s cubic-bezier(0.4, 0, 0.2, 1);
  font-weight: 500;
  font-size: 12px;
  line-height: 14px;
  font-family: "Inter";
}

.popup-center-file .label {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  font-weight: 500;
  font-size: 13px;
  line-height: 18px;
}

.popup-center-file svg {
  margin-right: 10px;
}

.popup-center-file .file-uploaded {
  display: none;
}

.files-list {
  display: none;
  padding: 0;
  list-style: none;
  flex-wrap: wrap;
}

.popup-center-file input[type=file] {
  outline: 0;
  opacity: 0;
  pointer-events: none;
  -webkit-user-select: none;
  user-select: none;
  width: 0;
  height: 0;
}

.files-list-item {
  display: flex;
  margin: 5px 16px 5px 0;
}

.files-list-item:last-child {
  margin-right: 0;
}

.files-list-item-icon {
  height: 40px;
  width: 40px;
  min-width: 40px;
  border: 1px solid #f5f5f5;
  box-sizing: border-box;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.files-list-item-icon img {
  display: block;
  height: 32px;
  width: 32px;
  border-radius: 10px;
  object-fit: cover;
}

.files-list-item-text {
  font-family: "Inter";
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 16px;
  color: #111;
  height: 40px;
  border: 1px solid #f5f5f5;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 2px 0 14px;
}

.files-list-item-remove {
  height: 20px;
  width: 20px;
  border: none;
  margin-left: 10px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 10 10'%3E%3Cdefs/%3E%3Cpath fill='%23ABACB2' d='M5 4L8.3.9l1 .9L5.8 5l3.3 3.3-.9 1L5 5.8 1.7 9.2l-1-.9L4.2 5 .8 1.7l.9-1L5 4.2z'/%3E%3C/svg%3E");
  background-size: 8px 8px;
  background-position: center;
  background-repeat: no-repeat;
  background-color: transparent;
}

.alert-blk {
  z-index: 2147483601 !important;
}

.create-campaign-tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin: 0 -10px -5px 0;
}

.profile-info-tags .create-campaign-tags {
  margin: 0;
}

.create-campaign-tags-pull {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.create-campaign-tags-item {
  padding: 5px 10px 5px 0;
}

.profile-info-tags .create-campaign-tags-item {
  padding: 0 5px 5px 0;
}

.create-campaign-tag {
  position: relative;
  padding: 8px 35px 6px 16px;
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  color: var(--theme-text);
  background: var(--theme-light-gray);
  border-radius: 16px;
}

.profile-info-tags .create-campaign-tag {
  padding: 4px 32px 4px 9px;
  font-weight: normal;
  font-family: ""Inter"", -apple-system, BlinkMacSystemFont, "Segoe UI", "Inter", "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  color: var(--theme-primary);
  border-radius: 12px;
  border: 1px solid #C7D3F9;
  background: var(--theme-white);
}

.create-campaign-tag-delete {
  position: absolute;
  top: 4px;
  right: 6px;
  width: 24px;
  height: 24px;
  padding: 4px 0;
}

.profile-info-tags .create-campaign-tag-delete {
  top: 5px;
  right: 9px;
  width: 16px;
  height: 16px;
  padding: 0;
}

.profile-info-tags .create-campaign-tags-item {
  padding: 0 5px 5px 0;
}




.create-campaign-tags-new {
  flex-grow: 1;
  min-width: 200px;
  max-width: 100%;
  padding: 5px 10px 5px 0;
}

.profile-info-tags .create-campaign-tags-new {
  min-width: 0;
  width: 100px;
  padding: 0 5px 5px 0;
}

.create-campaign-tags-new-text {
  width: 100%;
  height: 32px;
  padding: 0 0 2px;
  font-size: 14px;
  color: var(--theme-text);
  border: 0;
  background: var(--theme-transparent);
  border-radius: 0;
  transition: color 0.15s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: color;
}

.profile-info-tags .create-campaign-tags-new-text {
  height: 28px;
  padding: 0 0 0 5px;
  font-family: ""Inter"", -apple-system, BlinkMacSystemFont, "Segoe UI", "Inter", "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}

.svg-fill {
  transition: fill 0.15s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: fill;
}

.profile-info-tags .create-campaign-tag-delete .svg-fill {
  fill: var(--theme-primary);
}

.popup svg {
  overflow: hidden;
  vertical-align: middle;
}

.create-campaign-tag-delete svg {
  display: block;
  width: 16px;
  height: auto;
  margin: 0 auto;
}

.popup textarea.textarea {
  display: block;
  font-family: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", "Inter", "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  resize: none;
  height: 160px;
  padding-top: 11px;
  padding-bottom: 11px;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  overflow-scrolling: touch;
  scrollbar-width: none;
}

.popup textarea.textarea.textarea-medium {
  height: 135px;
}

.popup-right::-webkit-scrollbar {
  width: 6px
}

.popup-right::-webkit-scrollbar-track {
  background-color: var(--theme-white)
}

.popup-right::-webkit-scrollbar-thumb {
  background: #e8e8e8;
  border-radius: 30px;
  border: none;
  outline: none
}

.checkbox .label-span, .checkbox label, .multi-select-menuitem .label-span, .multi-select-menuitem label, .pill .label-span, .pill label, .radio .label-span, .radio label {
  cursor: pointer;
  display: block;
  position: relative;
  margin: 0;
  padding-left: 34px;
  font-size: 14px;
  color: var(--theme-quaternary);
  -webkit-user-select: none;
  user-select: none;
  transition: color 0.15s cubic-bezier(0.4,0,0.2,1);
  will-change: color;
}

.checkbox .label-span:before,.checkbox label:before,.multi-select-menuitem .label-span:before,.multi-select-menuitem label:before,.pill .label-span:before,.pill label:before,.radio .label-span:before,.radio label:before {
  content: "";
  position: absolute;
  left: 0;
  top: 1px;
  width: 20px;
  height: 20px;
  border: 2px solid var(--theme-tertiary);
  background: var(--theme-white) url(images/checkbox.svg) 50% calc(50% - 1px) no-repeat;
  background-size: 13px 9px;
  border-radius: 50%;
  transition: background-color 0.15s cubic-bezier(0.4,0,0.2,1),border-color 0.15s cubic-bezier(0.4,0,0.2,1);
  will-change: background-color,border-color;
}

.checkbox .label-span:before,.checkbox label:before,.multi-select-menuitem .label-span:before,.multi-select-menuitem label:before {
  border-radius: 3px;
}

.popup .checkbox,.popup .multi-select-menuitem,.popup .pill,.popup .radio {
  display: block;
  margin-bottom: 10px;
}

.popup .checkbox input, .popup .multi-select-menuitem input,.popup .pill input,.popup .radio input {
  display: none;
}

.checkbox input:checked+.label-span:before, .checkbox input:checked+label:before, .multi-select-menuitem input:checked+.label-span:before, .multi-select-menuitem input:checked+label:before, .pill input:checked+.label-span:before, .pill input:checked+label:before, .radio input:checked+.label-span:before, .radio input:checked+label:before {
  background-color: var(--theme-primary);
  border-color: var(--theme-primary);
}

.checkbox input:checked+.label-span, .checkbox input:checked+label, .multi-select-menuitem input:checked+.label-span, .multi-select-menuitem input:checked+label, .pill input:checked+.label-span, .pill input:checked+label, .radio input:checked+.label-span, .radio input:checked+label {
  color: var(--theme-black);
}

.pill label:before {
  width: 32px;
  height: 20px;
  border-radius: 10px;
  background: var(--theme-tertiary);
}

.add-action-template-img img {
  object-fit: cover;
  height: 100px;
}

.segment_tr .title {
  display: flex !important;
  align-items: flex-end;
}

.gln_popover {
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  margin: 0;
  cursor: pointer;
}