.mm-ancheta-builder {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 24px;
    align-items: start;
    max-width: 100%;
}

.mm-ancheta-builder,
.mm-ancheta-builder * {
    box-sizing: border-box;
}

.mm-ancheta-builder {
    --mm-brand-navy: #0d2a4f;
    --mm-brand-navy-2: #153861;
    --mm-brand-gold: #b87b00;
    --mm-brand-card: #ffffff;
    --mm-brand-ink: #1f2b3b;
    --mm-brand-muted: #4b6079;
}

.mm-ancheta-title {
    margin: 0 0 16px;
    font-size: 1.25rem;
}

.mm-ancheta-toggle {
    display: none;
    border: 1px solid #e5e5e5;
    background: #fff;
    padding: 10px 14px;
    border-radius: 8px;
    margin-bottom: 16px;
    cursor: pointer;
}

.mm-ancheta-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 16px;
}

.mm-ancheta-city-filter {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 0 0 12px;
    padding: 8px 14px;
    border-radius: 999px;
    border: 1px solid #d4deeb !important;
    background: #f5f8fc !important;
    color: #0d2a4f !important;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all .2s ease;
}

.mm-ancheta-city-filter::before {
    content: "";
    width: 14px;
    height: 14px;
    display: inline-block;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 14px 14px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230d2a4f' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolygon points='3 5 21 5 14 13 14 19 10 21 10 13 3 5'/%3E%3C/svg%3E");
}

.mm-ancheta-city-filter:hover {
    background: #e9f1fb !important;
    border-color: #c6d6ea !important;
}

.mm-ancheta-city-filter.is-active {
    background: #0d2a4f !important;
    border-color: #0d2a4f !important;
    color: #ffffff !important;
    box-shadow: 0 8px 20px rgba(13, 42, 79, 0.22);
}

.mm-ancheta-city-filter.is-active::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolygon points='3 5 21 5 14 13 14 19 10 21 10 13 3 5'/%3E%3C/svg%3E");
}

.mm-ancheta-city-filter.is-disabled {
    opacity: .65;
    cursor: not-allowed;
}

.mm-ancheta-tab {
    border: 1px solid #e5e5e5 !important;
    background: #2b2b2b;
    color: #fff !important;
    padding: 8px 14px;
    border-radius: 12px;
    cursor: pointer;
    font-size: 0.95rem;
    box-shadow: none !important;
    text-decoration: none !important;
}

.mm-ancheta-tab:hover,
.mm-ancheta-tab:focus,
.mm-ancheta-tab:focus-visible {
    background: #0D2A4F !important;
    border-color: #0D2A4F !important;
    color: #ffffff !important;
    outline: none;
}

.mm-ancheta-tab.is-active {
    background: #b87b00 !important;
    border-color: #b87b00 !important;
    color: #fff !important;
}

.mm-ancheta-tab.is-active:hover,
.mm-ancheta-tab.is-active:focus,
.mm-ancheta-tab.is-active:focus-visible {
    background: #b87b00 !important;
    border-color: #b87b00 !important;
    color: #fff !important;
}

/* Blindaje contra reglas globales tipo [type=button], button { color:#c36; border:#c36 } */
.mm-ancheta-builder button,
.mm-ancheta-builder button[type="button"],
.mm-ancheta-builder button[type="submit"] {
    color: inherit;
    border-color: inherit;
}

.mm-ancheta-builder .mm-ancheta-tab,
.mm-ancheta-builder .mm-ancheta-tab[type="button"] {
    background: #2b2b2b !important;
    border: 1px solid #2b2b2b !important;
    color: #fff !important;
}

.mm-ancheta-builder .mm-ancheta-tab.is-active,
.mm-ancheta-builder .mm-ancheta-tab.is-active[type="button"] {
    background: #b87b00 !important;
    border-color: #b87b00 !important;
    color: #fff !important;
}

.mm-ancheta-loading {
    display: none;
    position: sticky;
    bottom: 12px;
    z-index: 5;
    width: fit-content;
    margin: 10px auto 0;
    padding: 9px 14px;
    border-radius: 999px;
    border: 1px solid rgba(13, 42, 79, 0.16);
    background: rgba(13, 42, 79, 0.94);
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    text-align: center;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
    backdrop-filter: blur(2px);
}

