#yolk-chat-widget {
    position:fixed;
    inset:0;
    z-index:99999;
    pointer-events:none;
    font-family:"Open Sans";
}

#yolk-chat-panel,
#yolk-chat-panel *,
#yolk-chat-launcher {
  pointer-events: auto;
}

#yolk-chat-launcher, #yolk-chat-panel {
    pointer-events:auto;
}
#yolk-chat-launcher {
    position: absolute;
    right: 0;
    bottom: 0;
     width: 52px;
      height: 52px;
      border-radius: 50%;
    border:0;
    background: linear-gradient(
      90deg, #D99A00 0%, #FEBA02 100%
    );
    color:#fff;
    cursor:grab;
    display:flex;
    align-items:center;
    justify-content:center;
    box-shadow: 0 8px 20px rgba(217, 154, 0, 0.25);
    pointer-events: auto;
}
#yolk-chat-launcher i {
    font-size: 18px;
    line-height: 1;
    color: #fff;
}
#yolk-chat-panel {
    position:fixed;
    right:12px;
    bottom:145px;
    width:450px;
    max-width:calc(100vw - 24px);
}
#yolk-chat-panel.yolk-chat-hidden {
    opacity:0;
    visibility:hidden;
    transform:translateY(12px);
}
#yolk-chat-tooltip,
#yolk-chat-tooltip * {
  pointer-events: auto;
}
.yolk-chat-card {
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 25px 60px rgba(0,0,0,.18);
    height: 640px;
    display: flex;
    flex-direction: column;
}
.yolk-chat-header {
    position: relative;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(
      90deg, #D99A00 0%, #FEBA02 100%
    );
    color: #fff;
    padding: 0 48px;
}
.yolk-chat-title {
    font-size: 15px;
    font-weight: 600;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

#yolk-header-back {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 16px;
    cursor: pointer;
    display: none;
    border: 0;
    background: none;
    color: #fff;
}
#yolk-chat-close {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    border: 0;
    background: none;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
}
.yolk-subscreen-open #yolk-header-back {
    display: block;
}
#yolk-chat-close i {
    font-size: 22px;
    line-height: 1;
    color: #fff;
}
.yolk-chat-body {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
}
.yolk-screen[data-screen="home"].is-active {
    display: block;
}
.yolk-chat-intro {
    font-size: 22px;
    text-align:center;
    margin-bottom:30px;
    color: #0e0b16;
}
.yolk-chat-option {
    width:100%;
    margin-bottom:12px;
    padding:12px;
    border-radius:14px;
    color: #0e0b16;
    border:2px solid #FEBA02;
    cursor:pointer;
    text-align: center;
    font-size: 16px;
    line-height: 1.5;
    background-color: #f9f7f1;
}
.yolk-chat-option:hover {
    color: #fff;
    border: 2px solid;
    background: linear-gradient(
      90deg, #D99A00 0%, #FEBA02 100%
    )
}
.yolk-chat-link {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}
.yolk-icon-close {
    display: none;
}
body.yolk-chat-open .yolk-icon-chat {
    display: none;
}
body.yolk-chat-open .yolk-icon-close {
    display: inline-flex;
}
.yolk-screen {
    display: none;
    height: 100%;
}
.yolk-screen.is-active {
    display: flex !important;
    flex-direction: column;
    height: 100%;
}
.yolk-screen-home {
    justify-content: center;
}
.yolk-form-title {
    text-align: center;
    font-size: 18px;
    font-weight: 800;
    color: #FEBA02;
    margin-bottom: 24px;
}
#yolk-chat-panel label {
    display: block;
    font-size: 15px;
    font-weight: 600;
    margin: 0 0 8px;
    color: #0E0B16;
    line-height: 1;
}
#yolk-chat-panel input,
#yolk-chat-panel select,
#yolk-chat-panel textarea {
    width: 100%;
    margin-bottom: 18px;
    padding: 14px 16px;
    border: 1px solid #d9d9df;
    border-radius: 10px;
    background: #fff;
    font-size: 14px;
    box-sizing: border-box;
    font-family: inherit;
    line-height: inherit;
}
.yolk-form-actions {
    margin-top: auto;
    padding-top: 12px;
}
.yolk-submit-btn {
    width: 100% !important;
    border-radius: 12px;
    border: none !important;
    font-size: 15px !important;
    font-weight: 600;
    cursor: pointer;
    color: #fff !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease !important;
    padding: 12px !important;
    margin-bottom: 25px;
    background: linear-gradient(
      90deg, #D99A00 0%, #FEBA02 100%
    );
    line-height: 1.5;
}
.yolk-submit-btn:disabled {
    background: #e5e5e5;
    color: #ffffff;
    cursor: not-allowed;
}
.yolk-submit-btn:not(:disabled) {
    background: linear-gradient(
      90deg, #D99A00 0%, #FEBA02 100%
    );
    color: #fff;
    cursor: pointer;
    border-radius: 12px;
}
.yolk-submit-btn:disabled,
.yolk-submit-btn:disabled:hover,
.yolk-submit-btn:disabled:focus {
    background: #e5e5e5 !important;
    color: #ffffff !important;
    cursor: not-allowed;
    transform: none !important;
    box-shadow: none !important;
    border-radius: 12px;
}
.crox-screen-copy {
    text-align: center;
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
}
.iti--separate-dial-code, .iti__selected-dial-code {
  margin-left: 6px;
  color: #111;
  font-size: 14px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
}

