.elementor-1242 .elementor-element.elementor-element-ad72740{--display:flex;}#elementor-popup-modal-1242{background-color:rgba(0,0,0,.8);justify-content:center;align-items:center;pointer-events:all;}#elementor-popup-modal-1242 .dialog-message{width:640px;height:380px;align-items:flex-start;}#elementor-popup-modal-1242 .dialog-widget-content{box-shadow:2px 8px 23px 3px rgba(0,0,0,0.2);}@media(max-width:767px){#elementor-popup-modal-1242 .dialog-message{height:0vh;}}/* Start custom CSS for html, class: .elementor-element-cf58da4 *//* =========================
   Cookie Banner – Helpers UI
   ========================= */

.helpers-cookie {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;

  display: flex;
  align-items: center;
  gap: 20px;

  width: calc(100% - 32px);
  max-width: 720px;

  padding: 22px 26px;

  background: linear-gradient(145deg, #0f2238, #0c1a2d);
  border: 1.5px solid #2f6fed;
  border-radius: 22px;

  box-shadow:
    0 0 0 3px rgba(47,111,237,0.2),
    0 10px 40px rgba(0,0,0,0.45);

  animation: cookieIn 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Icon */
.helpers-cookie-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: #142c4a;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 26px;

  box-shadow: inset 0 0 0 2px #2f6fed;
  flex-shrink: 0;
}

/* Text */
.helpers-cookie-text {
  flex: 1;
  color: #cfe4ff;
  font-size: 16px;
  line-height: 1.5;
}

.helpers-cookie-text strong {
  color: #4da3ff;
  font-weight: 600;
}

/* Actions */
.helpers-cookie-actions {
  display: flex;
  gap: 12px;
}

.cookie-btn {
  padding: 10px 18px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.15);
  background: transparent;
  color: #cfe4ff;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;

  transition:
    background 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.2s ease;
}

.cookie-btn:hover {
  transform: translateY(-1px);
}

/* Accept button */
.cookie-btn.accept {
  background: linear-gradient(145deg, #2f6fed, #4da3ff);
  color: #081626;
  border: none;
  box-shadow: 0 0 0 2px rgba(47,111,237,0.35);
}

.cookie-btn.accept:hover {
  box-shadow:
    0 0 0 2px rgba(47,111,237,0.55),
    0 0 20px rgba(47,111,237,0.5);
}

/* Settings button */
.cookie-btn.settings:hover {
  background: rgba(255,255,255,0.06);
}

/* =========================
   Responsive
   ========================= */

/* Tablet */
@media (max-width: 1024px) {
  .helpers-cookie {
    gap: 16px;
    padding: 20px 22px;
  }
}

/* Mobile */
@media (max-width: 640px) {
  .helpers-cookie {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
    gap: 16px;
  }

  .helpers-cookie-actions {
    justify-content: center;
  }

  .helpers-cookie-icon {
    margin: 0 auto;
  }
}

/* =========================
   Animation
   ========================= */
@keyframes cookieIn {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}/* End custom CSS */