/* Center wrapper */
.center-wrapper {
  display: flex;
  justify-content: center;
  padding: 40px 20px;
}

/* Outer box */
.welcome__left {
  background-color: #f5faff;
  padding: 18px 22px;
  width: 100%;
  max-width: 900px;
  border-radius: 16px;
  border: 1px solid #dcebff;
  box-shadow: 0 4px 16px rgba(13, 110, 253, 0.08);
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #333;
}

/* Layout: side-by-side on desktop, stacked on mobile */
.content-wrapper {
  display: flex;
  flex-direction: row;
  gap: 30px;
  align-items: flex-start;
}

/* Text section */
.text-content {
  flex: 1;
}

/* Image section */
.image-container {
  flex: 0 0 250px;
}

.image {
  width: 100%;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
}

/* Headings and paragraphs */
.suptitle {
  text-transform: uppercase;
  font-size: 14px;
  font-weight: bold;
  color: #555;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #111;
}

h1.welcome__title {
  font-size: 17px;
  line-height: 1.25;
  margin-bottom: 6px;
}

.welcome__left .welcome__tagline {
  font-size: 12.5px;
  margin-bottom: 5px;
}

.welcome__left .welcome__text {
  font-size: 12.5px;
  line-height: 1.35;
  margin-bottom: 5px;
}

.welcome__text,
.text {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 16px;
}

.text strong,
.welcome__text strong {
  color: #0077cc;
}

.text:last-child {
  font-weight: 500;
  color: #000;
}

/* MOBILE styles */
@media (max-width: 768px) {
  .content-wrapper {
    flex-direction: column;
  }

  .image-container {
    margin-top: 10px;
    width: 110px;
    max-width: 32%;
    margin-left: auto;
    margin-right: auto;
  }

  .image {
    max-width: 100%;
    border-radius: 8px;
  }

  .welcome__left {
    padding: 14px 16px;
  }

  .title {
    font-size: 24px;
  }

  .text,
  .welcome__text {
    font-size: 15px;
  }
}
/* Optional wrapper padding for breathing room */
.well {
  padding: 30px;
}

/* Add top/bottom padding on small screens */
@media (max-width: 768px) {
  .well {
    padding: 20px;
  }

  .form-group,
  .checkbox {
    margin-bottom: 20px;
  }

  .alert {
    margin-bottom: 20px;
  }
}
/* Make the Sign In button modern and pill-shaped */
.btn.btn-primary {
  background-color: #0d6efd;  /* same as earlier code */
  border: none;
  padding: 12px 28px;
  border-radius: 999px; /* oval/pill shape */
  font-size: 16px;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.btn.btn-primary:hover {
  background-color: #005fa3; /* a slightly darker shade on hover */
}
.well {
  background-color: #ffffff;            /* Pure white functional panel */
  padding: 40px;                        /* Spacious inner padding */
  border-radius: 16px;                  /* Rounded corners */
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);  /* Soft shadow for depth */
  border: none;                         /* Remove Bootstrap's default border */
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #333;                          /* Consistent text color */
}
/* Modern Input Fields */
.form-control {
  background-color: #ffffff;        /* Pure white functional input */
  border: 1px solid #ddd;           /* Light border for subtle distinction */
  padding: 12px 20px;                /* Comfortable padding for text */
  border-radius: 12px;               /* Rounded corners for a modern look */
  font-size: 16px;                   /* Clean, readable text size */
  height: auto;                      /* Let the box grow to fit the padding instead of the inherited fixed 34px, which was clipping select/input text */
  min-height: 46px;
  line-height: 1.5;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;  /* Smooth transitions */
}

/* Focused Input Box (when clicked) */
.form-control:focus {
  border-color: #0077cc;            /* Highlight the border with your primary color */
  box-shadow: 0 0 8px rgba(0, 119, 204, 0.3); /* Soft glowing effect around the box */
  outline: none;                    /* Remove default outline */
}

/* Input Box on Disabled (optional) */
.form-control:disabled {
  background-color: #e9ecef;        /* Slightly darker background */
  border-color: #ddd;               /* Greyed out border */
  cursor: not-allowed;              /* Disable cursor */
}
/* Section styling */
.why-us {
  padding: 40px 0;
  position: relative;
}

/* Remove background from the section */
.why-us.dark_mode_section {
  background: none; /* no background color */
}

/* Container for content */
.why-us__inner {
  display: flex;
  justify-content: space-between;
  gap: 40px;
}