.iti__dropdown-content {
  border-radius: 12px !important;
  border: 1px solid #d9d9df !important;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12) !important;
  overflow: hidden;
  background: #fff;
  z-index: 999999 !important;
}

.iti__search-input {
  width: 100% !important;
  margin: 0 !important;
  padding: 12px 14px 12px 38px !important;
  border: 0 !important;
  border-bottom: 1px solid #e5e5e5 !important;
  border-radius: 0 !important;
  background: #fff !important;
  box-shadow: none !important;
  font-size: 14px !important;
  min-height: auto !important;
}

.iti__search-input:focus {
  outline: none !important;
  box-shadow: none !important;
}

.iti__search-container {
  position: relative;
}

.iti__country-list {
  margin: 0 !important;
  padding: 6px 0 !important;
  background: #fff !important;
  max-height: 240px !important;
}

.iti__country {
  padding: 10px 14px !important;
  font-size: 14px;
}

.iti__country.iti__highlight {
  background: #f3f0ff !important;
}

.iti__checkmark {
  color: #7c4dff !important;
}

.iti__flag {
  box-shadow: none !important;
}

.yolk-field-error {
  margin-top: 8px;
  margin-bottom: 14px;
  font-size: 12px;
  color: #d64545;
}
.iti--separate-dial-code {
  width: 100% !important;
}
.iti__flag-container {
  position: absolute !important;
  top: 0 !important;
  bottom: 0 !important;
  left: 0 !important;
  display: flex !important;
  align-items: center !important;
  width: 76px !important;
  z-index: 3 !important;
  pointer-events: auto !important;
}
.iti__selected-country {
  height: 100% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex-direction: row !important;
  white-space: nowrap !important;
  padding: 0 10px 0 12px !important;
  background: transparent !important;
  border: 0 !important;
}
.iti__selected-country-primary {
  display: inline-flex !important;
  align-items: center !important;
  flex-direction: row !important;
  gap: 6px !important;
  white-space: nowrap !important;
  line-height: 1 !important;
  pointer-events: auto !important;
}
.iti__search-clear {
    border: none !important;
}
.iti__search-clear:hover {
    background-color: unset !important;
}

.yolk-floating-error {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 30;

  display: flex;
  align-items: center;
  gap: 12px;

  padding: 14px 16px;
  border-radius: 14px;

  background: linear-gradient(135deg, rgba(255, 235, 238, 0.98), rgba(255, 245, 247, 0.98));
  border: 1px solid rgba(220, 53, 69, 0.25);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.16);

  color: #b42318;
  opacity: 0;
  transform: translateY(16px) scale(0.98);
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.yolk-floating-error.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.yolk-floating-error-icon {
  flex: 0 0 auto;
  font-size: 18px;
  color: #d92d20;
  display: flex;
  align-items: center;
  justify-content: center;
}