.mm-ancheta-loading::before {
    content: "";
    display: inline-block;
    width: 12px;
    height: 12px;
    margin-right: 8px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.35);
    border-top-color: #ffffff;
    vertical-align: -2px;
    animation: mmAnchetaSpin 0.8s linear infinite;
}

@keyframes mmAnchetaSpin {
    to { transform: rotate(360deg); }
}

.mm-ancheta-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 16px;
    align-items: stretch;
    width: 100%;
}

.mm-ancheta-card {
    border: 1px solid #e6ebf2;
    padding: 14px;
    border-radius: 14px;
    background: #fff;
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-height: 100%;
    width: 100%;
    max-width: 100%;
    box-shadow: 0 8px 22px rgba(10, 25, 60, 0.04);
    transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.mm-ancheta-builder .mm-ancheta-card {
    border: 1px solid #dbe4f1 !important;
    background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%) !important;
    box-shadow: 0 10px 26px rgba(8, 24, 48, 0.07) !important;
}

.mm-ancheta-card:hover {
    border-color: #d5deea;
    box-shadow: 0 14px 28px rgba(10, 25, 60, 0.08);
    transform: translateY(-1px);
}

.mm-ancheta-builder .mm-ancheta-card:hover {
    border-color: #c9d7ea !important;
    box-shadow: 0 16px 30px rgba(8, 24, 48, 0.12) !important;
}

.mm-ancheta-thumb {
    min-height: 210px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: #f7f8fa;
}

.mm-ancheta-thumb img {
    width: auto;
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    object-fit: contain;
    aspect-ratio: 4 / 5;
    max-width: 100%;
}

.mm-ancheta-info {
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: 1 1 auto;
}

.mm-ancheta-name {
    font-weight: 700;
    text-decoration: none;
    color: #0d2a4f;
    line-height: 1.3;
    min-height: 52px;
}

.mm-ancheta-builder .mm-ancheta-name,
.mm-ancheta-builder .mm-ancheta-name:link,
.mm-ancheta-builder .mm-ancheta-name:visited {
    color: var(--mm-brand-navy) !important;
    font-weight: 800 !important;
    text-decoration: none !important;
}

.mm-ancheta-builder .mm-ancheta-name:hover,
.mm-ancheta-builder .mm-ancheta-name:focus,
.mm-ancheta-builder .mm-ancheta-name:focus-visible {
    color: var(--mm-brand-gold) !important;
}

.mm-ancheta-price {
    color: #49566b;
    font-size: 1.05rem;
    font-weight: 700;
}

.mm-ancheta-builder .mm-ancheta-price,
.mm-ancheta-builder .mm-ancheta-price .amount,
.mm-ancheta-builder .mm-ancheta-price bdi {
    color: var(--mm-brand-ink) !important;
    font-weight: 800 !important;
}

.mm-ancheta-city-note {
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    min-height: 42px;
}

.mm-ancheta-builder .mm-ancheta-city-note {
    color: var(--mm-brand-muted) !important;
}

.mm-ancheta-city-note-inner {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.mm-ancheta-city-trigger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    padding: 0;
    border-radius: 999px;
    border: 1px solid #d6e1ee;
    background: #f5f8fc;
    color: #24466b;
    line-height: 1;
    cursor: pointer;
    transition: background .2s ease, border-color .2s ease, color .2s ease, box-shadow .2s ease;
}

.mm-ancheta-city-trigger:hover,
.mm-ancheta-city-trigger:focus,
.mm-ancheta-city-trigger:focus-visible,
.mm-ancheta-city-note.is-open .mm-ancheta-city-trigger {
    outline: none;
    box-shadow: 0 10px 24px rgba(13, 42, 79, 0.14);
}

.mm-ancheta-city-trigger.is-available {
    border-color: #cfe4d3;
    background: #f1faf3;
    color: #1f6b35;
}

.mm-ancheta-city-trigger.is-unavailable {
    border-color: #f0d3d3;
    background: #fff6f6;
    color: #a33434;
}

