/* ==========================================================
   AKORA DATA DELIVERY OUTLOOK V3
   Quiet network delivery estimate on the data entry page.
   ========================================================== */

.data-delivery-outlook {
    display: flex;
    align-items: center;
    gap: 13px;
    width: 100%;
    margin: 18px 0 24px;
    padding: 15px 17px;
    border: 1px solid var(--border, #dce7e2);
    border-radius: 18px;
    background: var(--surface, #ffffff);
    box-shadow: 0 10px 30px rgba(6, 70, 53, 0.055);
}

.data-delivery-outlook[hidden] {
    display: none !important;
}

.data-delivery-outlook-icon {
    display: grid;
    flex: 0 0 38px;
    width: 38px;
    height: 38px;
    place-items: center;
    border-radius: 12px;
    background: var(--green-faint, #f3fbf7);
    color: var(--green, #078667);
}

.data-delivery-outlook-icon svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.data-delivery-outlook-copy {
    min-width: 0;
    flex: 1 1 auto;
}

.data-delivery-outlook-main {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 5px;
    color: var(--text, #14231d);
    font-family: "Manrope", sans-serif;
    font-size: 13px;
    font-weight: 800;
    line-height: 1.35;
}

.data-delivery-outlook-label {
    white-space: nowrap;
}

#data-delivery-outlook-estimate {
    color: var(--green, #078667);
    white-space: nowrap;
}

#data-delivery-outlook-note {
    display: block;
    margin-top: 4px;
    color: var(--text-soft, #687970);
    font-size: 10px;
    font-weight: 500;
    line-height: 1.45;
}

@media (max-width: 520px) {
    .data-delivery-outlook {
        gap: 11px;
        margin-top: 15px;
        margin-bottom: 22px;
        padding: 14px 15px;
        border-radius: 16px;
    }

    .data-delivery-outlook-icon {
        flex-basis: 34px;
        width: 34px;
        height: 34px;
        border-radius: 11px;
    }

    .data-delivery-outlook-icon svg {
        width: 18px;
        height: 18px;
    }

    .data-delivery-outlook-main {
        font-size: 12px;
    }

    #data-delivery-outlook-note {
        font-size: 9px;
    }
}