.yolk-floating-error-text {
  flex: 1 1 auto;
  font-size: 13px;
  line-height: 1.45;
  font-weight: 600;
}

.yolk-floating-error-close {
  flex: 0 0 auto;
  border: 0;
  background: transparent;
  color: #b42318;
  font-size: 16px;
  line-height: 1;
  cursor: pointer;
  padding: 0;
}

#yolk-chat-panel {
  position: fixed;
}

.yolk-chat-card {
  position: relative;
}

.yolk-floating-success {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 30;

  display: flex;
  align-items: center;
  gap: 12px;

  padding: 14px 16px;
  border-radius: 14px;

  background: linear-gradient(135deg, rgba(236, 253, 243, 0.98), rgba(240, 253, 244, 0.98));
  border: 1px solid rgba(18, 183, 106, 0.25);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.16);

  color: #067647;
  opacity: 0;
  transform: translateY(16px) scale(0.98);
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.yolk-floating-success.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.yolk-floating-success-icon {
  flex: 0 0 auto;
  font-size: 18px;
  color: #12b76a;
  display: flex;
  align-items: center;
  justify-content: center;
}

.yolk-floating-success-text {
  flex: 1 1 auto;
  font-size: 13px;
  line-height: 1.45;
  font-weight: 600;
}

.yolk-floating-error-close:hover {
    background: transparent !important;
    color: #b42318 !important;
}

.yolk-submit-btn.is-loading {
  position: relative;
  pointer-events: none;
  opacity: 0.9;
}

.yolk-submit-btn.is-loading .yolk-btn-text {
  opacity: 0;
}

.yolk-submit-btn.is-loading::after {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  top: 50%;
  left: 50%;
  margin-top: -9px;
  margin-left: -9px;
  border: 2px solid rgba(255, 255, 255, 0.45);
  border-top-color: #fff;
  border-radius: 50%;
  animation: croxSpin 0.7s linear infinite;
}

@keyframes croxSpin {
  to {
    transform: rotate(360deg);
  }
}

.yolk-screen-sales {
  display: none;
  height: 100%;
  min-height: 0;
}

.yolk-screen-sales.is-active {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 0;
}

.yolk-sales-chat {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 0;
}

.yolk-sales-messages {
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 16px 12px;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
}

.yolk-sales-composer {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 8px 0;
  border-top: 1px solid #e7e7ec;
  background: #fff;
  position: relative;
  z-index: 5;
}

.yolk-sales-input-wrap {
  flex: 1 1 auto;
  min-width: 0;
}

#yolk-sales-input {
    width: 100% !important;
    min-height: 44px;
    padding: 0 16px !important;
    border: 1.5px solid #FEBA02 !important;
    border-radius: 999px !important;
    background: #fff !important;
    font-size: 14px !important;
    margin-bottom: 0 !important;
}

#yolk-sales-input:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

#yolk-sales-input:focus {
  outline: none;
}

.yolk-sales-send {
    width: 42px !important;
    height: 42px;
    border-radius: 50% !important;
    border: none !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    background: linear-gradient(
      90deg, #D99A00 0%, #FEBA02 100%
    );
    box-shadow: 0 6px 16px rgba(217, 154, 0, 0.25);
    color: #fff !important;
    cursor: pointer;
    flex: 0 0 42px;
    padding: 0 !important;
}

.yolk-sales-send:disabled {
  background: #d9d9de;
  color: #fff;
  cursor: not-allowed;
}

.yolk-sales-send:disabled:hover {
  background: #d9d9de;
}

.yolk-sales-send i {
  font-size: 14px;
  line-height: 1;
}

.yolk-sales-send:hover:not(:disabled) {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(124, 77, 255, 0.3);
}

.yolk-sales-message {
  display: flex;
  margin-bottom: 14px;
  width: 100%;
}

.yolk-sales-message.bot {
  justify-content: flex-start;
}

.yolk-sales-message.user {
  justify-content: flex-end;
}

.yolk-sales-bubble {
  max-width: 78%;
  padding: 12px 14px 8px;
  border-radius: 18px;
  font-size: 14px;
  line-height: 1.6;
  word-break: break-word;
  box-shadow: 0 2px 6px rgba(0,0,0,0.04);
}

