@import url("https://fonts.googleapis.com/css?family=DM+Sans:var(--caption-sm-semibold-font-weight),var(--heading-md-bold-font-weight),var(--body-md-font-weight),var(--body-sm-font-weight),var(--body-xs-reg-font-weight),var(--body-sm-bold-font-weight)|Inter:500");

/* Overlay: Centers the modal perfectly */
.xflewit-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--xflewit-bg);
    display: flex;
    align-items: center; /* Vertical center */
    justify-content: center; /* Horizontal center */
    z-index: 1000;
    padding: 20px; /* Prevents modal from touching screen edges on mobile */
    box-sizing: border-box;
}

/* Modal Box */
.xflewit-modal {
    background: white;
    width: 100%;
    max-width: 500px; /* Adjust for desired width */
    border-radius: var(--xflewit-radius);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    display: flex;
    flex-direction: column;
    animation: xflewit-fadein 0.3s ease-out;
}

/* Content Sections */
.xflewit-modal-header, .xflewit-modal-footer {
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.xflewit-modal-header { border-bottom: 1px solid #eee; }
.xflewit-modal-footer { border-top: 1px solid #eee; justify-content: flex-end; gap: 10px; }
.xflewit-modal-body { padding: 20px; line-height: 1.5; }

/* Utilities */
.xflewit-hidden { display: none !important; }

.xflewit-close-btn {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #666;
}

.xflewit-btn {
    padding: 8px 16px;
    border-radius: 4px;
    border: none;
    cursor: pointer;
}

.xflewit-btn-primary { background: #007bff; color: white; }
.xflewit-btn-secondary { background: #6c757d; color: white; }

/* Animation */
@keyframes xflewit-fadein {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}
/* Container Logic */
.flewit_list_widget_stats-grid {
    display: grid;
    gap: 15px;
    grid-template-columns: repeat(1, 1fr);
}

@media (min-width: 600px) {
    .flewit_list_widget_stats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
    .flewit_list_widget_stats-grid { grid-template-columns: repeat(3, 1fr); }
}

.flewit_list_widget_stats-item {
    display: flex;
    align-items: center; /* Vertically center year and count container */
    justify-content: space-between;
    padding: 15px;
    background: #ffffff;
    border: 1px solid #eee;
    border-radius: 8px;
}

/* Parent Div for the Count logic */
.flewit_list_widget_count-container {
    position: relative;
    width: 60%; /* Takes up right side of the item */
    background-color: #f0f0f0;
    border-radius: 4px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: flex-end; /* Keeps text to the right */
    height: 30px;
}

/* The visual bar inside the parent div */
.flewit_list_widget_progress-bar {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    background-color: #007bff22; /* Light blue tint */
    border-right: 2px solid #007bff;
    transition: width 0.3s ease;
}

.flewit_list_widget_count {
    position: relative; /* Stays above the progress bar */
    padding-right: 10px;
    font-weight: bold;
    color: #333;
    z-index: 1;
}


.margin-left-10{
    margin-left: 10px;
}
.margin-right-10{
    margin-right: 10px;
}
.flew_round_select_container {
  position: relative;
  width: 100%;
  display: inline-flex;
}

.flew_round_select_field {
  width: 100%;
  padding: 10px 16px;
  font-size: 16px;
  border: 2px solid #e0e0e0;
  border-radius: 25px; /* Round border */
  background-color: #fff;
  cursor: pointer;
  
  /* Remove default arrow */
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;

  /* Add your custom SVG arrow */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12' fill='none'%3E%3Cpath d='M2 4L5.5 8L9 4' stroke='url(%23paint0_linear_4931_27906)' stroke-width='1.25' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cdefs%3E%3ClinearGradient id='paint0_linear_4931_27906' x1='8.70203' y1='9.87689' x2='-1.12007' y2='-1.6467' gradientUnits='userSpaceOnUse'%3E%3Cstop offset='0.04' stop-color='%230071CE' stop-opacity='0.8'/%3E%3Cstop offset='0.3' stop-color='%23005AB6'/%3E%3Cstop offset='0.57' stop-color='%23062F87'/%3E%3C/linearGradient%3E%3C/defs%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
  background-size: 18px;
  
  transition: border-color 0.3s ease;
}

/* Hover and Focus states */
.flew_round_select_field:hover {
  border-color: #b0b0b0;
}

.flew_round_select_field:focus {
  outline: none;
  border-color: #007bff;
}


.widget_icon_size{
    width: 24px;
    height: 24px;
}
.widget-picker-inside-modal {
    width: 100%;
}

.gap-32 {
    height: 32px;
}

.gap-24 {
    height: 24px;
}

.gap-16 {
    height: 16px;
}

.gap-12 {
    height: 12px;
}

.gap-10 {
    height: 10px;
}

.gap-8 {
    height: 8px;
}

.gap-04 {
    height: 4px;
}

.gap-6 {
    height: 6px;
}

.heading_black_widget_title {
    color: var(--Core-Jet-Black, #26262A);

    /* body/md-bold */
    font-family: var(--font-family-body, "DM Sans");
    font-size: var(--font-size-sm, 16px);
    font-style: normal;
    font-weight: 600;
    line-height: 120%;
    /* 19.2px */
    letter-spacing: 0.32px;

}

.sub_title_black_widget_title {
    color: var(--Neutrals-Panel-Gray, #626262);

    /* body/xs-reg */
    font-family: var(--font-family-body, "DM Sans");
    font-size: var(--font-size-xs, 12px);
    font-style: normal;
    font-weight: 400;
    line-height: 125%;
    /* 15px */
    letter-spacing: 0.24px;
    padding-top: 4px;

}

.widget_counters {

    /* heading/lg */
    font-family: var(--font-family-heading, "DM Sans");
    font-size: var(--font-size-2xl, 32px);
    font-style: normal;
    font-weight: 600;
    line-height: 120%; /* 38.4px */
    letter-spacing: 0.64px;
    background: var(--Core-Skyline-Gradient, linear-gradient(124deg, rgba(0, 113, 206, 0.80) -8.3%, #005AB6 43.6%, #062F87 97.5%));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    padding-top: 10px;
}

.widget_chart_container {
    position: relative;
    width: 100%;
    height: 200px;
    padding-top: 16px;
}

.widget_chart_container_pie {
    float: left;
    width: 180px !important;
    max-width: 52%;
    height: 180px !important;
    margin-right: auto;
    padding-top: 12px;
}

#ajax-widgit-view .widgit_right_btn_widget-content table:not([class]) {
    width: 100%;
    margin-top: 16px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(132px, 1fr));
    align-content: space-between;
    column-gap: 12px;
    row-gap: 8px;
    border-collapse: separate;
    border-spacing: 0;
    color: var(--Neutrals-Panel-Gray, #626262);
    font-family: var(--font-family-body, "DM Sans");
    font-size: var(--font-size-xs, 12px);
    font-style: normal;
    font-weight: 400;
    line-height: 125%;
    letter-spacing: 0.24px;
}

#ajax-widgit-view .widgit_right_btn_widget-content table:not([class]) tbody {
    display: contents;
}

#ajax-widgit-view .widgit_right_btn_widget-content table:not([class]) tr {
    display: flex;
    min-width: 0;
    align-items: flex-end;
    gap: 0;
}

#ajax-widgit-view .widgit_right_btn_widget-content table:not([class]) td {
    padding: 0 !important;
    vertical-align: bottom;
    color: inherit;
    white-space: nowrap;
}

#ajax-widgit-view .widgit_right_btn_widget-content table:not([class]) td:first-child {
    min-width: 0;
    flex: 0 1 auto;
    overflow: hidden;
    text-overflow: ellipsis;
    word-break: break-word;
}

#ajax-widgit-view .widgit_right_btn_widget-content table:not([class]) td:last-child {
    flex: 0 0 auto;
    padding-left: 25px !important;
    text-align: right !important;
    font-weight: 600;
}

.widgit_right_btn_widget-content::after {
    content: "";
    display: block;
    clear: both;
}

.heading-16 {
    color: var(--Neutrals-Panel-Gray, #626262);
}


.sub-heading-12 {
    color: var(--Neutrals-Placeholder, #8E8E93);

    /* body/xs-reg */
    font-family: var(--font-family-body, "DM Sans");
    font-size: var(--font-size-xs, 12px);
    font-style: normal;
    font-weight: 400;
    line-height: 125%;
    /* 15px */
    letter-spacing: 0.24px;
}

/* Scrollbar width */
::-webkit-scrollbar {
    width: 8px;
}

/* Track (background area) */
::-webkit-scrollbar-track {
    background: #f1f1f1;
    /* optional */
    border-radius: 4px;
}

/* Scrollbar thumb (the moving part) */
::-webkit-scrollbar-thumb {
    border-radius: 4px;
    background: linear-gradient(124deg,
            rgba(0, 113, 206, 0.80) -8.3%,
            #005AB6 43.6%,
            #062F87 97.5%);
}

/* Optional: hover effect */
::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(124deg,
            rgba(0, 113, 206, 1) -8.3%,
            #005AB6 43.6%,
            #062F87 97.5%);
}

a {
    text-decoration: none;
}

.bg-panel {
    background-color: var(--tintsblue-2);
}

.bg-panel_white {
    border-radius: 20px 20px 0 0;
    background: var(--Core-Pure-White, #FFF);
}

/*======= text ======== */
.heading {
    font-family: var(--font-family-heading, "DM Sans");
    font-size: var(--font-size-xl, 24px);
    font-style: normal;
    font-weight: 600;
    line-height: 100%;
    /* 24px */
    letter-spacing: 0.48px;
    background: var(--Core-Skyline-Gradient, linear-gradient(124deg, rgba(0, 113, 206, 0.80) -8.3%, #005AB6 43.6%, #062F87 97.5%));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    padding-bottom: 6px;
}

.sub-heading {
    color: var(--Neutrals-Panel-Gray, #626262);
    font-family: var(--font-family-body, "DM Sans");
    font-size: var(--font-size-sm, 16px);
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
    /* 19.2px */
    letter-spacing: 0.32px;
}

.text-16 {
    color: var(--Neutrals-Panel-Gray, #626262);
    font-family: var(--font-family-body, "DM Sans");
    font-size: var(--font-size-sm, 16px);
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
    /* 19.2px */
    letter-spacing: 0.32px;

}

.text-color-16 {
    background: var(--Core-Skyline-Gradient, linear-gradient(124deg, rgba(0, 113, 206, 0.80) -8.3%, #005AB6 43.6%, #062F87 97.5%));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    /* body/xs-bold */
    font-family: var(--font-family-body, "DM Sans");
    font-size: var(--font-size-xs, 16px);
    font-style: normal;
    font-weight: 600;
    line-height: 120%;
    letter-spacing: 0.24px;
}

.text-14 {
    color: var(--Neutrals-Panel-Gray, #626262);
    /* body/xs-reg */
    font-family: var(--font-family-body, "DM Sans");
    font-size: var(--font-size-xs, 14px);
    font-style: normal;
    font-weight: 600;
    line-height: 125%;
    /* 15px */
    letter-spacing: 0.24px;
}

.text-color-14 {
    background: var(--Core-Skyline-Gradient, linear-gradient(124deg, rgba(0, 113, 206, 0.80) -8.3%, #005AB6 43.6%, #062F87 97.5%));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    /* body/xs-bold */
    font-family: var(--font-family-body, "DM Sans");
    font-size: var(--font-size-xs, 14px);
    font-style: normal;
    font-weight: 600;
    line-height: 120%;
    letter-spacing: 0.24px;
}

.text-12 {
    color: var(--Neutrals-Placeholder, #8E8E93);
    /* body/xs-reg */
    font-family: var(--font-family-body, "DM Sans");
    font-size: var(--font-size-xs, 12px);
    font-style: normal;
    font-weight: 400;
    line-height: 125%;
    /* 15px */
    letter-spacing: 0.24px;
    text-align: left;
}

/*======= text ======== */
.checkbox_valid {
    position: relative;
    flex: 1;
    margin-top: -0.50px;
    font-family: var(--body-xs-reg-font-family);
    font-weight: var(--body-xs-reg-font-weight);
    color: var(--neutralspanel-gray);
    font-size: var(--body-xs-reg-font-size);
    letter-spacing: var(--body-xs-reg-letter-spacing);
    line-height: var(--body-xs-reg-line-height);
    font-style: var(--body-xs-reg-font-style);
}

.frame-1 {
    padding-top: 72px;
    padding-left: 72px;
}

.frame-2 {
    padding-top: 72px;
    padding-left: 64px;
    padding-right: 64px;
    padding-bottom: 48px;
}

.logo_for_auth {
    width: 148px;
    height: 39.47px;
    margin-bottom: 49.47px;
}

.world_map {
    width: 100%;
}

.white_box {
    display: flex;
    height: 48px;
    min-width: 44px;
    padding: 14px 16px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    align-self: stretch;
    border-radius: var(--Semi-rounded, 12px);
    border: 1px solid var(--button-general-outline, #F7F7F7);
    background: var(--button-general-bg, #FFF);

    /* effect/70 */
    box-shadow: 10px 12px 40px 4px rgba(0, 90, 182, 0.06);
}

.primary-button {
    border: none;
    display: flex;
    width: 100%;
    height: 48px;
    padding: 13px 16px;
    justify-content: center;
    align-items: center;
    gap: 6px;

    border-radius: 8px;
    background: linear-gradient(124deg, rgba(0, 113, 206, 0.80) -8.3%, #005AB6 43.6%, #062F87 97.5%);

    color: var(--Core-Pure-White, #FFF);
    text-align: center;
    font-family: var(--font-family-body, "DM Sans");
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 120%;
    /* 16.8px */
    letter-spacing: 0.28px;
}

.primary-button:hover {
    border-radius: 8px;
    opacity: 0.9;
    background: var(--Core-Altitude-Blue, #062F87);
    box-shadow: 0 2px 12px 0 rgba(0, 90, 182, 0.08);
}

.primary-button:active {
    border-radius: 8px;
    background: var(--Core-Altitude-Blue, #062F87);
}

.primary-button:focus {
    border-radius: 8px;
    border: 2px solid var(--Tints-Blue-80, #338DD8);
    background: linear-gradient(124deg, rgba(0, 113, 206, 0.80) -8.3%, #005AB6 43.6%, #062F87 97.5%);
}

.primary-button:disabled {
    border-radius: 8px;
    opacity: 0.4;
    background: var(--Core-Skyline-Gradient, linear-gradient(124deg, rgba(0, 113, 206, 0.80) -8.3%, #005AB6 43.6%, #062F87 97.5%));
}

.primary-button img {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    aspect-ratio: 1/1;
}

/* ======================================================================== */
/* secondary button error */
.secondary-button-error {
    display: flex;
    width: 100%;
    height: 48px;
    padding: 13px 22px;
    justify-content: center;
    align-items: center;
    gap: 6px;

    border-radius: 8px;
    border: 1px solid var(--Error-Red-100, #C70101);
    background: var(--Core-Pure-White, #FFF);

    color: var(--Error-Red-100, #C70101);
    text-align: center;
    font-family: var(--font-family-body, "DM Sans");
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 120%;
    /* 16.8px */
    letter-spacing: 0.28px;
}

.secondary-button-error:hover {
    border-radius: 8px;
    border: 1px solid var(--Error-Red-100, #C70101);
    background: var(--Error-Red-3, #FDF7F7);
}

.secondary-button-error:active {
    border-radius: 8px;
    border: 1px solid var(--Error-Red-100, #C70101);
    background: var(--Error-Red-10, #FFEFEF);
}

.secondary-button-error:focus {
    border-radius: 8px;
    border: 2px solid var(--Error-Red-100, #C70101);
    background: var(--Error-Red-10, #FFEFEF);
}

.secondary-button-error:disabled {
    border-radius: 8px;
    border: 1px solid var(--Error-Red-100, #C70101);
    opacity: 0.4;
}

/* ======================================================================== */
/* secondary button */
.secondary-button {
    display: flex;
    width: 100%;
    height: 48px;
    padding: 13px 22px;
    justify-content: center;
    align-items: center;
    gap: 6px;

    border-radius: 8px;

    border: 2px solid transparent;
    background: linear-gradient(var(--Tints-Blue-2, #FAFCFE), var(--Tints-Blue-2, #FAFCFE)) padding-box,
    var(--Core-Skyline-Gradient, linear-gradient(90deg, rgba(0, 113, 206, 0.80), rgba(0, 180, 216, 0.80))) border-box;

    text-align: center;
    font-family: var(--font-family-body, "DM Sans");
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 120%;
    /* 16.8px */
    letter-spacing: 0.28px;
}

.secondary-button:hover {
    border: 2px solid transparent;
    border-radius: 8px;
    background:
        linear-gradient(#F1F7FE, #F1F7FE) padding-box,
        linear-gradient(140deg, #0071ce, #005ab6, #062f87) border-box;
}
.secondary-button:active {
    border-radius: 8px;
    border: 1px solid var(--Core-Skyline-Gradient, rgba(0, 113, 206, 0.80));
    background: var(--Tints-Blue-10, #E5F1FA);
}

.secondary-button:focus {
    border-radius: 8px;
    border: 2px solid var(--Core-Skyline-Gradient, rgba(0, 113, 206, 0.80));
    background: var(--Tints-Blue-10, #E5F1FA);
}

.secondary-button:disabled {
    border-radius: 8px;
    border: 1px solid var(--Core-Skyline-Gradient, rgba(0, 113, 206, 0.80));
    opacity: 0.4;
}

/* ======================================================================== */
/* text fields */
.fl-field {
    position: relative;
}

.fl-field input,
.fl-field select,
.fl-field textarea {
    width: 100%;
    height: 56px;
    padding: 24px 16px 8px;
    border-radius: 8px;
    border: 1px solid var(--Core-Skyline-Gradient, rgba(0, 113, 206, 0.80));
    border-radius: 10px;
    background: #fff;
    font-family: "DM Sans", Helvetica, sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: #26262A;
    outline: none;
    transition: border-color .18s ease, box-shadow .18s ease;
    -webkit-appearance: none;
    appearance: none;
    box-sizing: border-box;
    margin-bottom: 12px;
}

.fl-field textarea {
    height: auto;
    min-height: 110px;
    padding-top: 28px;
    resize: vertical;
    line-height: 1.5;
}

.fl-field label {
    position: absolute;
    left: 16px;
    /* top: 50%; */
    /* transform: translateY(-50%); */
    font-family: "DM Sans", Helvetica, sans-serif;
    /* font-size: 11px; */
    font-weight: 400;
    /* color: #A0A8B8; */
    pointer-events: none;
    transition: top .18s ease, font-size .18s ease, color .18s ease, font-weight .18s ease;
    white-space: nowrap;
    line-height: 1;

    top: 10px;
    transform: none;
    font-size: 11px;
    font-weight: 600;
    color: #0071CE;
    letter-spacing: 0.02em;
}

.fl-field textarea~label {
    top: 20px;
    transform: none;
}

.fl-field label .req {
    color: #F05F6E;
    margin-left: 2px;
}

.fl-field input:focus~label,
.fl-field input:not(:placeholder-shown)~label,
.fl-field select:focus~label,
.fl-field select.has-value~label,
.fl-field textarea:focus~label,
.fl-field textarea:not(:placeholder-shown)~label,
.fl-field.floated label {
    top: 10px;
    transform: none;
    font-size: 11px;
    font-weight: 600;
    color: #0071CE;
    letter-spacing: 0.02em;
}

.fl-field input:focus,
.fl-field select:focus,
.fl-field textarea:focus {
    border-radius: 8px;
    border: 2px solid var(--Core-Skyline-Gradient, rgba(0, 113, 206, 0.80));
}

.fl-field input[type="date"]::-webkit-datetime-edit,
.fl-field input[type="time"]::-webkit-datetime-edit {
    color: transparent;
}

.fl-field input[type="date"]:focus::-webkit-datetime-edit,
.fl-field input[type="time"]:focus::-webkit-datetime-edit,
.fl-field input[type="date"].has-value::-webkit-datetime-edit,
.fl-field input[type="time"].has-value::-webkit-datetime-edit {
    color: #26262A;
}

.fl-field.fl-field_error input,
.fl-field.fl-field_error select,
.fl-field.fl-field_error textarea {
    border: 1px solid #C70101;
    background: #FDF7F7;
}

/* Also ensure the label turns red when in error state */
.fl-field.fl-field_error label,
.fl-field.fl-field_error input:focus~label,
.fl-field.fl-field_error input:not(:placeholder-shown)~label {
    color: #C70101 !important;
}

.fl-field.fl-field_error input:focus {
    border-color: #C70101;
    box-shadow: 0 0 0 2px rgba(199, 1, 1, 0.2);
}

.fl-field_error input {
    display: flex;
    height: 56px;
    padding: 12px 16px;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 10px;
    align-self: stretch;
    border-radius: 8px;
    border: 1px solid var(--Error-Red-100, #C70101);
    background: var(--Error-Red-3, #FDF7F7);
}

.fl-field_error_label {
    position: absolute;
    left: 16px;
    top: 30%;
    transform: translateY(-50%);
    font-family: "DM Sans", Helvetica, sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: #C70101;
    pointer-events: none;
    transition: top .18s ease, font-size .18s ease, color .18s ease, font-weight .18s ease;
    white-space: nowrap;
    line-height: 1;
}

.fl-field select {
    cursor: pointer;
    padding-right: 40px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%230071CE' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
}

.error_message {
    margin-top: 6px;
    color: var(--Error-Red-100, #C70101);
    font-family: var(--font-family-body, "DM Sans");
    font-size: var(--font-size-xs, 12px);
    font-style: normal;
    font-weight: 400;
    line-height: 125%;
    /* 15px */
    letter-spacing: 0.24px;
    padding-left: 5px;
}

/* Position the icon */
.fl-field.has-icon .input-icon {
    position: absolute;
    left: 16px;
    top: 35px;
    /* Centered relative to the 56px height, accounting for padding */
    transform: translateY(-50%);
    pointer-events: none;
    z-index: 2;
    transition: stroke .18s ease;
}

/* Add space for the icon inside the input */
.fl-field.has-icon input {
    padding-left: 44px;
    /* 16px (left) + 18px (svg) + 10px (gap) */
}

/* Shift the label to the right to clear the icon */
.fl-field.has-icon label {
    left: 44px;
}

/* Active State: When focused or filled, the label floats up */
/* We move the label back to the left (16px) for a cleaner look when it's small */
.fl-field.has-icon input:focus~label,
.fl-field.has-icon input:not(:placeholder-shown)~label {
    left: 16px;
    color: #0071CE;
}

/* Change icon color on focus */
.fl-field.has-icon input:focus~.input-icon {
    stroke: #0071CE;
}

/* ================================================= */
/* Dropdown + Textfield */
.fp-wrapper {
    position: relative;
    margin-bottom: 14px;
}

.fp-container {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0;
    border: 1px solid #0071cecc;
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
    transition: border-color .18s ease, box-shadow .18s ease;
}

.fp-container:focus-within {
    border-color: rgba(0, 113, 206, 0.8);
    /* box-shadow: 0 0 0 3px rgba(0, 113, 206, 0.08);  */
    border: 2px solid #0071cecc;
}

.fp-currency-trigger {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 0 14px;
    min-width: 80px;
    background: #f8f9fb;
    border: none;
    font-family: "DM Sans", Helvetica, sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #26262A;
    cursor: pointer;
    outline: none;
    position: relative;
    user-select: none;
}

.fp-currency-trigger::after {
    content: '';
    width: 10px;
    height: 10px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%230071CE' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 10px;
    transition: transform .18s ease;
}

.fp-currency-trigger.open::after {
    transform: rotate(180deg);
}

.fp-currency-dropdown {
    position: absolute;
    top: calc(100% + 2px);
    left: 0;
    background: #fff;
    border: 1.5px solid #E0E6EF;
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(0, 90, 182, .12);
    z-index: 1000;
    overflow: hidden;
    display: none;
    min-width: 100px;
    z-index: 9999;
}

.fp-currency-dropdown.open {
    display: block;
}

.fp-currency-option {
    padding: 10px 14px;
    font-size: 13px;
    font-family: "DM Sans", Helvetica, sans-serif;
    color: #26262A;
    cursor: pointer;
    transition: background .15s ease;
    border-bottom: 1px solid #F1F1F1;
}

.fp-currency-option:last-child {
    border-bottom: none;
}

.fp-currency-option:hover {
    background: #F1F7FE;
}

.fp-currency-option.selected {
    background: #E8F0FE;
    color: #0071CE;
    font-weight: 600;
}

.fp-input-group {
    position: relative;
    display: flex;
    align-items: center;
}

.fp-input-group input {
    width: 100%;
    height: 60px;
    border: none;
    padding: 24px 16px 8px;
    background: #fff;
    font-family: "DM Sans", Helvetica, sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: #26262A;
    outline: none;
    box-sizing: border-box;
}

.fp-input-group input:focus+.fp-label,
.fp-input-group input:not(:placeholder-shown)+.fp-label {
    top: 10px;
    transform: none;
    font-size: 11px;
    font-weight: 600;
    color: #0071CE;
}

.fp-input-group input::-webkit-outer-spin-button,
.fp-input-group input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.fp-input-group input[type=number] {
    -moz-appearance: textfield;
}

.fp-label {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    font-family: "DM Sans", Helvetica, sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: #A0A8B8;
    pointer-events: none;
    transition: top .18s ease, font-size .18s ease, color .18s ease, font-weight .18s ease;
    line-height: 1;
    z-index: 2;
}

.fp-wrapper.has-value .fp-label,
.fp-wrapper.focused .fp-label {
    top: 10px;
    transform: none;
    font-size: 11px;
    font-weight: 600;
    color: #0071CE;
    letter-spacing: 0.02em;
}

.password-wrapper {
    position: relative;
}

.password-toggle {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #A0A8B8;
    transition: color 0.18s ease;
    z-index: 10;
    /* Move icon down slightly if label is floated */
}

/* Ensure the icon color changes when the field is focused */
.fl-field:focus-within .password-toggle {
    color: #0071CE;
}

.password-toggle:hover {
    color: #26262A;
}

/* Adjust input padding so text doesn't go under the icon */
.password-wrapper input {
    padding-right: 48px !important;
}

.checkbox input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;



    border: 1.5px solid #E0E6EF;
    background: #fff;

    cursor: pointer;
    position: relative;
    transition: all 0.18s ease;

    display: grid;
    place-content: center;

    width: 14px;
    height: 14px;
    flex-shrink: 0;
    aspect-ratio: 1/1;
}

/* Hover */
.checkbox input[type="checkbox"]:hover {
    border-color: #0071CE;
}

/* Checked state */
.checkbox input[type="checkbox"]:checked {
    border: none;
    background: linear-gradient(123.84deg,
            rgba(0, 113, 206, 0.8) -8.3%,
            #005AB6 43.6%,
            #062F87 97.5%);
}

/* SVG check icon */
.checkbox input[type="checkbox"]::after {
    content: "";
    width: 12px;
    height: 12px;

    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20 6L9 17L4 12' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");

    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    border-radius: 2px;

    transform: scale(0);
    transition: transform 0.18s ease;
}

/* Show SVG when checked */
.checkbox input[type="checkbox"]:checked::after {
    transform: scale(1);
}

/* Focus effect */
.checkbox input[type="checkbox"]:focus {
    box-shadow: 0 0 0 3px rgba(0, 113, 206, 0.08);
    border-color: rgba(0, 113, 206, 0.8);
}

/* Layout */
.checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.checkbox p {
    margin: 0;
    font-size: 14px;
    color: #26262A;
    font-family: "DM Sans", Helvetica, sans-serif;
}

.page-title {
    display: flex;
    width: 100%;
    padding: 24px 0;
    align-items: center;
    gap: 12px;
}

.page-title .icon {
    display: flex;
    align-items: center;
}

.page-title .title {
    font-family: var(--font-family-heading, "DM Sans");
    font-size: var(--font-size-xl, 24px);
    font-style: normal;
    font-weight: 600;
    line-height: 100%;
    /* 24px */
    letter-spacing: 0.48px;

    background: var(--Core-Skyline-Gradient, linear-gradient(124deg, rgba(0, 113, 206, 0.80) -8.3%, #005AB6 43.6%, #062F87 97.5%));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.sub-title {
    display: flex;
    width: 100%;
    padding: 24px 0 24px 24px;
    align-items: center;
    gap: 12px;
}

.sub-title .icon {
    display: flex;
    align-items: center;
}

.sub-title .title {
    font-family: var(--font-family-body, "DM Sans");
    font-size: var(--font-size-sm, 16px);
    font-style: normal;
    font-weight: 600;
    line-height: 120%;
    /* 19.2px */
    letter-spacing: 0.32px;

    background: var(--Core-Skyline-Gradient, linear-gradient(124deg, rgba(0, 113, 206, 0.80) -8.3%, #005AB6 43.6%, #062F87 97.5%));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.info-title {
    display: flex;
    width: 100%;
    padding: 16px 0;
    align-items: center;
    gap: 10px;
}

.info-title .icon {
    display: flex;
    align-items: center;
}

.info-title .title .main-title {
    font-family: var(--font-family-heading, "DM Sans");
    font-size: var(--font-size-xl, 24px);
    font-style: normal;
    font-weight: 600;
    line-height: 100%;
    letter-spacing: 0.48px;

    background: var(--Core-Skyline-Gradient, linear-gradient(124deg, rgba(0, 113, 206, 0.80) -8.3%, #005AB6 43.6%, #062F87 97.5%));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.info-title .title .title-desc {
    color: var(--Neutrals-Placeholder, #8E8E93);
    font-family: var(--font-family-body, "DM Sans");
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 125%;
    /* 17.5px */
    letter-spacing: 0.28px;
}

.sub-info-title {
    display: flex;
    width: 100%;
    padding: 24px 0 24px 16px;
    align-items: center;
    gap: 10px;
}

.sub-info-title .icon {
    display: flex;
    align-items: center;
}

.sub-info-title .title .main-title {
    font-family: var(--font-family-body, "DM Sans");
    font-size: var(--font-size-sm, 16px);
    font-style: normal;
    font-weight: 600;
    line-height: 120%;
    /* 19.2px */
    letter-spacing: 0.32px;

    background: var(--Core-Skyline-Gradient, linear-gradient(124deg, rgba(0, 113, 206, 0.80) -8.3%, #005AB6 43.6%, #062F87 97.5%));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.sub-info-title .title .title-desc {
    color: var(--Neutrals-Placeholder, #8E8E93);
    font-family: var(--font-family-caption, "DM Sans");
    font-size: var(--font-size-xxs, 10px);
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
    /* 12px */
    letter-spacing: 0.025px;
}

.flight-card {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    border-radius: 8px;
}

/* .flight-card .map-img{
    width: 296px;
    height: 642px;
    aspect-ratio: 71/154;
    background: url(<path-to-image>) lightgray 50% / cover no-repeat;
} */

.flight-card .flight-details {
    /* display: flex; */
    padding: 12px 8px 4px 8px;
    align-items: center;
    gap: 16px;
    align-self: stretch;
}

.flight-details .flight-timeline {
    color: var(--Neutrals-Panel-Gray, #626262);

    font-family: var(--font-family-body, "DM Sans");
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 120%;
    letter-spacing: 0.28px;

    align-self: stretch;
}

.flight-details .flight-info {
    display: flex;
    align-items: center;
    align-content: center;
    gap: 0 4px;
    align-self: stretch;
    flex-wrap: wrap;
}

.flight-info .from {
    font-family: var(--font-family-body, "DM Sans");
    font-size: var(--font-size-lg, 20px);
    font-style: normal;
    font-weight: 600;
    line-height: 120%;
    /* 24px */
    letter-spacing: 0.4px;
    background: var(--Core-Skyline-Gradient, linear-gradient(124deg, rgba(0, 113, 206, 0.80) -8.3%, #005AB6 43.6%, #062F87 97.5%));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.flight-info .icon {
    width: 12px;
    height: 12px;
    aspect-ratio: 1/1;
}

.flight-info .to {
    font-family: var(--font-family-body, "DM Sans");
    font-size: var(--font-size-lg, 20px);
    font-style: normal;
    font-weight: 600;
    line-height: 120%;
    /* 24px */
    letter-spacing: 0.4px;
    background: var(--Core-Skyline-Gradient, linear-gradient(124deg, rgba(0, 113, 206, 0.80) -8.3%, #005AB6 43.6%, #062F87 97.5%));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.trip-card {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    border-radius: 8px;
}

/* .trip-card .map-img{
    width: 296px;
    height: 642px;
    aspect-ratio: 71/154;
    background: url(<path-to-image>) lightgray 50% / cover no-repeat;
} */

.trip-card .trip-details {
    display: flex;
    padding: 10px 4px 4px 4px;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
    align-self: stretch;
}

.trip-details .trip-timeline {
    color: var(--Neutrals-Panel-Gray, #626262);
    font-family: var(--font-family-body, "DM Sans");
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 120%;
    /* 16.8px */
    letter-spacing: 0.28px;
}

.trip-details .trip-info {
    font-family: var(--font-family-body, "DM Sans");
    font-size: var(--font-size-lg, 20px);
    font-style: normal;
    font-weight: 600;
    line-height: 120%;
    /* 24px */
    letter-spacing: 0.4px;

    background: var(--Core-Skyline-Gradient, linear-gradient(124deg, rgba(0, 113, 206, 0.80) -8.3%, #005AB6 43.6%, #062F87 97.5%));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.trip-details .trip-counts {
    display: flex;
    padding-top: 4px;
    /* flex-direction: column; */
    justify-content: center;
    align-items: flex-start;
    gap: 8px;
    /* align-self: stretch; */
}

.trip-counts .icon {
    width: 16px;
    height: 16px;
    aspect-ratio: 1/1;
}

.trip-counts .counts {
    color: var(--Neutrals-Panel-Gray, #626262);
    text-align: center;

    font-family: var(--font-family-body, "DM Sans");
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 125%;
    /* 17.5px */
    letter-spacing: 0.28px;
}

/* ======================================================= */
.miss-out {
    position: relative;
    display: flex;
    align-items: center;

    width: 100%;
    height: 100px;
    padding: 0 20px;

    border-radius: 8px;
    overflow: hidden;

    background: linear-gradient(124deg, rgba(0, 113, 206, 0.80) -8.3%, #005AB6 43.6%, #062F87 97.5%);
}

/* BACKGROUND MAP IMAGE */
.map-bg {
    position: absolute;
    right: -40px;
    top: -10%;

    width: 240px;
    height: 153px;

    filter: brightness(20);
    opacity: 0.3;

    z-index: 1;
    pointer-events: none;
}

/* CONTENT WRAPPER */
.miss-out-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

/* FORCE SINGLE LINE (NO RESPONSIVE BREAK) */
.miss-out-content .row {
    flex-wrap: nowrap;
    margin: 0;
}

/* REMOVE BOOTSTRAP PADDING */
.miss-out-content [class*="col-"] {
    padding-left: 0;
    padding-right: 0;
}

/* FIX COLUMN WIDTHS */
.miss-out .col-8 {
    flex: 0 0 70%;
    max-width: 70%;
}

.miss-out .col-4 {
    flex: 0 0 30%;
    max-width: 30%;
}

/* TEXT */
.miss-out-head {
    color: #fff;
    font-family: "DM Sans", sans-serif;
    font-size: 18px;
    font-weight: 600;
    line-height: 1;
    margin-bottom: 5px;

    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.miss-out-info {
    color: #fff;
    font-family: "DM Sans", sans-serif;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.2;

    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* BUTTON */
.get-pro-btn {
    background: #fff;
    color: #005AB6;

    border: none;
    border-radius: 30px;

    padding: 8px 18px;
    font-size: 14px;
    font-weight: 600;

    cursor: pointer;
    transition: all 0.3s ease;

    white-space: nowrap;
}

/* HOVER */
.get-pro-btn:hover {
    transform: scale(1.05);
}

.tr-banner-ad {
    background: #cce0fd;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
    color: #167ce4;
}

.tr-banner-ad-list {
    padding: 20px;
    border-radius: 14px;
}

.or_line {
    display: flex;
    padding-top: 48px;
    padding-bottom: 48px;
    width: 100%;
}

/* [Style for the trigger action button] */
.click-to-open-sheet-button {
    padding: 12px 24px;
    background-color: #0078d4;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.click-to-open-sheet-button:hover {
    background-color: #005a9e;
}

/* [Style for the full screen darkened backdrop] */
.dimmed-background-overlay-layer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: flex-end;
    /* Keeps modal at the bottom */
    z-index: 999;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s ease;
}

/* [Style for the white container sliding from bottom] */
.bottom-fixed-sliding-modal-container {
    width: 100%;
    background: #ffffff;
    /* 12px Top border radius as requested */
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    padding: 24px;
    box-sizing: border-box;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);

    /* Transform effect: Hidden below screen by default */
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.1, 0.9, 0.2, 1);
}







/* [Style for the header section containing title and exit] */
.modal-top-header-navigation-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

/* [Style for the close button inside the header] */
.close-modal-icon-action-button {

    border: none;
    width: 32px;
    height: 32px;

    cursor: pointer;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* [Style for the main body text area] */
.modal-internal-scrollable-content-body {
    color: #323130;



    line-height: 1.5;
}

/* [Active states to trigger the animations] */
.dimmed-background-overlay-layer.is-currently-active {
    visibility: visible;
    opacity: 1;
}

.dimmed-background-overlay-layer.is-currently-active .bottom-fixed-sliding-modal-container {
    transform: translateY(0);
}




.flewit_modal_body {
    display: flex;
    width: 100%;
    height: 500px;
    padding: 24px 0 48px 0;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    overflow-y: scroll;
}

.bottom-fixed-sliding-modal-container {
    width: 576px;
    margin: 0 auto;
}

.footer {
    position: relative;

    bottom: 0;
    width: 100%;
    height: 176px;
    background-color: transparent;
    background: linear-gradient(140deg, rgba(0, 113, 206, 0.8) 4%, rgba(0, 90, 182, 1) 30%, rgba(6, 47, 135, 1) 57%);
/*     padding-left: 124px */
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 24px;
    text-decoration: none;
    width: 127.97px;
    height: 32px;
}

/* .footer-logo {
    position: relative;
    width: 127.97px;
    height: 32px;
    aspect-ratio: 4;
    margin-top: 48px;
} */

.footer-frame-2 {
    margin-top: 24px;
    margin-left: 24px;
}

.text-wrapper {
    display: inline-flex;
    width: fit-content;
    margin-top: -1.00px;
    font-family: var(--body-sm-font-family);
    font-weight: var(--body-sm-font-weight);
    color: var(--tintsblue-2);
    font-size: var(--body-sm-font-size);
    letter-spacing: var(--body-sm-letter-spacing);
    line-height: var(--body-sm-line-height);
    white-space: nowrap;
    font-style: var(--body-sm-font-style);
    margin-right: 16px;
}


.map {
    position: absolute;
    width: 61.60%;
    height: 107.95%;
    top: -7.95%;
    left: 38.40%;
}

.media-block {
    display: flex;
    align-items: center;
    /* Aligns both to the top edge */
    gap: 20px;
}

.media-block img {
    flex-shrink: 0;
    /* Prevents the image from squeezing if text is long */
    width: 80px;
    /* Sets a fixed width for the image */
    height: auto;
}

.media-block p {
    margin: 0;
}

/* Tablet Styles (Screens under 1024px) */
@media (max-width: 1024px) {
    .frame-1 {
        padding-top: 48px;
        padding-left: 48px;
        width: 100%;
    }

    .frame-2 {
        padding-top: 48px;
        padding-left: 24px;
        padding-right: 24px;
        padding-bottom: 48px;
    }

    .heading {
        font-family: var(--font-family-heading, "DM Sans");
        font-size: var(--font-size-xl, 20px);
        font-style: normal;
        font-weight: 600;
        line-height: 100%;
        /* 24px */
        letter-spacing: 0.48px;
        background: var(--Core-Skyline-Gradient, linear-gradient(124deg, rgba(0, 113, 206, 0.80) -8.3%, #005AB6 43.6%, #062F87 97.5%));
        background-clip: text;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        padding-bottom: 4px;
    }

    .sub-heading {
        color: var(--Neutrals-Panel-Gray, #626262);
        font-family: var(--font-family-body, "DM Sans");
        font-size: var(--font-size-sm, 12px);
        font-style: normal;
        font-weight: 600;
        line-height: 120%;
        /* 19.2px */
        letter-spacing: 0.32px;
    }

    .text-16 {
        color: var(--Neutrals-Panel-Gray, #626262);
        font-family: var(--font-family-body, "DM Sans");
        font-size: var(--font-size-sm, 12px);
        font-style: normal;
        font-weight: 600;
        line-height: 120%;
        /* 19.2px */
        letter-spacing: 0.32px;

    }

    .text-color-16 {
        background: var(--Core-Skyline-Gradient, linear-gradient(124deg, rgba(0, 113, 206, 0.80) -8.3%, #005AB6 43.6%, #062F87 97.5%));
        background-clip: text;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;

        /* body/xs-bold */
        font-family: var(--font-family-body, "DM Sans");
        font-size: var(--font-size-xs, 12px);
        font-style: normal;
        font-weight: 600;
        line-height: 120%;
        letter-spacing: 0.24px;
    }

    .text-14 {
        color: var(--Neutrals-Panel-Gray, #626262);
        /* body/xs-reg */
        font-family: var(--font-family-body, "DM Sans");
        font-size: var(--font-size-xs, 12px);
        font-style: normal;
        font-weight: 600;
        line-height: 125%;
        /* 15px */
        letter-spacing: 0.24px;
    }

    .text-color-14 {
        background: var(--Core-Skyline-Gradient, linear-gradient(124deg, rgba(0, 113, 206, 0.80) -8.3%, #005AB6 43.6%, #062F87 97.5%));
        background-clip: text;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;

        /* body/xs-bold */
        font-family: var(--font-family-body, "DM Sans");
        font-size: var(--font-size-xs, 12px);
        font-style: normal;
        font-weight: 600;
        line-height: 120%;
        letter-spacing: 0.24px;
    }

    .logo_for_auth {
        width: 148px;
        height: 39.47px;
        margin-bottom: 30px;
    }

    .world_map {
        width: 100%;

    }

    .or_line {
        display: flex;
        padding-top: 32px;
        padding-bottom: 32px;
        width: 100%;
    }

    .flewit_modal_body {
        display: flex;
        width: 90%;
        height: 500px;
        padding: 24px 0 48px 0;
        flex-direction: column;
        align-items: center;
        gap: 24px;
        overflow-y: scroll;
    }

    .footer {
        height: 220px;
        padding-left: 24px;
    }

    .media-block {
        border-top: 1px solid #FAFCFE;
        margin-top: 24px;
        margin-left: 10px;
        padding-top: 20px;
        width: 90%;
    }
}

/* Mobile Styles (Screens under 480px) */
@media (max-width: 480px) {
    .frame-1 {
        padding-top: 24px;
        padding-left: 24px;
        width: 100%;
    }

    .frame-2 {
        padding-top: 28px;
        padding-left: 24px;
        padding-right: 24px;
        padding-bottom: 48px;
    }

    .heading {
        font-family: var(--font-family-heading, "DM Sans");
        font-size: var(--font-size-xl, 20px);
        font-style: normal;
        font-weight: 600;
        line-height: 100%;
        /* 24px */
        letter-spacing: 0.48px;
        background: var(--Core-Skyline-Gradient, linear-gradient(124deg, rgba(0, 113, 206, 0.80) -8.3%, #005AB6 43.6%, #062F87 97.5%));
        background-clip: text;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        padding-bottom: 4px;
    }

    .sub-heading {
        color: var(--Neutrals-Panel-Gray, #626262);
        font-family: var(--font-family-body, "DM Sans");
        font-size: var(--font-size-sm, 12px);
        font-style: normal;
        font-weight: 400;
        line-height: 120%;
        /* 19.2px */
        letter-spacing: 0.32px;

    }

    .text-16 {
        color: var(--Neutrals-Panel-Gray, #626262);
        font-family: var(--font-family-body, "DM Sans");
        font-size: var(--font-size-sm, 12px);
        font-style: normal;
        font-weight: 400;
        line-height: 120%;
        /* 19.2px */
        letter-spacing: 0.32px;

    }

    .text-color-16 {
        background: var(--Core-Skyline-Gradient, linear-gradient(124deg, rgba(0, 113, 206, 0.80) -8.3%, #005AB6 43.6%, #062F87 97.5%));
        background-clip: text;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;

        /* body/xs-bold */
        font-family: var(--font-family-body, "DM Sans");
        font-size: var(--font-size-xs, 12px);
        font-style: normal;
        font-weight: 600;
        line-height: 120%;
        letter-spacing: 0.24px;
    }

    .text-14 {
        color: var(--Neutrals-Panel-Gray, #626262);
        /* body/xs-reg */
        font-family: var(--font-family-body, "DM Sans");
        font-size: var(--font-size-xs, 12px);
        font-style: normal;
        font-weight: 600;
        line-height: 125%;
        /* 15px */
        letter-spacing: 0.24px;
    }

    .text-color-14 {
        background: var(--Core-Skyline-Gradient, linear-gradient(124deg, rgba(0, 113, 206, 0.80) -8.3%, #005AB6 43.6%, #062F87 97.5%));
        background-clip: text;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;

        /* body/xs-bold */
        font-family: var(--font-family-body, "DM Sans");
        font-size: var(--font-size-xs, 12px);
        font-style: normal;
        font-weight: 600;
        line-height: 120%;
        letter-spacing: 0.24px;
    }

    .logo_for_auth {
        width: 102.38px;
        height: 26px;
        margin-bottom: 30px;
    }

    .world_map {
        width: 100%;
        height: 200px;
    }

    .or_line {
        display: flex;
        padding-top: 32px;
        padding-bottom: 32px;
        width: 100%;
    }

    .flewit_modal_body {
        display: flex;
        width: 90%;
        height: 470px;
        padding: 24px 0 48px 0;
        flex-direction: column;
        align-items: center;
        gap: 24px;
        overflow-y: scroll;
    }

    .bottom-fixed-sliding-modal-container {
        max-width: 500px;
        margin: 0 auto;
    }

    .footer {
        height: 210px;
        padding-left: 24px;
    }

    .footer-logo {
        position: relative;
        width: 127.97px;
        height: 32px;
        aspect-ratio: 4;
        margin-top: 24px;
        margin-left: 24px;
    }

    .footer-frame-2 {

        margin-top: 24px;
        margin-left: 24px;
    }

    .media-block {
        border-top: 1px solid #FAFCFE;
        margin-top: 24px;
        margin-left: 24px;
        padding-top: 20px;
        width: 90%;
    }
}

.types {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    align-self: stretch;
    margin-top: 32px;
    margin-bottom: 32px;
}

.select-type {
    display: flex;
    align-items: center;
    gap: 8px;
    align-self: stretch;
}

.radio-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 4px;
    flex: 1 0 0;
}

.select-type:has(input:checked) .title {
    align-self: stretch;
    font-family: var(--font-family-body, "DM Sans");
    font-size: var(--font-size-sm, 16px);
    font-style: normal;
    font-weight: 600;
    line-height: 120%;
    letter-spacing: 0.32px;

    background: var(--Core-Skyline-Gradient, linear-gradient(124deg, rgba(0, 113, 206, 0.80) -8.3%, #005AB6 43.6%, #062F87 97.5%));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.select-type .title {
    color: var(--Neutrals-Panel-Gray, #626262);

    /* body/md-bold */
    font-family: var(--font-family-body, "DM Sans");
    font-size: var(--font-size-sm, 16px);
    font-style: normal;
    font-weight: 600;
    line-height: 120%;
    /* 19.2px */
    letter-spacing: 0.32px;
}

.radio-content .desc {
    color: var(--Neutrals-Placeholder, #8E8E93);

    font-family: var(--font-family-body, "DM Sans");
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 125%;
    letter-spacing: 0.28px;
}

.sub-title-icon {
    display: flex;
    /* justify-content: center; */
    align-items: center;
    gap: 8px;
}

.sub-title-icon .icon {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.sub-title-icon .sub-title-heading {
    color: var(--Neutrals-Panel-Gray, #626262);

    /* body/lg-bold */
    font-family: var(--font-family-body, "DM Sans");
    font-size: var(--font-size-lg, 20px);
    font-style: normal;
    font-weight: 600;
    line-height: 120%;
    /* 24px */
    letter-spacing: 0.4px;
}