/* Left section styling */
.why-us__left {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Reason box styling */
.why-us__reason {
  background-color: #fff;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
}

/* Reason image icon styling */
.why-us__reason_img {
  width: 56px;
  height: 56px;
  background: #e6f7fd;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 16px;
}

.why-us__reason_img i {
  font-size: 32px;
  color: #0077cc;
}

/* Reason title styling */
.why-us__reason_title {
  font-size: 18px;
  font-weight: 600;
  color: #333;
}

/* Right section styling */
.why-us__right {
  flex: 1;
}

/* Subtitle styling */
.suptitle {
  text-transform: uppercase;
  font-size: 14px;
  font-weight: bold;
  color: #555;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

/* Main title styling */
.why-us__subtitle {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #111;
}

/* Text content styling */
.why-us__text {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 16px;
  color: #555;
}

.why-us__text strong {
  color: #0077cc;
}

/* Button styling */
.why-us__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #4a9bff 0%, #0d6efd 100%);
  color: #fff;
  padding: 16px 32px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 700;
  box-shadow: 0 12px 26px rgba(13, 110, 253, 0.28), inset 0 1px 0 rgba(255,255,255,0.35);
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  text-decoration: none;
  border: none;
}

.why-us__btn:hover {
  background: linear-gradient(135deg, #5aa8ff 0%, #0b5ed7 100%);
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(13, 110, 253, 0.35), inset 0 1px 0 rgba(255,255,255,0.4);
  color: #fff;
}

.why-us__btn i {
  margin-left: 10px;
}

/* Responsive Design for mobile */
@media (max-width: 767.98px) {
  .why-us__inner {
    flex-direction: column;
    align-items: center;
  }

  .why-us__left {
    width: 100%;
    margin-bottom: 20px;
  }

  .why-us__right {
    width: 100%;
  }

  .why-us__reason {
    padding: 15px;
  }

  .why-us__reason_img {
    margin-right: 12px;
  }

  .why-us__reason_title {
    font-size: 16px;
  }

  .why-us__subtitle {
    font-size: 24px;
  }

  .why-us__text {
    font-size: 14px;
  }
}
/* Container for the FAQ section */
.qaa__top {
  padding: 40px 20px;
  background-color: #f9fafc;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  margin-bottom: 40px;
}

/* Header section (title and subtitle) */
.qaa__header {
  margin-bottom: 20px;
}

/* Subtitle above the main title */
.suptitle {
  text-transform: uppercase;
  font-size: 14px;
  font-weight: bold;
  color: #555;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

/* Main title for the FAQ */
.subtitle {
  font-size: 28px;
  font-weight: 700;
  color: #111;
  margin-bottom: 15px;
}

/* Description text under the title */
.qaa__description .text {
  font-size: 16px;
  line-height: 1.6;
  color: #555;
  margin-bottom: 16px;
}

/* Responsive Design for mobile screens */
@media (max-width: 768px) {
  .qaa__top {
    padding: 30px 15px;
  }

  .subtitle {
    font-size: 24px;
  }

  .qaa__description .text {
    font-size: 14px;
  }
}
/* General styles for the FAQ section */
.qaa__top {
  padding: 40px 30px;
  background-color: #ffffff;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1); /* Adding depth */
  margin-bottom: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  font-family: 'Poppins', sans-serif;
}

/* Header styling */
.qaa__header {
  margin-bottom: 30px;
}

/* Subtitle styling */
.suptitle {
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 600;
  color: #0077cc;
  letter-spacing: 1px;
  margin-bottom: 10px;
  transition: color 0.3s ease;
}

/* Main title for the FAQ */
.subtitle {
  font-size: 32px;
  font-weight: 700;
  color: #333;
  margin-bottom: 15px;
  line-height: 1.3;
  transition: color 0.3s ease;
}

.subtitle:hover {
  color: #0077cc;
}

/* Description text under the title */
.qaa__description .text {
  font-size: 18px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 20px;
  font-weight: 400;
  text-align: justify;
}

/* Add a modern font for better readability */
body {
  font-family: 'Poppins', sans-serif;
}

/* Responsive Design for smaller screens */
@media (max-width: 768px) {
  .qaa__top {
    padding: 30px 20px;
  }

  .subtitle {
    font-size: 28px;
  }

  .qaa__description .text {
    font-size: 16px;
  }

  .suptitle {
    font-size: 14px;
  }
}
/* General Styles */
section {
    background-color: #ffffff;
    padding: 4rem 2rem;
    margin-bottom: 4rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
}

/* Heading Styles */
h2 {
    font-size: 2.5rem; /* Bigger for impact */
    font-weight: 700;
    color: #000000;
    margin-bottom: 1rem;
    line-height: 1.3;
}

h3 {
    font-size: 1.375rem; /* Slightly larger */
    font-weight: 600;
    color: #222;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

/* Container */
.max-w-4xl {
    max-width: 900px;
    margin: 0 auto;
}

/* Center text */
.text-center {
    text-align: center;
}

/* Step Box Styling */
.bg-white {
    background-color: #ffffff;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    margin-bottom: 2rem;
}

.bg-white:hover {
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
    transform: translateY(-4px);
}

/* Number Styling */
.text-2xl {
    font-size: 2rem;
    font-weight: 700;
    color: #1d4ed8;
}

/* Step Icons */
img {
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
    object-fit: contain;
}

/* Description Text Styling */
.text-gray-600 {
    color: #444;
    font-size: 1rem; /* Increased for readability */
    line-height: 1.7;
}

.text-sm {
    font-size: 1rem; /* Make small text more readable */
}

/* Flex layout */
.flex {
    display: flex;
}

.items-start {
    align-items: flex-start;
}

.space-x-4 {
    margin-right: 1rem;
}

.flex-1 {
    flex-grow: 1;
}

/* Mobile Styles */
@media (max-width: 767px) {
    .space-y-6 {
        margin-bottom: 2rem;
    }

    .bg-white {
        padding: 2rem;
    }

    .text-2xl {
        font-size: 2.25rem;
    }

    h2 {
        font-size: 2.25rem;
    }

    h3 {
        font-size: 1.25rem;
    }

    .text-gray-600 {
        font-size: 1rem;
    }

    img {
        width: 48px;
        height: 48px;
    }

    .max-w-4xl {
        padding: 0 1rem;
    }
}
.image-container {
  flex: 0 0 250px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
}

.why-us__btn {
  background-color: #0d6efd;
  color: #fff;
  padding: 12px 24px;
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.why-us__btn:hover {
  background-color: #1743b3;
}

.why-us__btn i {
  font-size: 1.1rem;
}

/* RESPONSIVE: Stack image + button under text on small screens */
@media (max-width: 768px) {
  .content-wrapper {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .image-container {
    width: 100%;
    margin-top: 20px;
    align-items: center;
  }

  .why-us__btn {
    margin-top: 12px;
  }

  .text-content {
    width: 100%;
  }
}
/* Basic Styles for Container */
.container {
  margin-top: 3px;
}

/* Side box layout styling */
.side-box {
  background-color: #fff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow effect */
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.side-box:hover {
  transform: translateY(-4px); /* Slight lift effect on hover */
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2); /* Stronger shadow on hover */
}

/* Media section styling */
.media {
  display: flex;
  align-items: center;
  justify-content: center;
}

.media-left {
  margin-right: 20px;
}

.media-body h4 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.media-body h5 {
  font-size: 1rem;
  color: #555;
  font-weight: 400;
}

/* Icon size and color */
.fas, .fab {
  color: #060606;
  transition: color 0.3s ease;
}

.fas:hover, .fab:hover {
  color: #0077cc; /* Change icon color on hover */
}

.fa-3x {
  font-size: 2.5rem; /* Larger icon size */
}

/* Spacing for the columns */
.col-sm-4 {
  margin-bottom: 30px; /* Space between the profile boxes */
}

@media (max-width: 767px) {
  /* For smaller devices, make the icons and text more responsive */
  .fa-3x {
    font-size: 2rem; /* Smaller icons on mobile */
  }

  .media-body h4 {
    font-size: 1.1rem; /* Adjust the heading size */
  }

  .media-body h5 {
    font-size: 0.9rem; /* Adjust the subtitle size */
  }
}
/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #eaf4ff;
  color: #111827;
  line-height: 1.6;
}

/* Main Tutorial Box */
.tutorial-box {
  background-color: #f9fafb;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  margin: 40px auto;
}

/* Label */
.tutorial-label {
  font-size: 0.9rem;
  font-weight: 700;
  color: #2563eb;
  text-transform: uppercase;
  margin-bottom: 10px;
  letter-spacing: 0.05em;
}

/* Heading */
.tutorial-heading {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: #111827;
}

/* Description */
.tutorial-description {
  font-size: 1rem;
  color: #4b5563;
  margin-bottom: 24px;
}

.tutorial-description a {
  color: #2563eb;
  text-decoration: underline;
  font-weight: 500;
}

/* Responsive YouTube Video */
.video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 ratio */
  height: 0;
  overflow: hidden;
  border-radius: 8px;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* Responsive Tweaks */
@media (max-width: 768px) {
  .tutorial-box {
    padding: 20px;
  }

  .tutorial-heading {
    font-size: 1.25rem;
  }

  .tutorial-description {
    font-size: 0.95rem;
  }
}

.qaa__faq-list {
  padding: 20px 0;
}
.faq-item {
  margin-bottom: 25px;
}
.faq-item h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #333;
}
.faq-item p {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
}


  * { margin: 0; padding: 0; box-sizing: border-box; }
  .airastay_banner {
    position: relative;
    width: 100%;
    max-width: 860px;
    background: #f5f0e8;
    overflow: hidden;
    cursor: pointer;
    text-decoration: none;
    display: block;
    border-radius: 4px;
  }

  .airastay_banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: #1a1a2e;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.55s cubic-bezier(0.76, 0, 0.24, 1);
    z-index: 1;
  }

  .airastay_banner:hover::before { transform: scaleX(1); }

  .airastay_banner-inner {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2.8rem 3.5rem;
    gap: 2rem;
  }

  .airastay_label {
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: skyblue;
    margin-bottom: 0.6rem;
    transition: color 0.4s ease;
  }

  .airastay_headline {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.2rem, 2.4vw, 2.0rem);
    font-weight: 900;
    line-height: 1.1;
    color: #1a1a2e;
    transition: color 0.4s ease;
    max-width: 460px;
  }

  .airastay_sub {
    font-size: 0.85rem;
    color: #6b6460;
    margin-top: 0.6rem;
    font-weight: 300;
    letter-spacing: 0.02em;
    transition: color 0.4s ease;
  }

  .airastay_cta-btn {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: skyblue;
    color: #f5f0e8;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 1rem 2rem;
    border-radius: 2px;
    transition: background 0.4s ease, color 0.4s ease, gap 0.3s ease;
    white-space: nowrap;
  }

  .airastay_cta-btn .arrow {
    transition: transform 0.3s ease;
    font-size: 1rem;
  }

  .airastay_banner:hover .airastay_label { color: deepskyblue; }
  .airastay_banner:hover .airastay_headline { color: #f5f0e8; }
  .airastay_banner:hover .airastay_sub { color: rgba(245,240,232,0.55); }
  .airastay_banner:hover .airastay_cta-btn {
    background: darkblue;
    color: #fff;
    gap: 1.1rem;
  }
  .airastay_banner:hover .airastay_cta-btn .airastay_arrow { transform: translateX(4px); }

  .airastay_deco-line {
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 5px;
    background: skyblue;
    z-index: 3;
  }

  .airastay_deco-num {
    position: absolute;
    right: 3.5rem; bottom: 1.2rem;
    font-family: 'Playfair Display', serif;
    font-size: 5rem;
    font-weight: 900;
    color: rgba(26,26,46,0.07);
    line-height: 1;
    z-index: 2;
    transition: color 0.4s ease;
    pointer-events: none;
    user-select: none;
  }

  .airastay_banner:hover .airastay_deco-num { color: rgba(245,240,232,0.06); }

  @media (max-width: 600px) {
    .airastay_banner-inner { flex-direction: column; align-items: flex-start; padding: 2rem 2rem 2rem 2.5rem; }
    .airastay_cta-btn { align-self: flex-start; }
    .airastay_deco-num { display: none; }
  }

/* Platform picker (order form) */
.platform-picker { background: #ffffff; border: 1px solid #e2e8f0; border-radius: 12px; box-shadow: 0 1px 3px rgba(15, 23, 42, 0.08), 0 1px 2px rgba(15, 23, 42, 0.04); padding: 0; overflow: hidden; margin-bottom: 15px; }
.platform-picker-header { display: flex; align-items: center; justify-content: space-between; padding: 16px 20px; cursor: pointer; user-select: none; }
.platform-picker-title { font-weight: 700; font-size: 15px; color: #222; }
.platform-picker-title i { color: #0d6efd; margin-right: 8px; }
.platform-picker-chevron { color: #64748b; transition: transform .15s ease; }
.platform-picker-chevron.rotated { transform: rotate(180deg); }
.platform-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding: 0 20px 20px; transition: max-height .2s ease; }
.platform-grid.collapsed { display: none; }
.platform-card { display: flex; align-items: center; gap: 12px; border: 1px solid #e2e8f0; border-radius: 10px; padding: 12px 16px; cursor: pointer; background: #ffffff; transition: border-color .15s ease, background-color .15s ease, box-shadow .15s ease, transform .15s ease; }
.platform-card:hover { border-color: #0d6efd; background: #f2f8ff; box-shadow: 0 4px 12px rgba(13, 110, 253, 0.15); transform: translateY(-1px); }
.platform-card:hover .platform-card-icon { background: #0d6efd; box-shadow: 0 2px 8px rgba(13, 110, 253, 0.35); }
.platform-card.active { border-color: #0d6efd; background: linear-gradient(135deg, #eaf2ff 0%, #d8e9ff 100%); box-shadow: 0 2px 10px rgba(13, 110, 253, 0.18); }
.platform-card-icon { display: flex; align-items: center; justify-content: center; width: 32px; height: 32px; border-radius: 50%; background: #5b9df5; color: #fff; flex-shrink: 0; font-size: 14px; transition: background .15s ease, box-shadow .15s ease; }
.platform-card.active .platform-card-icon { background: linear-gradient(135deg, #4a9bff, #0d6efd); box-shadow: 0 2px 6px rgba(13, 110, 253, 0.35); }
.platform-card-label { font-weight: 600; font-size: 14px; color: #222; }
@media screen and (max-width: 480px) { .platform-grid { grid-template-columns: 1fr 1fr; gap: 8px; padding: 0 12px 16px; } .platform-card { padding: 10px 8px; gap: 8px; } .platform-card-label { font-size: 12.5px; } .platform-card-icon { width: 26px; height: 26px; font-size: 12px; } }


/* Compact one-line account summary (username / balance / account status) */
.summary-container {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 0;
  padding: 0;
  margin: 20px auto;
  max-width: 900px;
  width: 100%;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.08), 0 1px 2px rgba(15, 23, 42, 0.04);
  overflow: hidden;
}
.summary-box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex: 1 1 0;
  min-width: 0;
  max-width: none;
  padding: 12px 16px;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  border-right: 1px solid #eef0f3;
}
.summary-box:hover { transform: none; }
.summary-box:last-child { border-right: none; }
.summary-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, #4a9bff 0%, #0d6efd 100%);
  color: #ffffff;
  box-shadow: 0 2px 6px rgba(13, 110, 253, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}
.summary-box > div {
  min-width: 0;
  overflow: hidden;
}
.summary-box h4 {
  font-size: 14px;
  font-weight: 700;
  color: #222;
  margin: 0 0 2px;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.summary-box h4 p {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  color: #222;
  display: inline;
}
.summary-box > div > p {
  margin: 0;
  font-size: 11px;
  color: #64748b;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Always keep the three sections on one line, even on small phones */
@media (max-width: 640px) {
  .summary-container {
    margin: 12px auto;
  }
  .summary-box {
    gap: 6px;
    padding: 8px 6px;
  }
  .summary-icon {
    width: 22px;
    height: 22px;
    font-size: 10px;
  }
  .summary-box h4,
  .summary-box h4 p {
    font-size: 11px;
  }
  .summary-box > div > p {
    font-size: 8px;
  }
}

@media (max-width: 380px) {
  .summary-box {
    gap: 4px;
    padding: 6px 4px;
  }
  .summary-icon {
    width: 18px;
    height: 18px;
    font-size: 9px;
  }
  .summary-box h4,
  .summary-box h4 p {
    font-size: 9.5px;
  }
  .summary-box > div > p {
    font-size: 7px;
  }
}


/* Collapse the category dropdown's outer shell to nothing when every option
   (including Select2's own "No results found" message) is hidden by our
   platform filter above - prevents a stray empty padded bar from floating
   under the Category box when a platform has zero matching categories. */
.select2-dropdown:not(:has(#select2-orderform-category-results li:not([style*="display: none"]))) {
  padding: 0 !important;
  box-shadow: none !important;
  min-height: 0 !important;
  border: none !important;
}

/* Mobile bottom navigation bar (Services / Funds / New Order / Orders / Support) */
.mobile-bottom-nav {
  display: none;
}
@media (max-width: 767px) {
  body { padding-bottom: 78px; }
  .mobile-bottom-nav {
    display: flex;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1030;
    background: #ffffff;
    border-top: 1px solid #e2e8f0;
    box-shadow: 0 -4px 16px rgba(15, 23, 42, 0.1);
    padding: 8px 4px calc(6px + env(safe-area-inset-bottom, 0px));
    justify-content: space-around;
    align-items: flex-end;
  }
  .mobile-bottom-nav a {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    color: #64748b;
    text-decoration: none;
    font-size: 11px;
    font-weight: 600;
    flex: 1 1 0;
    min-width: 0;
  }
  .mobile-bottom-nav a i {
    font-size: 18px;
  }
  .mobile-bottom-nav a.active {
    color: #0d6efd;
  }
  .mobile-bottom-nav .nav-fab-wrap {
    flex: 1 1 0;
    display: flex;
    justify-content: center;
    position: relative;
  }
  .mobile-bottom-nav .nav-fab {
    position: absolute;
    top: -26px;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: linear-gradient(135deg, #4a9bff 0%, #0d6efd 100%);
    box-shadow: 0 6px 16px rgba(13, 110, 253, 0.45), 0 0 0 6px rgba(13, 110, 253, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 20px;
  }
  .mobile-bottom-nav .nav-fab-label {
    margin-top: 30px;
    font-size: 11px;
    font-weight: 600;
    color: #0d6efd;
    white-space: nowrap;
  }
}


/* Followspanel AI Chat Widget */
#fp-chat-bubble {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #4a9bff 0%, #0d6efd 100%);
  box-shadow: 0 12px 26px rgba(13, 110, 253, 0.35), inset 0 1px 0 rgba(255,255,255,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 9998;
  border: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
#fp-chat-bubble:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(13, 110, 253, 0.45), inset 0 1px 0 rgba(255,255,255,0.4);
}
#fp-chat-bubble i {
  color: #fff;
  font-size: 22px;
  position: absolute;
}
#fp-chat-bubble .fp-chat-close-icon {
  display: none;
}
#fp-chat-bubble.open .fp-chat-open-icon {
  display: none;
}
#fp-chat-bubble.open .fp-chat-close-icon {
  display: inline-block;
}

@media (max-width: 768px) {
  body.has-bottom-nav #fp-chat-bubble {
    bottom: 84px;
  }
}

#fp-chat-window {
  position: fixed;
  bottom: 96px;
  right: 24px;
  width: 360px;
  max-width: calc(100vw - 32px);
  height: 500px;
  max-height: calc(100vh - 140px);
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(13, 110, 253, 0.25);
  display: none;
  flex-direction: column;
  overflow: hidden;
  z-index: 9999;
  border: 1px solid #dcebff;
}
#fp-chat-window.open {
  display: flex;
}
@media (max-width: 768px) {
  body.has-bottom-nav #fp-chat-window {
    bottom: 156px;
  }
}

#fp-chat-header {
  background: linear-gradient(135deg, #4a9bff 0%, #0d6efd 100%);
  color: #fff;
  padding: 16px 18px;
  font-weight: 700;
  font-size: 15px;
  flex-shrink: 0;
}
#fp-chat-header .fp-chat-sub {
  display: block;
  font-weight: 400;
  font-size: 12px;
  opacity: 0.85;
  margin-top: 2px;
}

#fp-chat-messages {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
  background: #f5faff;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.fp-msg {
  max-width: 82%;
  padding: 10px 14px;
  border-radius: 14px;
  font-size: 13.5px;
  line-height: 1.4;
  white-space: pre-wrap;
  word-wrap: break-word;
}
.fp-msg-bot {
  align-self: flex-start;
  background: #fff;
  border: 1px solid #dcebff;
  color: #222;
  border-bottom-left-radius: 4px;
}
.fp-msg-user {
  align-self: flex-end;
  background: linear-gradient(135deg, #4a9bff 0%, #0d6efd 100%);
  color: #fff;
  border-bottom-right-radius: 4px;
}
.fp-msg-typing {
  align-self: flex-start;
  background: #fff;
  border: 1px solid #dcebff;
  border-bottom-left-radius: 4px;
  padding: 12px 16px;
}
.fp-typing-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #9db8d8;
  margin-right: 3px;
  animation: fp-typing-blink 1.2s infinite;
}
.fp-typing-dot:nth-child(2) {
  animation-delay: 0.2s;
}
.fp-typing-dot:nth-child(3) {
  animation-delay: 0.4s;
  margin-right: 0;
}
@keyframes fp-typing-blink {
  0%, 80%, 100% { opacity: 0.25; }
  40% { opacity: 1; }
}

#fp-chat-input-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px;
  border-top: 1px solid #eaf4ff;
  background: #fff;
  flex-shrink: 0;
}
#fp-chat-input {
  flex: 1;
  border: 1px solid #dcebff;
  border-radius: 20px;
  padding: 10px 16px;
  font-size: 13.5px;
  outline: none;
}
#fp-chat-input:focus {
  border-color: #4a9bff;
}
#fp-chat-send {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: none;
  background: linear-gradient(135deg, #4a9bff 0%, #0d6efd 100%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
}
#fp-chat-send:disabled {
  opacity: 0.5;
  cursor: default;
}


/* Followspanel AI Chat Widget - action buttons (Order this / Transfer to agent) */
.fp-action-btn {
  display: inline-block;
  align-self: flex-start;
  margin-top: -2px;
  padding: 8px 14px;
  border-radius: 16px;
  background: #fff;
  border: 1.5px solid #0d6efd;
  color: #0d6efd;
  font-size: 12.5px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}
.fp-action-btn:hover {
  background: #0d6efd;
  color: #fff;
  text-decoration: none;
}


/* ==========================================================
   Followspanel — top nav restyle (rounded, card-style items)
   ========================================================== */
.navbar.navbar-default {
  background: #ffffff;
  border: none;
  border-radius: 0;
  box-shadow: 0 2px 10px rgba(15, 23, 42, 0.06);
  margin-bottom: 20px;
}
.navbar .navbar-header .navbar-toggle {
  border: 1.5px solid #dce6f5;
  border-radius: 10px;
  margin-top: 12px;
  margin-bottom: 12px;
  padding: 9px 10px;
  background: #f7faff;
  transition: background 0.15s ease, border-color 0.15s ease;
}
.navbar .navbar-header .navbar-toggle:hover,
.navbar .navbar-header .navbar-toggle:focus {
  background: #eaf2ff;
  border-color: #0d6efd;
}
.navbar .navbar-toggle .icon-bar {
  background-color: #0d6efd;
}
.navbar-brand {
  font-weight: 700;
}
#navbar.navbar-collapse {
  border-top: 1px solid #eef2f7;
  margin-top: 4px;
  padding: 10px 6px 14px;
  box-shadow: none;
}
@media (min-width: 768px) {
  #navbar.navbar-collapse {
    max-height: 80vh;
    overflow-y: auto;
  }
}
.navbar-nav {
  margin: 0;
}
.navbar-nav > li {
  margin: 3px 4px;
}
.navbar-nav > li > a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 14px;
  border-radius: 12px;
  color: #3a4a63;
  font-size: 14.5px;
  font-weight: 500;
  line-height: 1.3;
  transition: background 0.15s ease, color 0.15s ease, transform 0.15s ease;
}
.navbar-nav > li > a:hover,
.navbar-nav > li > a:focus {
  background: #f0f6ff;
  color: #0d6efd;
  transform: translateX(2px);
}
.navbar-nav > li.active > a,
.navbar-nav > li.active > a:hover,
.navbar-nav > li.active > a:focus {
  background: linear-gradient(135deg, #eaf2ff 0%, #d8e9ff 100%);
  color: #0d6efd;
  font-weight: 700;
  box-shadow: inset 0 0 0 1px rgba(13, 110, 253, 0.12);
}
.navbar-nav > li > a .navbar-icon {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #eef3fb;
  color: #5b7ba8;
  font-size: 13px;
  transition: background 0.15s ease, color 0.15s ease;
}
.navbar-nav > li.active > a .navbar-icon {
  background: linear-gradient(135deg, #4a9bff, #0d6efd);
  color: #fff;
}
.navbar-nav > li > a:hover .navbar-icon {
  background: #dce9ff;
  color: #0d6efd;
}
.navbar-nav > li > a .badge {
  margin-left: auto;
  background: #0d6efd;
  color: #fff;
  border-radius: 999px;
  font-weight: 700;
  font-size: 11px;
  padding: 3px 8px;
}
.navbar-nav.navbar-right-block {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px dashed #e5ecf6;
}
.navbar-nav .dropdown-menu {
  border-radius: 12px;
  border: 1px solid #e9eef5;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.12);
  padding: 6px;
  margin-top: 6px;
}
.navbar-nav .dropdown-menu > li > a {
  border-radius: 8px;
  padding: 9px 12px;
  font-size: 13.5px;
  color: #3a4a63;
}
.navbar-nav .dropdown-menu > li > a:hover,
.navbar-nav .dropdown-menu > li > a:focus {
  background: #f0f6ff;
  color: #0d6efd;
}
.navbar-nav .dropdown-menu > li.active > a {
  background: linear-gradient(135deg, #eaf2ff 0%, #d8e9ff 100%);
  color: #0d6efd;
  font-weight: 700;
}
.dropdown-currencies > .dropdown-toggle {
  cursor: pointer;
}
.dropdown-currencies > .dropdown-toggle .caret {
  margin-left: 4px;
  border-top-color: #5b7ba8;
}

/* ==========================================================
   Followspanel — site footer
   ========================================================== */
.fp-footer {
  margin-top: 48px;
  background: #f8fafd;
  border-top: 1px solid #e6edf7;
}
.fp-footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 24px 24px;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 28px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.fp-footer-brand .fp-footer-logo {
  display: inline-block;
  font-size: 19px;
  font-weight: 800;
  color: #16233a;
  text-decoration: none;
  margin-bottom: 10px;
}
.fp-footer-brand .fp-footer-logo img {
  max-height: 32px;
}
.fp-footer-tagline {
  color: #64748b;
  font-size: 13px;
  line-height: 1.55;
  max-width: 320px;
  margin: 0 0 16px;
}
.fp-footer-socials {
  display: flex;
  gap: 10px;
}
.fp-footer-socials a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #eef3fb;
  color: #5b7ba8;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  text-decoration: none;
  transition: background 0.15s ease, color 0.15s ease, transform 0.15s ease;
}
.fp-footer-socials a:hover {
  background: linear-gradient(135deg, #4a9bff, #0d6efd);
  color: #fff;
  transform: translateY(-2px);
  text-decoration: none;
}
.fp-footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #16233a;
  margin: 0 0 14px;
}
.fp-footer-col a {
  display: block;
  color: #5b6b81;
  font-size: 13.5px;
  line-height: 2.15;
  text-decoration: none;
  padding: 3px 10px;
  margin: 0 -10px;
  border-radius: 8px;
  transition: color 0.15s ease, background 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
}
.fp-footer-col a:hover {
  color: #0d6efd;
  text-decoration: none;
  background: rgba(13, 110, 253, 0.07);
  transform: translateY(-1px);
}
.fp-footer-col a:focus,
.fp-footer-col a:focus-visible {
  outline: none;
  color: #0d6efd;
  background: linear-gradient(135deg, #eaf2ff 0%, #d8e9ff 100%);
  box-shadow: 0 4px 14px rgba(13, 110, 253, 0.25), inset 0 0 0 1px rgba(13, 110, 253, 0.15);
  transform: translateY(-1px);
}
.fp-footer-bottom {
  border-top: 1px solid #e6edf7;
  padding: 16px 24px;
  text-align: center;
  color: #8494a8;
  font-size: 12.5px;
}
@media (max-width: 900px) {
  .fp-footer-inner {
    grid-template-columns: 1fr 1fr;
  }
  .fp-footer-brand {
    grid-column: 1 / -1;
  }
}
@media (max-width: 520px) {
  .fp-footer-inner {
    grid-template-columns: 1fr;
    padding: 32px 20px 20px;
  }
  .fp-footer-socials {
    justify-content: flex-start;
  }
}

/* Orders page toolbar: status-tab pills + the field-selector search
   widget as two independent flex items, so the search widget is never
   split apart by the tabs competing for the same floated row — it either
   fits beside the tabs or wraps below them as one intact unit. */
.orders-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 15px;
}
.orders-toolbar .nav-pills {
  margin-bottom: 0;
}
.order-search-group {
  display: flex;
  flex-wrap: nowrap;
  align-items: stretch;
  flex: 0 1 380px;
  min-width: 270px;
}
.order-search-group select.form-control {
  flex: 0 0 128px;
  width: 128px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.order-search-group input.form-control {
  flex: 1 1 auto;
  min-width: 0;
  border-left: 0;
  border-radius: 0;
}
.order-search-group .input-group-btn {
  display: flex;
}
.order-search-group .input-group-btn .btn {
  flex: 1;
}
.order-search-group .input-group-btn {
  display: flex;
}
.order-search-group .input-group-btn .btn {
  flex: 1;
}

/* Bigger, richer search-icon buttons (Services + Orders pages) — plain
   btn-default was reading as too small/plain next to the rest of the UI. */
.search-icon-btn {
  padding: 6px 16px !important;
  font-size: 15px;
  background: linear-gradient(135deg, #0d6efd 0%, #0a58ca 100%) !important;
  border-color: #0a58ca !important;
  color: #fff !important;
  box-shadow: 0 2px 8px rgba(13, 110, 253, 0.25);
}
.search-icon-btn:hover,
.search-icon-btn:focus {
  background: linear-gradient(135deg, #0a58ca 0%, #084298 100%) !important;
  color: #fff !important;
}

/* Dashboard nav (.fp-dash-nav only — the logged-out public nav is
   untouched): a real off-canvas side drawer — fixed width, slides in from
   the left over the page (not an inline block that pushes content down),
   with a dimmed backdrop (rendered by FpDashboardNavbar when open)
   behind it. Applies at every viewport width, not just <768px — stock
   Bootstrap otherwise forces the collapse panel permanently visible and
   hides the toggle button ≥768px, both overridden here too. */
.fp-dash-nav .navbar-header .navbar-toggle {
  display: block !important;
}
.fp-dash-nav #navbar.navbar-collapse {
  display: block !important;
  position: fixed;
  top: 78px;
  left: 0;
  height: calc(100vh - 78px) !important;
  width: 300px;
  max-width: 85vw;
  max-height: none !important;
  margin: 0;
  padding: 16px 16px 24px;
  background: transparent;
  border-top: none;
  box-shadow: none;
  overflow-y: auto !important;
  overflow-x: hidden !important;
  z-index: 1050;
  transform: translateX(-100%) translateZ(0);
  transition: transform 0.25s ease;
  will-change: transform;
}
.fp-dash-nav #navbar.navbar-collapse.in {
  transform: translateX(0) translateZ(0);
}
/* Bootstrap's own `.navbar-right { float: right !important; margin-right:
   -15px; }` (bootstrap.css, ≥768px) was built for an inline full-width
   header, not this fixed 300px drawer — the float let the account/balance
   list escape the drawer's bounds as a stray white box next to it. Un-float
   it so it stacks normally underneath the main nav list instead. */
.fp-dash-nav .navbar-nav.navbar-right-block {
  float: none !important;
  margin-right: 0 !important;
}
/* Slide the menu items up into place (fading in) once the drawer has
   started sliding in, instead of them just appearing instantly. */
.fp-dash-nav #navbar.navbar-collapse .navbar-nav {
  opacity: 0;
}
.fp-dash-nav #navbar.navbar-collapse.in .navbar-nav {
  animation: fp-dash-nav-items-in 0.3s ease 0.08s forwards;
}
@keyframes fp-dash-nav-items-in {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.fp-dash-nav-backdrop {
  position: fixed;
  inset: 0;
  background: transparent;
  z-index: 1040;
  transform: translateZ(0);
  will-change: transform;
}
/* Push the page content aside as the drawer slides in, instead of just
   floating the drawer over it. */
.fp-dash-nav {
  position: fixed !important;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1030;
  border: none !important;
}
.fp-dash-page-body {
  padding-top: 78px;
  margin-left: 0;
  transition: margin-left 0.25s ease;
}
body.fp-dash-nav-open .fp-dash-page-body {
  margin-left: min(300px, 85vw);
}

/* The backdrop (z-index 1040) and drawer (z-index 1050) are both
   position:fixed, so they paint above the plain, unpositioned
   .navbar-header regardless of DOM order — covering the hamburger button
   and making it unclickable once the drawer is open. Lift the header (and
   the button itself) above both, and morph its 3 bars into an "X" while
   open (".navbar-toggle" without the Bootstrap-applied ".collapsed"
   class = open) so it's obviously still there and now reads as "close". */
.fp-dash-nav .navbar-header {
  position: relative;
  z-index: 1060;
}
.fp-dash-nav .navbar-toggle {
  position: relative;
  z-index: 1060;
}
.fp-dash-nav .navbar-toggle .icon-bar {
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.fp-dash-nav .navbar-toggle:not(.collapsed) .icon-bar:nth-child(2) {
  transform: translateY(6px) rotate(45deg);
}
.fp-dash-nav .navbar-toggle:not(.collapsed) .icon-bar:nth-child(3) {
  opacity: 0;
}
.fp-dash-nav .navbar-toggle:not(.collapsed) .icon-bar:nth-child(4) {
  transform: translateY(-6px) rotate(-45deg);
}

/* Dashboard nav polish: give each menu item a card-like tile instead of
   plain floating text, tidy the wrap into an even grid on wider screens,
   and add a richer hover/active lift — same blue/white theme, just more
   premium. Scoped to .fp-dash-nav so the logged-out public nav (which
   shares the base .navbar-nav rules above) is untouched. */
.fp-dash-nav .navbar-nav.navbar-left-block {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  float: none !important;
}
.fp-dash-nav .navbar-nav.navbar-left-block > li {
  margin: 0;
}
.fp-dash-nav .navbar-nav.navbar-left-block {
  display: flex;
  flex-direction: column;
}
.fp-dash-nav .navbar-nav > li > a {
  background: #f8fafc;
  border: 1px solid #eef2f7;
}
.fp-dash-nav .navbar-nav > li > a:hover,
.fp-dash-nav .navbar-nav > li > a:focus {
  border-color: #bfdaff;
  box-shadow: 0 6px 16px rgba(13, 110, 253, 0.14);
  transform: translateY(-2px);
}
.fp-dash-nav .navbar-nav > li.active > a,
.fp-dash-nav .navbar-nav > li.active > a:hover,
.fp-dash-nav .navbar-nav > li.active > a:focus {
  border-color: #bfdaff;
  box-shadow: 0 6px 16px rgba(13, 110, 253, 0.2), inset 0 0 0 1px rgba(13, 110, 253, 0.12);
}
.fp-dash-nav .navbar-nav > li > a .navbar-icon {
  width: 34px;
  height: 34px;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.08);
}

/* ==========================================================
   Followspanel — public nav: keep the 7 items on one straight
   line at desktop widths instead of wrapping into multiple rows.
   Scoped to .fp-public-nav only (dashboard nav uses .fp-dash-nav
   and is untouched).
   ========================================================== */
@media (min-width: 768px) {
  .fp-public-nav #navbar.navbar-collapse {
    overflow-x: auto;
  }
  .fp-public-nav .navbar-nav {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
  }
  .fp-public-nav .navbar-nav > li {
    float: none;
    margin: 0 2px;
  }
  .fp-public-nav .navbar-nav > li > a {
    padding: 8px 10px;
    gap: 6px;
    font-size: 13px;
    white-space: nowrap;
  }
  .fp-public-nav .navbar-nav > li > a .navbar-icon {
    width: 24px;
    height: 24px;
    font-size: 11px;
  }
}


/* fp-account-refresh-v1: shared internal account design */
body.has-bottom-nav{background:#f3f7fc!important;color:#102442!important}
body.has-bottom-nav .fp-dash-page-body{min-height:100vh!important;background:radial-gradient(circle at 8% 0,rgba(23,107,255,.08),transparent 28%),#f3f7fc!important;padding-top:76px!important}
body.has-bottom-nav .fp-dash-page-body>.container,body.has-bottom-nav .fp-dash-page-body>.container-fluid{width:min(1180px,calc(100% - 36px))!important;margin-inline:auto!important;padding:42px 0 105px!important}
body.has-bottom-nav .fp-dash-page-body h1,body.has-bottom-nav .fp-dash-page-body h2,body.has-bottom-nav .fp-dash-page-body h3,body.has-bottom-nav .fp-dash-page-body h4{color:#102442;font-weight:800;letter-spacing:-.025em}
body.has-bottom-nav .fp-dash-page-body h1{font-size:38px;line-height:1.12;margin-bottom:24px}
body.has-bottom-nav .fp-dash-page-body .well,body.has-bottom-nav .fp-dash-page-body .panel,body.has-bottom-nav .fp-dash-page-body .card{border:1px solid #dbe7f3!important;border-radius:26px!important;background:#fff!important;box-shadow:0 18px 50px rgba(22,52,91,.08)!important}
body.has-bottom-nav .fp-dash-page-body .well{padding:28px!important}
body.has-bottom-nav .fp-dash-page-body .panel-heading,body.has-bottom-nav .fp-dash-page-body .card-header{padding:20px 24px!important;border:0!important;border-bottom:1px solid #e8eef5!important;border-radius:26px 26px 0 0!important;background:transparent!important;color:#102442!important;font-size:16px!important;font-weight:800!important}
body.has-bottom-nav .fp-dash-page-body .panel-body,body.has-bottom-nav .fp-dash-page-body .card-body{padding:24px!important}
body.has-bottom-nav .fp-dash-page-body .form-group{margin-bottom:18px!important}
body.has-bottom-nav .fp-dash-page-body .control-label,body.has-bottom-nav .fp-dash-page-body label{margin-bottom:8px!important;color:#183754!important;font-size:12px!important;font-weight:800!important}
body.has-bottom-nav .fp-dash-page-body .form-control{height:52px!important;padding:12px 16px!important;border:1px solid #d6e2ee!important;border-radius:15px!important;background:#f8fbff!important;color:#102442!important;box-shadow:none!important;transition:border-color .18s ease,box-shadow .18s ease,background .18s ease!important}
body.has-bottom-nav .fp-dash-page-body textarea.form-control{height:auto!important;min-height:120px!important;resize:vertical!important}
body.has-bottom-nav .fp-dash-page-body .form-control:focus{border-color:#176bff!important;background:#fff!important;box-shadow:0 0 0 4px rgba(23,107,255,.1)!important}
body.has-bottom-nav .fp-dash-page-body .btn{min-height:48px!important;padding:12px 20px!important;border-radius:15px!important;font-weight:800!important;box-shadow:none!important;transition:transform .16s ease,opacity .16s ease,background-color .16s ease!important}
body.has-bottom-nav .fp-dash-page-body .btn-primary{border-color:#176bff!important;background:#176bff!important;color:#fff!important}
body.has-bottom-nav .fp-dash-page-body .btn-primary:hover{border-color:#0e5de6!important;background:#0e5de6!important;transform:translateY(-1px)!important}
body.has-bottom-nav .fp-dash-page-body .btn:active{transform:scale(.98)!important}
body.has-bottom-nav .fp-dash-page-body .alert{padding:16px 18px!important;border:0!important;border-radius:16px!important}
body.has-bottom-nav .fp-dash-page-body .table-responsive{overflow:auto!important;border:1px solid #e0e9f2!important;border-radius:20px!important;background:#fff!important;box-shadow:0 12px 34px rgba(22,52,91,.06)!important}
body.has-bottom-nav .fp-dash-page-body .table{margin:0!important;background:#fff!important}
body.has-bottom-nav .fp-dash-page-body .table>thead>tr>th{padding:15px 14px!important;border-bottom:1px solid #dbe7f3!important;background:#f6f9fd!important;color:#536b84!important;font-size:10px!important;font-weight:900!important;letter-spacing:.06em!important;text-transform:uppercase!important;white-space:nowrap!important}
body.has-bottom-nav .fp-dash-page-body .table>tbody>tr>td{padding:15px 14px!important;border-top:1px solid #edf2f7!important;color:#334e68!important;vertical-align:middle!important}
body.has-bottom-nav .fp-dash-page-body .table-striped>tbody>tr:nth-of-type(odd){background:#fbfdff!important}
body.has-bottom-nav .fp-dash-page-body .pagination>li>a,body.has-bottom-nav .fp-dash-page-body .pagination>li>span{margin:2px!important;border:1px solid #dbe7f3!important;border-radius:10px!important;color:#176bff!important;background:#fff!important}
body.has-bottom-nav .fp-dash-page-body .pagination>.active>a,body.has-bottom-nav .fp-dash-page-body .pagination>.active>span{border-color:#176bff!important;background:#176bff!important;color:#fff!important}
body.has-bottom-nav .fp-dash-nav{position:fixed!important;z-index:1035!important;top:0!important;right:0!important;left:0!important;min-height:72px!important;margin:0!important;border:0!important;border-bottom:1px solid #e2eaf3!important;background:rgba(255,255,255,.96)!important;box-shadow:0 8px 28px rgba(22,52,91,.07)!important;backdrop-filter:blur(18px)!important;-webkit-backdrop-filter:blur(18px)!important}
body.has-bottom-nav .fp-dash-nav>.container-fluid{width:min(1280px,calc(100% - 30px))!important;margin:auto!important}
body.has-bottom-nav .fp-dash-nav .navbar-brand{height:72px!important;display:flex!important;align-items:center!important}
body.has-bottom-nav .fp-dash-nav .navbar-nav>li>a,body.has-bottom-nav .fp-dash-nav .navbar-nav>li>button{height:72px!important;display:flex!important;align-items:center!important;padding:0 11px!important;color:#5d7188!important;font-size:12px!important;font-weight:800!important;background:transparent!important}
body.has-bottom-nav .fp-dash-nav .navbar-nav>li>a.active{color:#176bff!important}
body.has-bottom-nav .fp-footer{margin-top:0!important;border-top:0!important;background:linear-gradient(145deg,#0b203b,#123865)!important;color:#9eb3ca!important}
body.has-bottom-nav .fp-footer a,body.has-bottom-nav .fp-footer h4,body.has-bottom-nav .fp-footer-logo{color:#fff!important}
@media(min-width:768px){body.has-bottom-nav .fp-dash-nav .navbar-collapse{display:flex!important;align-items:center!important}body.has-bottom-nav .fp-dash-nav .navbar-left-block{display:flex!important;min-width:0!important;flex:1!important;overflow-x:auto!important;overflow-y:hidden!important;white-space:nowrap!important;scrollbar-width:none!important}body.has-bottom-nav .fp-dash-nav .navbar-left-block::-webkit-scrollbar{display:none!important}body.has-bottom-nav .fp-dash-nav .navbar-left-block>li{float:none!important;flex:0 0 auto!important}body.has-bottom-nav .fp-dash-nav .navbar-right-block{display:flex!important;flex:0 0 auto!important;margin-left:8px!important}}
@media(max-width:767px){
body.has-bottom-nav .fp-dash-page-body{padding-top:64px!important}
body.has-bottom-nav .fp-dash-page-body>.container,body.has-bottom-nav .fp-dash-page-body>.container-fluid{width:calc(100% - 24px)!important;padding:26px 0 112px!important}
body.has-bottom-nav .fp-dash-page-body h1{font-size:30px!important}
body.has-bottom-nav .fp-dash-page-body .well,body.has-bottom-nav .fp-dash-page-body .panel,body.has-bottom-nav .fp-dash-page-body .card{border-radius:22px!important}
body.has-bottom-nav .fp-dash-page-body .well{padding:20px!important}
body.has-bottom-nav .fp-dash-page-body .panel-body,body.has-bottom-nav .fp-dash-page-body .card-body{padding:19px!important}
body.has-bottom-nav .fp-dash-nav{min-height:64px!important}
body.has-bottom-nav .fp-dash-nav .navbar-header{height:64px!important}
body.has-bottom-nav .fp-dash-nav .navbar-brand{height:64px!important}
body.has-bottom-nav .fp-dash-nav .navbar-collapse.in,body.has-bottom-nav .fp-dash-nav .navbar-collapse.show{height:calc(100dvh - 64px)!important;max-height:calc(100dvh - 64px)!important;overflow-x:hidden!important;overflow-y:auto!important;overscroll-behavior:contain!important;-webkit-overflow-scrolling:touch!important;padding-bottom:calc(104px + env(safe-area-inset-bottom))!important;scrollbar-width:thin!important}
body.has-bottom-nav .mobile-bottom-nav{position:fixed!important;z-index:1100!important;display:grid!important;grid-template-columns:repeat(5,minmax(0,1fr))!important;left:0!important;right:0!important;bottom:0!important;width:100%!important;height:78px!important;margin:0!important;padding:7px 8px max(7px,env(safe-area-inset-bottom))!important;border:0!important;border-top:1px solid rgba(158,184,214,.22)!important;border-radius:0!important;background:linear-gradient(135deg,rgba(8,27,50,.98),rgba(15,48,83,.98))!important;box-shadow:0 -12px 34px rgba(4,21,40,.22)!important;backdrop-filter:blur(20px) saturate(145%)!important;-webkit-backdrop-filter:blur(20px) saturate(145%)!important}
body.has-bottom-nav .mobile-bottom-nav>a,body.has-bottom-nav .mobile-bottom-nav .nav-fab-wrap{position:relative!important;display:flex!important;min-width:0!important;height:100%!important;flex-direction:column!important;align-items:center!important;justify-content:center!important;gap:6px!important;padding:4px 2px!important;border:0!important;border-radius:0!important;color:#9fb3c9!important;background:transparent!important;box-shadow:none!important;text-decoration:none!important;transition:color .18s ease,opacity .18s ease,transform .18s ease!important;-webkit-tap-highlight-color:transparent!important}
body.has-bottom-nav .mobile-bottom-nav>a i,body.has-bottom-nav .mobile-bottom-nav .nav-fab i{display:block!important;font-size:19px!important;line-height:1!important;color:inherit!important;text-shadow:none!important;transition:transform .18s ease,color .18s ease!important}
body.has-bottom-nav .mobile-bottom-nav>a span,body.has-bottom-nav .mobile-bottom-nav .nav-fab-label{position:static!important;display:block!important;margin:0!important;color:inherit!important;font-size:9px!important;font-weight:800!important;line-height:1!important;white-space:nowrap!important}
body.has-bottom-nav .mobile-bottom-nav .nav-fab{position:static!important;display:flex!important;width:auto!important;height:auto!important;align-items:center!important;justify-content:center!important;margin:0!important;padding:0!important;border:0!important;border-radius:0!important;color:inherit!important;background:transparent!important;box-shadow:none!important;transform:none!important}
body.has-bottom-nav .mobile-bottom-nav>a.active,body.has-bottom-nav .mobile-bottom-nav .nav-fab-wrap{color:#fff!important;background:transparent!important}
body.has-bottom-nav .mobile-bottom-nav>a.active i,body.has-bottom-nav .mobile-bottom-nav .nav-fab-wrap i{color:#69a9ff!important;transform:translateY(-2px)!important;text-shadow:none!important}
body.has-bottom-nav .mobile-bottom-nav>a:active,body.has-bottom-nav .mobile-bottom-nav .nav-fab-wrap:active{opacity:.72!important;transform:scale(.96)!important;background:transparent!important}
}


/* fp-mobile-no-drift-v1 */
@media(max-width:767px){
html,body,#root{max-width:100%!important;overflow-x:hidden!important}
body.has-bottom-nav .fp-dash-page-body,body.has-bottom-nav .fp-dash-page-body *{box-sizing:border-box!important}
body.has-bottom-nav .fp-dash-page-body{width:100%!important;max-width:100%!important;overflow-x:hidden!important}
body.has-bottom-nav .fp-dash-page-body>.container,body.has-bottom-nav .fp-dash-page-body>.container-fluid{display:block!important;width:calc(100% - 24px)!important;max-width:calc(100% - 24px)!important;margin-right:auto!important;margin-left:auto!important;padding-right:0!important;padding-left:0!important;overflow:visible!important}
body.has-bottom-nav .fp-dash-page-body .row{max-width:100%!important;margin-right:0!important;margin-left:0!important}
body.has-bottom-nav .fp-dash-page-body [class*="col-"]{max-width:100%!important;padding-right:0!important;padding-left:0!important}
body.has-bottom-nav .fp-dash-page-body .well,body.has-bottom-nav .fp-dash-page-body .panel,body.has-bottom-nav .fp-dash-page-body .card,body.has-bottom-nav .fp-dash-page-body form{width:100%!important;max-width:100%!important;margin-right:0!important;margin-left:0!important}
body.has-bottom-nav .fp-dash-page-body .form-inline,body.has-bottom-nav .fp-dash-page-body .input-group{display:flex!important;width:100%!important;max-width:100%!important;flex-wrap:wrap!important;gap:8px!important}
body.has-bottom-nav .fp-dash-page-body .form-inline .form-group{width:100%!important;max-width:100%!important;margin-right:0!important}
body.has-bottom-nav .fp-dash-page-body .form-inline .form-control,body.has-bottom-nav .fp-dash-page-body .input-group .form-control{min-width:0!important;flex:1 1 180px!important}
body.has-bottom-nav .fp-dash-page-body .nav-tabs,body.has-bottom-nav .fp-dash-page-body .nav-pills{display:flex!important;width:100%!important;max-width:100%!important;flex-wrap:wrap!important;gap:6px!important;border:0!important}
body.has-bottom-nav .fp-dash-page-body .nav-tabs>li,body.has-bottom-nav .fp-dash-page-body .nav-pills>li{float:none!important;margin:0!important}
body.has-bottom-nav .fp-dash-page-body .table-responsive{width:100%!important;max-width:100%!important;margin:0!important;padding:0!important;overflow:visible!important;border:0!important;border-radius:0!important;background:transparent!important;box-shadow:none!important}
body.has-bottom-nav .fp-dash-page-body .table{display:block!important;width:100%!important;max-width:100%!important;min-width:0!important;border:0!important;background:transparent!important;table-layout:auto!important}
body.has-bottom-nav .fp-dash-page-body .table>thead{display:none!important}
body.has-bottom-nav .fp-dash-page-body .table>tbody{display:grid!important;width:100%!important;max-width:100%!important;gap:12px!important}
body.has-bottom-nav .fp-dash-page-body .table>tbody>tr{display:block!important;width:100%!important;max-width:100%!important;margin:0!important;overflow:hidden!important;border:1px solid #dce7f2!important;border-radius:18px!important;background:#fff!important;box-shadow:0 8px 24px rgba(22,52,91,.06)!important}
body.has-bottom-nav .fp-dash-page-body .table>tbody>tr>td{display:grid!important;width:100%!important;max-width:100%!important;grid-template-columns:minmax(82px,30%) minmax(0,1fr)!important;align-items:start!important;gap:10px!important;padding:11px 14px!important;border:0!important;border-bottom:1px solid #edf2f7!important;background:transparent!important;color:#334e68!important;font-size:12px!important;line-height:1.45!important;text-align:left!important;white-space:normal!important;overflow-wrap:anywhere!important;word-break:break-word!important}
body.has-bottom-nav .fp-dash-page-body .table>tbody>tr>td:last-child{border-bottom:0!important}
body.has-bottom-nav .fp-dash-page-body .table>tbody>tr>td::before{content:attr(data-label)!important;color:#73879c!important;font-size:9px!important;font-weight:900!important;letter-spacing:.055em!important;text-transform:uppercase!important}
body.has-bottom-nav .fp-dash-page-body .table>tbody>tr>td:not([data-label]){grid-template-columns:1fr!important}
body.has-bottom-nav .fp-dash-page-body .table>tbody>tr>td:not([data-label])::before{display:none!important}
body.has-bottom-nav .fp-dash-page-body .table>tbody>tr>td[data-mobile-full="true"]{display:block!important;padding:13px 14px!important;background:#f4f8fd!important;color:#173956!important;font-weight:850!important}
body.has-bottom-nav .fp-dash-page-body .table>tbody>tr>td[data-mobile-full="true"]::before{display:none!important}
body.has-bottom-nav .fp-footer,body.has-bottom-nav .fp-footer-inner,body.has-bottom-nav .fp-footer-bottom{width:100%!important;max-width:100%!important;overflow:hidden!important}
}


/* fp-mobile-nav-no-focus-ring */
body.has-bottom-nav .mobile-bottom-nav a,body.has-bottom-nav .mobile-bottom-nav a:focus,body.has-bottom-nav .mobile-bottom-nav a:focus-visible,body.has-bottom-nav .mobile-bottom-nav .nav-fab,body.has-bottom-nav .mobile-bottom-nav .nav-fab:focus,body.has-bottom-nav .mobile-bottom-nav .nav-fab:focus-visible,body.has-bottom-nav .mobile-bottom-nav .nav-fab-wrap,body.has-bottom-nav .mobile-bottom-nav .nav-fab-wrap:focus,body.has-bottom-nav .mobile-bottom-nav .nav-fab-wrap:focus-visible{outline:0!important;outline-offset:0!important;border-color:transparent!important;box-shadow:none!important;-webkit-tap-highlight-color:transparent!important}

/* Reseller network */
.fp-reseller-page{max-width:1180px;margin:0 auto;padding:34px 24px 110px;color:#10284c}.fp-reseller-hero{position:relative;overflow:hidden;padding:44px;border-radius:30px;background:linear-gradient(135deg,#0b2a55 0%,#1267df 65%,#37a3ff 100%);color:#fff;box-shadow:0 22px 60px rgba(16,62,122,.18)}.fp-reseller-hero:after{content:"";position:absolute;width:300px;height:300px;border-radius:50%;right:-110px;top:-140px;background:rgba(255,255,255,.12)}.fp-reseller-kicker{display:block;font-size:11px;font-weight:900;letter-spacing:.16em;color:#4b7bab;margin-bottom:8px}.fp-reseller-hero .fp-reseller-kicker{color:#b9dcff}.fp-reseller-hero h1{max-width:720px;margin:0 0 12px;font-size:clamp(32px,5vw,54px);line-height:1.03;color:#fff}.fp-reseller-hero p{max-width:760px;margin:0;font-size:16px;line-height:1.75;color:rgba(255,255,255,.84)}.fp-reseller-flow{display:flex;align-items:center;gap:12px;flex-wrap:wrap;margin-top:28px}.fp-reseller-flow span{padding:10px 14px;border:1px solid rgba(255,255,255,.23);border-radius:999px;background:rgba(255,255,255,.1);font-weight:800}.fp-reseller-flow i{font-size:10px;color:#b9dcff}.fp-reseller-page>section+section{margin-top:34px}.fp-reseller-section-title{display:flex;align-items:end;justify-content:space-between;gap:16px;margin:0 4px 14px}.fp-reseller-section-title h2,.fp-reseller-create h2,.fp-reseller-empty h2{margin:0;color:#10284c;font-size:26px}.fp-reseller-section-title>span{font-weight:800;color:#6b7f99}.fp-reseller-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:16px}.fp-reseller-card{padding:24px;border:1px solid #dbe7f4;border-radius:24px;background:#fff;box-shadow:0 12px 34px rgba(20,59,105,.08)}.fp-reseller-card__head{display:flex;align-items:flex-start;justify-content:space-between;gap:18px}.fp-reseller-card h3{margin:0 0 4px;color:#10284c;font-size:22px}.fp-reseller-card a{color:#2671d9;font-weight:700;overflow-wrap:anywhere}.fp-reseller-status{flex:0 0 auto;padding:7px 10px;border-radius:999px;font-size:10px;font-weight:900;letter-spacing:.08em}.fp-reseller-status--active{background:#e6f8ef;color:#07834f}.fp-reseller-status--suspended,.fp-reseller-status--expired{background:#fff0e8;color:#c14d1f}.fp-reseller-card__facts{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:10px;margin-top:22px}.fp-reseller-card__facts span{padding:13px;border-radius:16px;background:#f4f8fd;color:#6b7f99;font-size:12px}.fp-reseller-card__facts b{display:block;margin-bottom:3px;color:#10284c;font-size:15px;overflow:hidden;text-overflow:ellipsis}.fp-reseller-empty{padding:34px;border:1px dashed #bad0e8;border-radius:24px;background:#f8fbff;text-align:center;color:#6b7f99}.fp-reseller-empty i{display:inline-grid;place-items:center;width:56px;height:56px;margin-bottom:14px;border-radius:18px;background:#e7f1ff;color:#1368e8;font-size:22px}.fp-reseller-create{display:grid;grid-template-columns:minmax(220px,.75fr) minmax(0,1.25fr);gap:30px;padding:30px;border:1px solid #dbe7f4;border-radius:28px;background:#fff;box-shadow:0 15px 42px rgba(20,59,105,.08)}.fp-reseller-create__copy p{color:#6b7f99;line-height:1.7}.fp-reseller-create form{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:15px}.fp-reseller-create label{display:flex;flex-direction:column;gap:7px;color:#284667;font-size:12px;font-weight:900}.fp-reseller-create input{width:100%;min-height:48px;padding:12px 14px;border:1px solid #ceddec;border-radius:14px;background:#f9fbfe;color:#10284c;outline:none}.fp-reseller-create input:focus{border-color:#3f83df;box-shadow:0 0 0 3px rgba(63,131,223,.12)}.fp-reseller-create input[type=color]{padding:6px}.fp-reseller-wide{grid-column:1/-1}.fp-reseller-create button{grid-column:1/-1;min-height:50px;border:0;border-radius:15px;background:#1368e8;color:#fff;font-weight:900;box-shadow:0 10px 24px rgba(19,104,232,.2)}.fp-reseller-create button:disabled{opacity:.65}
@media(max-width:760px){.fp-reseller-page{padding:18px 14px 100px}.fp-reseller-hero{padding:28px 22px;border-radius:24px}.fp-reseller-hero h1{font-size:34px}.fp-reseller-flow{gap:7px}.fp-reseller-flow span{padding:8px 10px;font-size:11px}.fp-reseller-grid,.fp-reseller-create{grid-template-columns:1fr}.fp-reseller-create{padding:22px;border-radius:22px}.fp-reseller-create form{grid-template-columns:1fr}.fp-reseller-wide,.fp-reseller-create button{grid-column:auto}.fp-reseller-card{padding:19px;border-radius:20px}.fp-reseller-card__head{flex-direction:column}.fp-reseller-card__facts{grid-template-columns:1fr}.fp-reseller-section-title{align-items:flex-start}.fp-reseller-section-title h2{font-size:23px}}
