.mcsa-assistant,
.mcsa-assistant * {
  box-sizing: border-box;
}

.mcsa-assistant {
  --mcsa-primary: #18273e;
  --mcsa-accent: #f3b34e;
  --mcsa-light: #dfe2e9;
  --mcsa-white: #fff;
  --mcsa-muted: #8793a8;
  --mcsa-surface: #f7f7f8;
  --mcsa-shadow: 0 24px 70px rgba(12, 25, 44, .24), 0 6px 20px rgba(12, 25, 44, .12);
  color: var(--mcsa-primary);
  font-family: Montserrat, Arial, sans-serif;
  font-size: 15px;
  line-height: 1.5;
  position: relative;
  z-index: 999990;
}

.mcsa-assistant button,
.mcsa-assistant input,
.mcsa-assistant select,
.mcsa-assistant textarea {
  font: inherit;
}

.mcsa-launcher {
  align-items: center;
  background: var(--mcsa-primary) !important;
  border: 1px solid rgba(255, 255, 255, .12) !important;
  border-radius: 22px !important;
  bottom: 24px;
  box-shadow: 0 15px 38px rgba(10, 24, 44, .24) !important;
  color: #fff !important;
  cursor: pointer;
  display: flex;
  gap: 12px;
  margin: 0 !important;
  min-height: 64px;
  padding: 9px 18px 9px 9px !important;
  position: fixed;
  right: 24px;
  text-align: left;
  transform: translateY(0);
  transition: transform .25s ease, opacity .25s ease, box-shadow .25s ease;
  z-index: 3;
}

.mcsa-launcher:hover,
.mcsa-launcher:focus-visible {
  box-shadow: 0 20px 46px rgba(10, 24, 44, .32) !important;
  transform: translateY(-3px);
}

.mcsa-launcher:focus-visible,
.mcsa-close:focus-visible,
.mcsa-composer button:focus-visible,
.mcsa-quick button:focus-visible,
.mcsa-action:focus-visible {
  outline: 3px solid rgba(243, 179, 78, .34) !important;
  outline-offset: 3px;
}

.mcsa-launcher__icon {
  align-items: center;
  background: var(--mcsa-accent);
  border-radius: 16px;
  color: var(--mcsa-primary);
  display: flex;
  flex: 0 0 46px;
  height: 46px;
  justify-content: center;
  position: relative;
}

.mcsa-launcher__icon svg {
  fill: none;
  height: 25px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
  width: 25px;
}

.mcsa-launcher__pulse {
  background: #66b884;
  border: 3px solid var(--mcsa-primary);
  border-radius: 50%;
  height: 13px;
  left: 47px;
  position: absolute;
  top: 8px;
  width: 13px;
  z-index: 2;
}

.mcsa-launcher__text {
  display: flex;
  flex-direction: column;
}

.mcsa-launcher__text strong {
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -.01em;
  line-height: 1.25;
}

.mcsa-launcher__text small {
  color: rgba(255, 255, 255, .65);
  font-size: 10px;
  line-height: 1.35;
  margin-top: 2px;
}

.mcsa-dialog {
  background: var(--mcsa-surface);
  border: 1px solid rgba(24, 39, 62, .12);
  border-radius: 25px;
  bottom: 24px;
  box-shadow: var(--mcsa-shadow);
  display: flex;
  flex-direction: column;
  height: min(720px, calc(100vh - 48px));
  opacity: 0;
  overflow: hidden;
  pointer-events: none;
  position: fixed;
  right: 24px;
  transform: translateY(18px) scale(.975);
  transform-origin: right bottom;
  transition: opacity .22s ease, transform .26s cubic-bezier(.2, .8, .2, 1);
  visibility: hidden;
  width: min(430px, calc(100vw - 32px));
  z-index: 5;
}

.mcsa-assistant.is-open .mcsa-dialog {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
  visibility: visible;
}

.mcsa-assistant.is-open .mcsa-launcher {
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
}

.mcsa-header {
  align-items: center;
  background: var(--mcsa-primary);
  color: #fff;
  display: flex;
  flex: 0 0 auto;
  min-height: 88px;
  overflow: hidden;
  padding: 17px 18px;
  position: relative;
}