.mm-ancheta-city-trigger.is-neutral {
    border-color: #d6e1ee;
    background: #f5f8fc;
    color: #24466b;
}

.mm-ancheta-city-trigger-icon {
    width: 15px;
    height: 15px;
    flex: 0 0 15px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 15px 15px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2324466b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='9' cy='20' r='1'/%3E%3Ccircle cx='18' cy='20' r='1'/%3E%3Cpath d='M2.5 4h2l2.4 10.5a2 2 0 0 0 2 1.5h8.6a2 2 0 0 0 1.9-1.4L21 8H7'/%3E%3C/svg%3E");
}

.mm-ancheta-city-trigger.is-available .mm-ancheta-city-trigger-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231f6b35' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='9' cy='20' r='1'/%3E%3Ccircle cx='18' cy='20' r='1'/%3E%3Cpath d='M2.5 4h2l2.4 10.5a2 2 0 0 0 2 1.5h8.6a2 2 0 0 0 1.9-1.4L21 8H7'/%3E%3C/svg%3E");
}

.mm-ancheta-city-trigger.is-unavailable .mm-ancheta-city-trigger-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23a33434' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='9' cy='20' r='1'/%3E%3Ccircle cx='18' cy='20' r='1'/%3E%3Cpath d='M2.5 4h2l2.4 10.5a2 2 0 0 0 2 1.5h8.6a2 2 0 0 0 1.9-1.4L21 8H7'/%3E%3Cpath d='M9 9l6 6M15 9l-6 6'/%3E%3C/svg%3E");
}