.yolk-sales-message.bot .yolk-sales-bubble {
  background: #f0f2f5;
  color: #2b2b2b;
  border-bottom-left-radius: 0px;
}

.yolk-sales-message.user .yolk-sales-bubble {
  background: linear-gradient(
      90deg, #D99A00 0%, #FEBA02 100%
    );
  color: #fff;
  border-bottom-right-radius: 0px;
}

.yolk-sales-text {
  white-space: pre-wrap;
}

.yolk-sales-time {
  margin-top: 6px;
  font-size: 11px;
  opacity: 0.7;
}

.yolk-sales-message.user .yolk-sales-time {
  text-align: right;
}

.yolk-sales-thinking {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.yolk-sales-thinking-dots {
  display: inline-flex;
  gap: 4px;
}

.yolk-sales-thinking-dots span {
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: currentColor;
  opacity: 0.45;
  animation: croxDots 1.2s infinite ease-in-out;
}

.yolk-sales-thinking-dots span:nth-child(2) {
  animation-delay: 0.15s;
}

.yolk-sales-thinking-dots span:nth-child(3) {
  animation-delay: 0.3s;
}

@keyframes croxDots {
  0%, 80%, 100% {
    opacity: 0.3;
    transform: translateY(0);
  }
  40% {
    opacity: 1;
    transform: translateY(-1px);
  }
}

.yolk-sales-text {
  white-space: normal;
  word-break: break-word;
}

.yolk-sales-text p {
  margin: 0 0 10px;
}

.yolk-sales-text p:last-child {
  margin-bottom: 0;
}

.yolk-sales-text ul,
.yolk-sales-text ol {
  margin: 8px 0 8px 18px;
  padding: 0;
}

.yolk-sales-text a {
  color: #0000ee;
  text-decoration: underline;
}

#yolk-chat-launcher {
  touch-action: none;
  user-select: none;
  -webkit-user-select: none;
  cursor: grab;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

#yolk-chat-launcher:active {
  cursor: grabbing;
}

#yolk-chat-panel,
.yolk-chat-card {
  overflow: hidden !important;
}

.yolk-chat-body {
  overflow-y: auto !important;
  overflow-x: hidden !important;
}

.iti {
  width: 100% !important;
  position: relative;
}

.iti input[type="tel"],
.iti input[type="text"] {
  width: 100% !important;
  margin: 0 !important;
  padding-left: 92px !important;
  box-sizing: border-box !important;
}

#yolk-chat-tooltip {
  position: absolute;
  right: 0;
  bottom: 64px;
  min-width: 180px;
  max-width: 220px;
  padding: 10px 12px;
  border-radius: 14px;
  background: linear-gradient(
        90deg, #D99A00 0%, #FEBA02 100%
    );
    backdrop-filter: blur(14px);
    color: #fff;
  font-size: 13px;
  line-height: 1.4;
  display: flex;
  align-items: center;
  gap: 10px;
  pointer-events: auto;
}

#yolk-chat-tooltip-close i {
    color: #fff;
}

#yolk-chat-tooltip::after {
  content: "";
  position: absolute;
  right: 18px;
  bottom: -7px;
  width: 12px;
  height: 12px;
  background: #FEBA02;
  transform: rotate(45deg);
}

#yolk-chat-tooltip button {
  border: 0;
  background: transparent;
  color: #fff;
  cursor: pointer;
  padding: 0;
  line-height: 1;
  font-size: 12px;
  flex: 0 0 auto;
}

#yolk-chat-tooltip.is-hidden {
  display: none !important;
}

#yolk-chat-fab {
  position: fixed;
  right: 24px;
  bottom: 85px;
  z-index: 99999;
  width: 220px;
  pointer-events: auto;
  overflow: visible !important;
}