.mcsa-header::after {
  background: linear-gradient(90deg, var(--mcsa-accent), rgba(243, 179, 78, .08));
  bottom: 0;
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
  width: 100%;
}

.mcsa-header__ornament {
  color: var(--mcsa-accent);
  height: 76px;
  opacity: .15;
  pointer-events: none;
  position: absolute;
  right: 25px;
  top: -10px;
  width: 205px;
}

.mcsa-header__ornament svg {
  fill: none;
  height: 100%;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 1.3;
  width: 100%;
}

.mcsa-avatar {
  align-items: center;
  background: var(--mcsa-accent);
  border-radius: 15px;
  color: var(--mcsa-primary);
  display: flex;
  flex: 0 0 50px;
  height: 50px;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.mcsa-avatar svg {
  fill: none;
  height: 30px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.65;
  width: 30px;
}

.mcsa-header__copy {
  display: flex;
  flex: 1;
  flex-direction: column;
  min-width: 0;
  padding: 0 12px;
  position: relative;
  z-index: 1;
}

.mcsa-header__copy strong {
  color: #fff;
  font-family: Prata, Georgia, serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.35;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mcsa-header__copy span {
  align-items: center;
  color: rgba(255, 255, 255, .64);
  display: flex;
  font-size: 10px;
  gap: 6px;
  margin-top: 4px;
}

.mcsa-header__copy i {
  background: #66b884;
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(102, 184, 132, .12);
  height: 6px;
  width: 6px;
}

.mcsa-close {
  -webkit-appearance: none !important;
  align-items: center;
  appearance: none !important;
  background: rgba(255, 255, 255, .08) !important;
  border: 1px solid rgba(255, 255, 255, .1) !important;
  border-radius: 12px !important;
  box-sizing: border-box !important;
  color: #fff !important;
  cursor: pointer;
  display: flex;
  flex: 0 0 38px;
  font-size: 0 !important;
  height: 38px;
  justify-content: center;
  line-height: 0 !important;
  margin: 0 !important;
  max-height: 38px !important;
  max-width: 38px !important;
  min-height: 38px !important;
  min-width: 38px !important;
  padding: 0 !important;
  position: relative;
  width: 38px !important;
  z-index: 2;
}

.mcsa-close:hover {
  background: rgba(255, 255, 255, .14) !important;
}

.mcsa-close svg {
  display: block !important;
  fill: none;
  height: 18px !important;
  left: 50%;
  margin: 0 !important;
  max-height: none !important;
  max-width: none !important;
  padding: 0 !important;
  position: absolute;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
  top: 50%;
  transform: translate(-50%, -50%) !important;
  width: 18px !important;
}

.mcsa-progress {
  background: #e7e8ec;
  flex: 0 0 3px;
  height: 3px;
}

.mcsa-progress span {
  background: var(--mcsa-accent);
  display: block;
  height: 100%;
  transition: width .3s ease;
  width: 18%;
}

.mcsa-messages {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  gap: 13px;
  min-height: 120px;
  overflow-x: hidden;
  overflow-y: auto;
  padding: 20px 18px 8px;
  scroll-behavior: smooth;
  scrollbar-color: rgba(24, 39, 62, .18) transparent;
  scrollbar-width: thin;
}

.mcsa-messages::-webkit-scrollbar {
  width: 5px;
}

.mcsa-messages::-webkit-scrollbar-thumb {
  background: rgba(24, 39, 62, .18);
  border-radius: 10px;
}

.mcsa-message {
  align-items: flex-end;
  display: flex;
  gap: 8px;
  max-width: 92%;
}

.mcsa-message.is-user {
  align-self: flex-end;
  justify-content: flex-end;
}

.mcsa-message.is-bot {
  align-self: flex-start;
}

.mcsa-message__avatar {
  align-items: center;
  background: var(--mcsa-primary);
  border-radius: 10px;
  color: var(--mcsa-accent);
  display: flex;
  flex: 0 0 30px;
  height: 30px;
  justify-content: center;
}

.mcsa-message__avatar svg {
  fill: none;
  height: 17px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
  width: 17px;
}

.mcsa-message__bubble {
  background: #fff;
  border: 1px solid rgba(24, 39, 62, .09);
  border-radius: 17px 17px 17px 5px;
  box-shadow: 0 4px 15px rgba(18, 34, 55, .055);
  color: var(--mcsa-primary);
  font-size: 13px;
  line-height: 1.55;
  padding: 12px 14px;
  white-space: pre-line;
}

.mcsa-message.is-user .mcsa-message__bubble {
  background: var(--mcsa-accent);
  border-color: transparent;
  border-radius: 17px 17px 5px 17px;
  box-shadow: none;
  color: var(--mcsa-primary);
  font-weight: 500;
}

.mcsa-typing {
  align-items: center;
  display: flex;
  gap: 4px;
  min-width: 48px;
}

.mcsa-typing i {
  animation: mcsaTyping 1s infinite ease-in-out;
  background: var(--mcsa-muted);
  border-radius: 50%;
  height: 5px;
  opacity: .6;
  width: 5px;
}

.mcsa-typing i:nth-child(2) { animation-delay: .14s; }
.mcsa-typing i:nth-child(3) { animation-delay: .28s; }

@keyframes mcsaTyping {
  0%, 60%, 100% { transform: translateY(0); }
  30% { transform: translateY(-4px); }
}

.mcsa-quick {
  display: grid;
  flex: 0 0 auto;
  gap: 7px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-height: 145px;
  overflow-y: auto;
  padding: 8px 18px 14px;
  scrollbar-width: none;
}

.mcsa-quick::-webkit-scrollbar { display: none; }

.mcsa-quick button {
  background: #fff !important;
  border: 1px solid rgba(24, 39, 62, .13) !important;
  border-radius: 11px !important;
  color: var(--mcsa-primary) !important;
  cursor: pointer;
  font-size: 10px !important;
  font-weight: 600 !important;
  line-height: 1.35 !important;
  margin: 0 !important;
  min-height: 40px;
  padding: 8px 10px !important;
  text-align: left;
  transition: border-color .18s ease, background .18s ease, transform .18s ease;
}

.mcsa-quick button:hover {
  background: #fffaf0 !important;
  border-color: var(--mcsa-accent) !important;
  transform: translateY(-1px);
}

.mcsa-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 1px 0 0 38px;
  max-width: calc(100% - 38px);
}

.mcsa-action {
  background: transparent !important;
  border: 1px solid var(--mcsa-accent) !important;
  border-radius: 12px !important;
  color: var(--mcsa-primary) !important;
  cursor: pointer;
  font-size: 10px !important;
  font-weight: 700 !important;
  line-height: 1.3 !important;
  margin: 0 !important;
  padding: 9px 12px !important;
}

.mcsa-action.is-primary {
  background: var(--mcsa-accent) !important;
}

.mcsa-action:hover {
  background: var(--mcsa-primary) !important;
  border-color: var(--mcsa-primary) !important;
  color: #fff !important;
}

.mcsa-lead-card {
  align-self: stretch;
  background: #fff;
  border: 1px solid rgba(24, 39, 62, .1);
  border-radius: 18px;
  box-shadow: 0 8px 24px rgba(18, 34, 55, .07);
  margin: 2px 0 8px;
  padding: 16px;
}

.mcsa-lead-card h3 {
  color: var(--mcsa-primary);
  font-family: Prata, Georgia, serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.35;
  margin: 0 0 5px;
}

.mcsa-lead-card > p {
  color: #68758a;
  font-size: 11px;
  line-height: 1.5;
  margin: 0 0 13px;
}

.mcsa-lead-form {
  display: grid;
  gap: 9px;
}

.mcsa-field {
  display: grid;
  gap: 5px;
}

.mcsa-field label {
  color: var(--mcsa-primary);
  font-size: 10px;
  font-weight: 700;
}

.mcsa-field input,
.mcsa-field select {
  appearance: none;
  background: #f8f8fa !important;
  border: 1px solid #dfe3e9 !important;
  border-radius: 11px !important;
  box-shadow: none !important;
  color: var(--mcsa-primary) !important;
  font-size: 12px !important;
  height: 43px !important;
  margin: 0 !important;
  outline: none;
  padding: 0 12px !important;
  width: 100%;
}

.mcsa-field select {
  background-image: linear-gradient(45deg, transparent 50%, #6e798a 50%), linear-gradient(135deg, #6e798a 50%, transparent 50%) !important;
  background-position: calc(100% - 16px) 18px, calc(100% - 11px) 18px !important;
  background-repeat: no-repeat !important;
  background-size: 5px 5px, 5px 5px !important;
  padding-right: 30px !important;
}

.mcsa-field input:focus,
.mcsa-field select:focus {
  border-color: var(--mcsa-accent) !important;
  box-shadow: 0 0 0 3px rgba(243, 179, 78, .14) !important;
}

.mcsa-consent {
  align-items: flex-start;
  color: #6e798a;
  cursor: pointer;
  display: flex;
  font-size: 9px;
  gap: 8px;
  line-height: 1.45;
}

.mcsa-consent input {
  accent-color: var(--mcsa-accent);
  flex: 0 0 15px;
  height: 15px;
  margin: 1px 0 0;
  width: 15px;
}

.mcsa-consent a {
  color: var(--mcsa-primary);
  text-decoration: underline;
}

.mcsa-submit {
  background: var(--mcsa-accent) !important;
  border: 1px solid var(--mcsa-accent) !important;
  border-radius: 12px !important;
  color: var(--mcsa-primary) !important;
  cursor: pointer;
  font-size: 12px !important;
  font-weight: 700 !important;
  min-height: 44px;
  padding: 10px 16px !important;
}

.mcsa-submit:hover,
.mcsa-submit:focus-visible {
  background: var(--mcsa-primary) !important;
  border-color: var(--mcsa-primary) !important;
  color: #fff !important;
}

.mcsa-submit[disabled] {
  cursor: wait;
  opacity: .65;
}

.mcsa-form-error {
  color: #aa3d3d;
  font-size: 10px;
  margin: -1px 0 0;
}

.mcsa-success {
  align-items: center;
  display: flex;
  gap: 12px;
}

.mcsa-success__icon {
  align-items: center;
  background: rgba(72, 153, 105, .12);
  border-radius: 50%;
  color: #377a53;
  display: flex;
  flex: 0 0 42px;
  font-size: 21px;
  height: 42px;
  justify-content: center;
}

.mcsa-success strong {
  color: var(--mcsa-primary);
  display: block;
  font-size: 13px;
}

.mcsa-success p {
  color: #68758a;
  font-size: 10px;
  line-height: 1.45;
  margin: 3px 0 0;
}

.mcsa-composer {
  align-items: flex-end;
  background: #fff;
  border-top: 1px solid rgba(24, 39, 62, .08);
  display: flex;
  flex: 0 0 auto;
  gap: 8px;
  margin: 0 !important;
  padding: 12px 14px;
}

.mcsa-composer textarea {
  background: #f4f5f7 !important;
  border: 1px solid transparent !important;
  border-radius: 13px !important;
  box-shadow: none !important;
  color: var(--mcsa-primary) !important;
  flex: 1;
  font-size: 12px !important;
  line-height: 1.45 !important;
  margin: 0 !important;
  max-height: 96px;
  min-height: 43px;
  outline: none;
  overflow-y: auto;
  padding: 12px 13px !important;
  resize: none;
  width: auto !important;
}

.mcsa-composer textarea:focus {
  border-color: rgba(243, 179, 78, .8) !important;
  box-shadow: 0 0 0 3px rgba(243, 179, 78, .12) !important;
}

.mcsa-composer button {
  align-items: center;
  background: var(--mcsa-accent) !important;
  border: 0 !important;
  border-radius: 13px !important;
  color: var(--mcsa-primary) !important;
  cursor: pointer;
  display: flex;
  flex: 0 0 43px;
  height: 43px;
  justify-content: center;
  margin: 0 !important;
  padding: 0 !important;
}

.mcsa-composer button:hover {
  background: var(--mcsa-primary) !important;
  color: #fff !important;
}

.mcsa-composer button svg {
  fill: none;
  height: 20px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
  width: 20px;
}

.mcsa-footer {
  align-items: center;
  background: #fff;
  color: #8a94a6;
  display: flex;
  flex: 0 0 auto;
  font-size: 8px;
  justify-content: space-between;
  padding: 0 16px 10px;
}

.mcsa-footer a {
  color: var(--mcsa-primary);
  font-size: 9px;
  font-weight: 700;
  text-decoration: none;
}

.mcsa-backdrop {
  display: none;
}

.mcsa-inline-trigger,
.mcsa-elementor-trigger {
  align-items: center;
  border-radius: 18px;
  cursor: pointer;
  display: inline-flex;
  justify-content: center;
  max-width: 100%;
  text-decoration: none !important;
}

.mcsa-inline-trigger {
  background: var(--mcsa-accent, #f3b34e) !important;
  border: 0 !important;
  color: var(--mcsa-primary, #18273e) !important;
  font-weight: 700;
  padding: 16px 28px !important;
}

.mcsa-elementor-trigger {
  border: 1px solid transparent !important;
  gap: 13px;
  min-height: 68px;
  min-width: 260px;
  overflow: hidden;
  padding: 8px 20px 8px 8px !important;
  position: relative;
  text-align: left;
  transform: translateY(0);
  transition: color .22s ease, background .22s ease, border-color .22s ease, box-shadow .22s ease, transform .22s ease !important;
  isolation: isolate;
}

.mcsa-shortcode-trigger {
  align-items: center !important;
  border-radius: 999px !important;
  box-sizing: border-box !important;
  display: inline-flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  font-family: Montserrat, Arial, sans-serif !important;
  gap: 13px !important;
  justify-content: center !important;
  line-height: 1 !important;
  min-width: 260px !important;
  width: min(100%, 340px) !important;
}

.mcsa-shortcode-trigger .mcsa-elementor-trigger__icon {
  align-items: center !important;
  box-sizing: border-box !important;
  border-radius: 50% !important;
  display: inline-flex !important;
  flex: 0 0 50px !important;
  justify-content: center !important;
}

.mcsa-shortcode-trigger .mcsa-elementor-trigger__text {
  display: flex !important;
  flex: 1 1 auto !important;
  flex-direction: column !important;
}

.mcsa-shortcode-trigger .mcsa-elementor-trigger__arrow {
  align-items: center !important;
  display: inline-flex !important;
  flex: 0 0 22px !important;
  justify-content: center !important;
}

.mcsa-shortcode-trigger .mcsa-elementor-trigger__arrow svg {
  display: block;
  fill: none;
  height: 18px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
  width: 18px;
}

.mcsa-elementor-trigger::before {
  background: linear-gradient(110deg, transparent 20%, rgba(255, 255, 255, .13) 48%, transparent 76%);
  content: "";
  height: 180%;
  left: -60%;
  pointer-events: none;
  position: absolute;
  top: -40%;
  transform: rotate(8deg);
  transition: left .55s ease;
  width: 42%;
  z-index: -1;
}

.mcsa-elementor-trigger:hover,
.mcsa-elementor-trigger:focus-visible {
  transform: translateY(-2px);
}

.mcsa-elementor-trigger:hover::before,
.mcsa-elementor-trigger:focus-visible::before {
  left: 120%;
}

.mcsa-elementor-trigger:focus-visible {
  outline: 3px solid rgba(243, 179, 78, .32) !important;
  outline-offset: 3px;
}

.mcsa-elementor-trigger.is-premium-dark {
  background: #18273e !important;
  border-color: rgba(243, 179, 78, .28) !important;
  box-shadow: 0 14px 30px rgba(18, 36, 59, .2) !important;
  color: #fff !important;
}

.mcsa-elementor-trigger.is-premium-dark:hover,
.mcsa-elementor-trigger.is-premium-dark:focus-visible {
  background: #f3b34e !important;
  border-color: #f3b34e !important;
  box-shadow: 0 17px 34px rgba(199, 139, 42, .25) !important;
  color: #18273e !important;
}

.mcsa-elementor-trigger.is-premium-gold {
  background: #f3b34e !important;
  border-color: #f3b34e !important;
  box-shadow: 0 14px 30px rgba(199, 139, 42, .22) !important;
  color: #18273e !important;
}

.mcsa-elementor-trigger.is-premium-gold:hover,
.mcsa-elementor-trigger.is-premium-gold:focus-visible {
  background: #18273e !important;
  border-color: #18273e !important;
  box-shadow: 0 17px 34px rgba(18, 36, 59, .24) !important;
  color: #fff !important;
}

.mcsa-elementor-trigger.is-premium-light {
  background: #fbfaf7 !important;
  border-color: rgba(24, 39, 62, .2) !important;
  box-shadow: 0 12px 26px rgba(18, 36, 59, .1) !important;
  color: #18273e !important;
}

.mcsa-elementor-trigger.is-premium-light:hover,
.mcsa-elementor-trigger.is-premium-light:focus-visible {
  background: #18273e !important;
  border-color: #18273e !important;
  box-shadow: 0 17px 34px rgba(18, 36, 59, .2) !important;
  color: #fff !important;
}

.mcsa-elementor-trigger__icon {
  align-items: center;
  background: #f3b34e !important;
  border-radius: 13px;
  color: #18273e !important;
  display: inline-flex;
  flex: 0 0 50px;
  height: 50px;
  justify-content: center;
  position: relative;
  transition: color .22s ease, background .22s ease, transform .22s ease;
  width: 50px;
  z-index: 1;
}

.mcsa-elementor-trigger.is-premium-dark:hover .mcsa-elementor-trigger__icon,
.mcsa-elementor-trigger.is-premium-dark:focus-visible .mcsa-elementor-trigger__icon {
  background: #18273e !important;
  color: #f3b34e !important;
}

.mcsa-elementor-trigger.is-premium-gold .mcsa-elementor-trigger__icon {
  background: #18273e !important;
  color: #f3b34e !important;
}

.mcsa-elementor-trigger.is-premium-gold:hover .mcsa-elementor-trigger__icon,
.mcsa-elementor-trigger.is-premium-gold:focus-visible .mcsa-elementor-trigger__icon {
  background: #f3b34e !important;
  color: #18273e !important;
}

.mcsa-elementor-trigger.is-premium-light .mcsa-elementor-trigger__icon {
  background: rgba(243, 179, 78, .16) !important;
  color: #b77816 !important;
}

.mcsa-elementor-trigger.is-premium-light:hover .mcsa-elementor-trigger__icon,
.mcsa-elementor-trigger.is-premium-light:focus-visible .mcsa-elementor-trigger__icon {
  background: #f3b34e !important;
  color: #18273e !important;
}

.mcsa-elementor-trigger:hover .mcsa-elementor-trigger__icon,
.mcsa-elementor-trigger:focus-visible .mcsa-elementor-trigger__icon {
  transform: rotate(-3deg) scale(1.03);
}

.mcsa-elementor-trigger__icon svg {
  display: block;
  fill: currentColor;
  height: 1em;
  width: 1em;
}

.mcsa-elementor-trigger__icon .mcsa-elementor-trigger__default-icon {
  fill: none;
  height: 23px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
  width: 23px;
}

.mcsa-elementor-trigger__text {
  align-items: flex-start;
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  min-width: 0;
  position: relative;
  z-index: 1;
}

.mcsa-elementor-trigger__text strong {
  color: inherit;
  font-family: Montserrat, Arial, sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -.02em;
  line-height: 1.2;
  margin: 0;
}

.mcsa-elementor-trigger__text small {
  color: rgba(255, 255, 255, .62);
  font-family: Montserrat, Arial, sans-serif;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: .01em;
  line-height: 1.3;
  margin-top: 4px;
  transition: color .22s ease;
}

.mcsa-elementor-trigger.is-premium-dark:hover .mcsa-elementor-trigger__text small,
.mcsa-elementor-trigger.is-premium-dark:focus-visible .mcsa-elementor-trigger__text small,
.mcsa-elementor-trigger.is-premium-gold .mcsa-elementor-trigger__text small,
.mcsa-elementor-trigger.is-premium-light .mcsa-elementor-trigger__text small {
  color: rgba(24, 39, 62, .66);
}

.mcsa-elementor-trigger.is-premium-gold:hover .mcsa-elementor-trigger__text small,
.mcsa-elementor-trigger.is-premium-gold:focus-visible .mcsa-elementor-trigger__text small,
.mcsa-elementor-trigger.is-premium-light:hover .mcsa-elementor-trigger__text small,
.mcsa-elementor-trigger.is-premium-light:focus-visible .mcsa-elementor-trigger__text small {
  color: rgba(255, 255, 255, .62);
}

.mcsa-elementor-trigger__arrow {
  align-items: center;
  color: currentColor;
  display: inline-flex;
  flex: 0 0 auto;
  font-family: Arial, sans-serif;
  font-size: 16px;
  height: 28px;
  justify-content: center;
  opacity: .72;
  position: relative;
  transition: opacity .2s ease, transform .2s ease;
  width: 22px;
  z-index: 1;
}

.mcsa-elementor-trigger:hover .mcsa-elementor-trigger__arrow,
.mcsa-elementor-trigger:focus-visible .mcsa-elementor-trigger__arrow {
  opacity: 1;
  transform: translate(2px, -2px);
}

.mcsa-elementor-trigger.has-icon-right .mcsa-elementor-trigger__icon {
  order: 3;
}

.mcsa-elementor-trigger.has-icon-right .mcsa-elementor-trigger__text {
  order: 1;
}

.mcsa-elementor-trigger.has-icon-right .mcsa-elementor-trigger__arrow {
  order: 2;
}

@media (max-width: 480px) {
  .mcsa-elementor-trigger {
    min-width: 0 !important;
    width: 100%;
  }

  .mcsa-shortcode-trigger {
    min-width: 0 !important;
    width: 100% !important;
  }
}

@media (max-width: 767px) {
  body.mcsa-lock {
    overflow: hidden;
  }

  .mcsa-launcher {
    border-radius: 18px !important;
    bottom: 14px;
    min-height: 56px;
    padding: 7px !important;
    right: 14px;
  }

  .mcsa-launcher__icon {
    border-radius: 13px;
    flex-basis: 42px;
    height: 42px;
  }

  .mcsa-launcher__pulse {
    left: 40px;
    top: 5px;
  }

  .mcsa-launcher__text {
    display: none;
  }

  .mcsa-dialog {
    border: 0;
    border-radius: 22px 22px 0 0;
    bottom: 0;
    height: min(760px, 94dvh);
    left: 0;
    max-height: 94vh;
    right: 0;
    transform: translateY(100%);
    transform-origin: center bottom;
    width: 100%;
  }

  .mcsa-assistant.is-open .mcsa-dialog {
    transform: translateY(0);
  }

  .mcsa-header {
    min-height: 82px;
    padding: 14px 15px;
  }

  .mcsa-avatar {
    border-radius: 13px;
    flex-basis: 46px;
    height: 46px;
  }

  .mcsa-header__copy strong {
    font-size: 16px;
  }

  .mcsa-messages {
    padding: 17px 13px 8px;
  }

  .mcsa-message {
    max-width: 95%;
  }

  .mcsa-message__bubble {
    font-size: 12px;
  }

  .mcsa-quick {
    gap: 6px;
    max-height: 140px;
    padding: 7px 13px 12px;
  }

  .mcsa-quick button {
    font-size: 9px !important;
  }

  .mcsa-composer {
    padding: 10px 12px;
  }

  .mcsa-backdrop {
    background: rgba(9, 20, 36, .52);
    bottom: 0;
    display: block;
    left: 0;
    opacity: 0;
    pointer-events: none;
    position: fixed;
    right: 0;
    top: 0;
    transition: opacity .22s ease;
    z-index: 4;
  }

  .mcsa-assistant.is-open .mcsa-backdrop {
    opacity: 1;
    pointer-events: auto;
  }
}

@media (max-width: 380px) {
  .mcsa-quick {
    grid-template-columns: 1fr;
  }

  .mcsa-header__copy strong {
    font-size: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .mcsa-assistant *,
  .mcsa-assistant *::before,
  .mcsa-assistant *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
}