.mm-ancheta-city-tooltip {
    position: absolute;
    right: 0;
    bottom: calc(100% + 10px);
    z-index: 12;
    width: min(260px, calc(100vw - 56px));
    padding: 10px 12px;
    border-radius: 12px;
    border: 1px solid #d9e3f0;
    background: #ffffff;
    color: #2f4a6f;
    line-height: 1.4;
    box-shadow: 0 16px 30px rgba(8, 24, 48, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(6px);
    transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
    pointer-events: none;
}

.mm-ancheta-city-tooltip::after {
    content: "";
    position: absolute;
    right: 18px;
    top: 100%;
    width: 12px;
    height: 12px;
    background: #ffffff;
    border-right: 1px solid #d9e3f0;
    border-bottom: 1px solid #d9e3f0;
    transform: rotate(45deg) translateY(-7px);
}

.mm-ancheta-city-note:hover .mm-ancheta-city-tooltip,
.mm-ancheta-city-note:focus-within .mm-ancheta-city-tooltip,
.mm-ancheta-city-note.is-open .mm-ancheta-city-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.mm-ancheta-city-note-line {
    display: block;
}

.mm-ancheta-city-note-line + .mm-ancheta-city-note-line {
    margin-top: 3px;
}

.mm-ancheta-city-note-label {
    font-weight: 800;
    color: #355274;
}

.mm-ancheta-card.is-unavailable {
    border-color: #f1c2c2;
}

.mm-ancheta-card.is-unavailable .mm-ancheta-city-note-label {
    color: #8b1c1c;
}

@media (max-width: 767px) {
    .mm-ancheta-city-tooltip {
        width: min(240px, calc(100vw - 40px));
    }
}

.mm-ancheta-add,
.mm-ancheta-send,
.mm-ancheta-remove {
    border: 0;
    background: #1a1a1a;
    color: #fff;
    padding: 8px 12px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.9rem;
    width: 100%;
}

/* Prioridad alta para evitar que reglas globales oculten el texto del botón */
.mm-ancheta-builder .mm-ancheta-add,
.mm-ancheta-builder .mm-ancheta-send,
.mm-ancheta-builder .mm-ancheta-remove {
    background: var(--mm-brand-navy) !important;
    color: #ffffff !important;
    border: 0 !important;
    opacity: 1 !important;
    border-radius: 12px !important;
    font-size: 1rem !important;
    font-weight: 700 !important;
    min-height: 40px;
}

.mm-ancheta-builder .mm-ancheta-add {
    background: linear-gradient(180deg, var(--mm-brand-navy-2) 0%, var(--mm-brand-navy) 100%) !important;
}

.mm-ancheta-builder .mm-ancheta-add:hover,
.mm-ancheta-builder .mm-ancheta-send:hover {
    background: var(--mm-brand-navy-2) !important;
    color: #ffffff !important;
}

.mm-ancheta-builder .mm-ancheta-send {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.mm-ancheta-builder .mm-ancheta-send::before {
    content: "";
    width: 16px;
    height: 16px;
    flex: 0 0 16px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 16px 16px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='9' cy='20' r='1'/%3E%3Ccircle cx='20' cy='20' r='1'/%3E%3Cpath d='M1 1h4l2.68 13.39A2 2 0 0 0 9.64 16H19a2 2 0 0 0 1.95-1.57L23 6H6'/%3E%3C/svg%3E");
}

.mm-ancheta-add {
    margin-top: auto;
}

.mm-ancheta-add.is-added {
    background: #c98922 !important;
}

.mm-ancheta-remove {
    background: #c0392b;
    width: auto;
    white-space: nowrap;
}

.mm-ancheta-send[disabled] {
    opacity: 0.6;
    cursor: not-allowed;
}

.mm-ancheta-send-note {
    margin: 8px 0 0;
    padding: 8px 10px;
    border-radius: 10px;
    border: 1px solid #f3d3d3;
    background: #fff5f5;
    color: #8b1c1c;
    font-size: 0.86rem;
    line-height: 1.35;
    font-weight: 600;
}

.mm-ancheta-sidebar {
    border: 1px solid #dbe3ef;
    padding: 18px;
    border-radius: 14px;
    background: #ffffff;
    position: sticky;
    top: 20px;
    box-shadow: 0 14px 30px rgba(7, 19, 36, 0.06);
}

.mm-ancheta-sidebar .mm-ancheta-title {
    margin-bottom: 14px;
    color: #0d2a4f;
    font-size: 1.7rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.mm-ancheta-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 16px;
}

.mm-ancheta-item {
    display: grid;
    grid-template-columns: 48px 1fr auto auto;
    grid-template-areas: "thumb name price remove";
    align-items: center;
    column-gap: 10px;
    padding: 10px 0 12px;
    border-bottom: 1px solid #e9edf4;
}

.mm-ancheta-item.mm-ancheta-item--blocked-city {
    border-bottom: 2px solid #d9232d;
}

.mm-ancheta-item-thumb {
    grid-area: thumb;
    width: 48px;
    height: 48px;
    border-radius: 10px;
    border: 1px solid #e1e7f0;
    background: #f4f7fb;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.mm-ancheta-item-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mm-ancheta-item-thumb-fallback {
    width: 18px;
    height: 18px;
    opacity: 0.45;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 18px 18px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%230d2a4f' stroke-width='2'%3E%3Crect x='3' y='4' width='18' height='16' rx='2' ry='2'/%3E%3Ccircle cx='8.5' cy='9.5' r='1.5'/%3E%3Cpath d='M21 15l-5-5L5 20'/%3E%3C/svg%3E");
}

.mm-ancheta-empty {
    margin: 0;
    color: #777;
}

.mm-ancheta-item-name {
    grid-area: name;
    font-weight: 700;
    color: #1f2b3b;
    line-height: 1.25;
}

.mm-ancheta-qty {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: 6px;
    padding: 2px 8px;
    font-size: 0.75rem;
    border-radius: 999px;
    background: #f1f1f1;
    color: #555;
}

.mm-ancheta-item-price {
    grid-area: price;
    color: #1f2b3b;
    font-size: 1rem;
    font-weight: 700;
    font-variant-numeric: tabular-nums;
    padding-right: 6px;
}

.mm-ancheta-item:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.mm-ancheta-item.mm-ancheta-item--blocked-city:last-child {
    border-bottom: 2px solid #d9232d;
    padding-bottom: 12px;
}

.mm-ancheta-remove {
    grid-area: remove;
    width: 28px;
    height: 28px;
    padding: 0;
    font-size: 1rem;
    line-height: 1;
    border-radius: 50%;
    background: #c0392b;
    color: #fff;
    border: 1px solid #b23124;
}

.mm-ancheta-remove:hover {
    background: #a93226;
}

.mm-ancheta-summary {
    border-top: 1px solid #e7edf5;
    padding-top: 10px;
    margin-bottom: 16px;
    display: grid;
    gap: 6px;
    background: #f7f9fc;
    border: 1px solid #e1e8f2;
    border-radius: 12px;
    padding: 12px;
}

.mm-ancheta-summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.95rem;
}

.mm-ancheta-summary-total {
    font-size: 1.2rem;
    color: #0d2a4f;
}

@media (max-width: 900px) {
    .mm-ancheta-builder {
        grid-template-columns: 1fr;
    }

    .mm-ancheta-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .mm-ancheta-sidebar {
        display: none;
        position: static;
    }

    .mm-ancheta-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        width: 100%;
    }

    .mm-ancheta-title {
        font-size: 1.1rem;
    }

    .mm-ancheta-card {
        padding: 10px;
    }

    .mm-ancheta-thumb img {
        aspect-ratio: 3 / 4;
        max-height: 320px;
    }

    .mm-ancheta-add {
        padding: 10px 12px;
        font-size: 0.95rem;
    }
}