@media (max-width: 767px) {
    .iti__flag-container {
        position: absolute !important;
        top: 0 !important;
        bottom: 0 !important;
        left: 0 !important;
        width: 76px !important;
        pointer-events: auto !important;
    }

    .iti__selected-country,
    .iti__selected-country-primary,
    .iti__arrow {
        pointer-events: auto !important;
        -webkit-tap-highlight-color: transparent;
        touch-action: manipulation;
    }

    .iti__dropdown-content,
    .iti__country-container,
    .iti__country-list {
        z-index: auto !important;
    }
    
    #yolk-chat-fab {
        position: fixed;
        right: 16px;
        bottom: 85px;
        width: 190px;
        height: 110px;
        z-index: 99999;
        pointer-events: auto;
        overflow: visible !important;
    }
  
    #yolk-chat-launcher {
        position: absolute !important;
        right: 0 !important;
        bottom: 0 !important;
        width: 48px !important;
        height: 48px !important;
        z-index: 2;
    }
    
    #yolk-chat-tooltip {
        position: absolute !important;
        right: 0 !important;
        bottom: 58px !important;
        left: auto !important;
        top: auto !important;
        min-width: 160px;
        max-width: 190px;
        padding: 9px 11px;
        font-size: 12px;
        line-height: 1.35;
        z-index: 1;
    }
    
    #yolk-chat-tooltip::after {
        right: 16px;
        bottom: -6px;
        width: 12px;
        height: 12px;
    }

    #yolk-chat-widget {
        position: fixed !important;
        z-index: 999999 !important;
    }

    .yolk-chat-title {
        font-size: 15px;
    }

    #yolk-header-back,
    #yolk-chat-close {
        width: 34px;
        height: 34px;
        font-size: 15px;
    }
    .yolk-chat-intro {
        font-size: 16px;
        line-height: 1.4;
        margin: 0 0 24px;
    }
    .yolk-form-title {
        font-size: 17px;
        margin-bottom: 18px;
    }

    .yolk-form-actions {
        margin-top: 14px;
    }
  
    body.yolk-chat-open #yolk-chat-launcher {
        display: none !important;
    }
  
    #yolk-chat-panel {
        position: fixed !important;
        top: 50% !important;
        left: 50% !important;
        right: auto !important;
        bottom: auto !important;
        transform: translate(-50%, -50%) !important;
        width: calc(100vw - 24px) !important;
        max-width: 420px !important;
    }

    .yolk-chat-card {
        width: 100%;
        height: min(82vh, 720px);
        min-height: 520px;
        border-radius: 20px;
    }

    .yolk-chat-header {
        height: 54px;
    }
    
    .yolk-chat-option {
        min-height: 46px;
        font-size: 14px;
        margin-bottom: 12px;
    }

    #yolk-chat-panel .yolk-screen input:not(.iti__search-input),
    #yolk-chat-panel .yolk-screen select,
    #yolk-chat-panel .yolk-screen textarea {
        font-size: 16px;
        padding: 13px 14px;
        margin-bottom: 14px;
    }
    
    #yolk-chat-panel select {
        font-size: 16px !important;
        color: #111 !important;
        -webkit-text-fill-color: #111 !important;
        appearance: none !important;
        -webkit-appearance: none !important;
        box-shadow: none !important;
        text-indent: 0 !important;
    }

    #yolk-chat-panel label {
        font-size: 13px;
        margin-bottom: 6px;
    }

    .yolk-submit-btn {
        min-height: 48px;
        font-size: 14px;
    }
  
    #yolk-chat-panel,
    .yolk-chat-card {
        overflow: hidden !important;
    }
    
    #yolk-sales-input {
        font-size: 16px !important;
    }

    .yolk-chat-body {
        display: flex;
        flex-direction: column;
        height: calc(100% - 54px);
    }
  
    .iti--container {
        z-index: 999999 !important;
    }
    
    .yolk-screen-sales.is-active {
        display: flex;
        flex-direction: column;
        height: 100%;
        min-height: 0;
    }

    .yolk-sales-chat {
        display: flex;
        flex-direction: column;
        height: 100%;
        min-height: 0;
    }

    .yolk-sales-messages {
        flex: 1 1 auto;
        min-height: 0;
        overflow-y: auto;
        overflow-x: hidden;
        padding: 16px 12px 12px;
        -webkit-overflow-scrolling: touch;
    }

    .yolk-sales-composer {
        flex: 0 0 auto;
        padding: 10px 8px 10px;
        background: #fff !important;
        border-top: 1px solid #e7e7ec;
        position: relative;
        z-index: 6;
    }
}