.formychat-settings-cf7 tr {
  align-items: flex-start;
}
.formychat-settings-cf7 tr th > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
}
.formychat-settings-cf7 tr th > div span {
  padding: 0;
  margin: 0;
}
.formychat-settings-cf7 tr label {
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 6px;
}

/** Formychat Switch */
.formychat-switch {
  position: relative;
  display: inline-block;
  width: 45px;
  height: 20px;
  cursor: pointer;
}
.formychat-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.formychat-switch div {
  margin-left: 30px;
  word-wrap: break-word;
}
.formychat-switch .formychat-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  border-radius: 50px;
  outline: none;
}
.formychat-switch .formychat-slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: -1px;
  bottom: -4px;
  background-color: white;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  border-radius: 50%;
  border: 1px solid #ccc;
}
.formychat-switch input:checked + .formychat-slider {
  background-color: #4f46e5;
}
.formychat-switch input:focus + .formychat-slider {
  box-shadow: 0 0 1px #4f46e5;
}
.formychat-switch input:checked + .formychat-slider:before {
  -webkit-transform: translateX(23px);
  -ms-transform: translateX(23px);
  transform: translateX(23px);
}

/* tooltip  */
.formychat-tooltip {
  position: relative;
  display: inline-block;
  color: #ccc;
  transition: color 0.3s;
}
.formychat-tooltip svg {
  cursor: pointer;
}
.formychat-tooltip::after {
  content: "";
  visibility: hidden;
  width: max-content;
  max-width: 380px;
  background-color: #444;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  color: #f0efef;
  border-radius: 6px;
  padding: 15px 18px;
  position: absolute;
  font-weight: normal;
  z-index: 1;
  top: 50%;
  transform: translateY(-50%);
  left: calc(100% + 10px);
  opacity: 0;
  transition: opacity 0.2s;
}
.formychat-tooltip::before {
  visibility: hidden;
  content: "";
  position: absolute;
  top: 50%;
  z-index: 9;
  transform: translateY(-50%);
  right: -10px;
  border-width: 10px;
  border-style: solid;
  border-color: transparent #444 transparent transparent;
  transition: opacity 0.2s;
}
.formychat-tooltip:hover {
  color: #333;
}
.formychat-tooltip:hover::after {
  content: attr(data-tooltip);
  visibility: visible;
  opacity: 1;
}
.formychat-tooltip:hover::before {
  visibility: visible;
}

/* formychat-slider on mobile  */
@media (max-width: 768px) {
  .formychat-tooltip::after {
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    max-width: 250px;
  }
}
.formychat-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  padding-bottom: 10px;
}
.formychat-tags span {
  background: #e1e1e1 !important;
}

.formychat-notes {
  font-size: 14px !important;
  font-style: italic;
  color: #666;
  padding: 10px 0;
}

/* Phone number field */
.formychat-phone-field {
  max-width: 100%;
  display: flex;
  align-items: center;
  gap: 0;
  position: relative;
  width: 360px;
  border: 1px solid #ccc;
  border-radius: 5px;
  transition: border-color 0.3s;
  background: white;
}
.formychat-phone-field:hover {
  border-color: #878686;
}

.formychat-dropdown {
  position: relative;
  width: fit-content;
  width: fit-content;
}
.formychat-dropdown.active .formychat-dropdown-content {
  display: block;
}
.formychat-dropdown.active svg {
  transform: rotate(180deg);
}
.formychat-dropdown-placeholder {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
  padding: 0 10px;
  padding-right: 0;
  cursor: pointer;
  height: 100%;
  text-align: center;
}
.formychat-dropdown-placeholder span {
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}
.formychat-dropdown-placeholder svg {
  transition: 0.3s;
  width: 12px;
  height: 12px;
}
.formychat-dropdown-content {
  position: absolute;
  top: 26px;
  left: 0;
  background: #fff;
  width: 360px;
  max-width: inherit;
  border: 1px solid #ccc;
  border-top: none;
  border-radius: 0 0 6px 6px;
  z-index: 1;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  display: none;
}
.formychat-dropdown-content-search {
  width: calc(100% - 10px);
  margin: 5px;
  border: none;
  padding: 7px 14px;
  border-bottom: 1px solid #f9f9f9;
  outline: 0;
  border-radius: 0;
}
.formychat-dropdown-content-items {
  display: flex;
  flex-direction: column;
  max-height: 300px;
  overflow: auto;
}
.formychat-dropdown-content-item {
  padding: 10px 14px;
  border-bottom: 1px solid #f9f9f9;
  cursor: pointer;
  transition: background 0.2s;
}
.formychat-dropdown-content-item:hover {
  background: #f3f3f3;
}
.formychat-dropdown-content-item.selected {
  background: #f3f3f3;
}

input.formychat-input-text {
  background: transparent;
  outline: none;
  width: 100%;
  border: none !important;
  outline: none !important;
  padding: 5px 10px;
  box-shadow: none !important;
}

.formychat-inline {
  display: flex;
  gap: 10px;
  align-items: center;
}
.formychat-disabled {
  pointer-events: none;
  opacity: 0.4;
}
.formychat-ultimate-badge {
  background: #4f46e5;
  color: white;
  padding: 5px 10px;
  border-radius: 4px;
  font-size: 12px;
  cursor: pointer;
  text-decoration: none;
  font-weight: normal;
  transition: 0.2s;
}
.formychat-ultimate-badge:hover, .formychat-ultimate-badge:focus, .formychat-ultimate-badge:active {
  opacity: 0.9;
  color: white;
}

/*# sourceMappingURL=admin-util.css.map */