.mm-ancheta-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 9998;
}

.mm-ancheta-popup {
    display: none;
    position: fixed;
    inset: 50% 12px auto 12px;
    transform: translateY(-50%);
    max-height: calc(100vh - 48px);
    overflow: auto;
    z-index: 9999;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.mm-ancheta-popup-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.mm-ancheta-close {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid #e5e5e5;
    background: #fff;
    cursor: pointer;
    font-size: 1.2rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    padding: 0;
}

.mm-ancheta-open .mm-ancheta-overlay,
.mm-ancheta-open .mm-ancheta-popup {
    display: block;
}

.mm-ancheta-notice-open {
    overflow: hidden;
}

.mm-ancheta-notice {
    position: fixed;
    inset: 0;
    z-index: 10020;
    display: none;
}

.mm-ancheta-notice.is-visible {
    display: block;
}

.mm-ancheta-notice-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(7, 19, 36, 0.48);
    backdrop-filter: blur(2px);
}

.mm-ancheta-notice-card {
    position: absolute;
    top: 50%;
    left: 50%;
    width: min(92vw, 520px);
    transform: translate(-50%, -50%);
    background: #ffffff;
    border: 1px solid #d5deea;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 20px 44px rgba(7, 19, 36, 0.28);
}

.mm-ancheta-notice-title {
    margin: 0 0 8px;
    color: #0d2a4f;
    font-size: 1.15rem;
    font-weight: 800;
}

.mm-ancheta-notice-message {
    margin: 0;
    color: #2f4a6f;
    font-size: 0.96rem;
    line-height: 1.45;
}

.mm-ancheta-notice-city {
    margin-top: 10px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 10px;
    border-radius: 10px;
    background: #f5f8fc;
    border: 1px solid #d9e3f0;
    color: #0d2a4f;
    font-size: 0.93rem;
}

.mm-ancheta-notice-actions {
    margin-top: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
}

.mm-ancheta-notice-point {
    width: 16px;
    height: 16px;
    flex: 0 0 16px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 16px 16px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230d2a4f' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 10c0 6-9 13-9 13S3 16 3 10a9 9 0 1 1 18 0z'/%3E%3Ccircle cx='12' cy='10' r='3'/%3E%3C/svg%3E");
}

.mm-ancheta-notice-city-name {
    font-weight: 800;
}

.mm-ancheta-notice-button {
    margin-left: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 120px;
    border: 0;
    border-radius: 999px;
    background: #0d2a4f;
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 700;
    padding: 10px 18px;
    cursor: pointer;
}

@media (max-width: 640px) {
    .mm-ancheta-notice-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .mm-ancheta-notice-city {
        width: 100%;
    }

    .mm-ancheta-notice-button {
        width: 100%;
        margin-left: 0;
    }
}

.mm-ancheta-notice-button:hover,
.mm-ancheta-notice-button:focus,
.mm-ancheta-notice-button:focus-visible {
    background: #102f58;
    outline: none;
}
