/* BITMETALL RECALL BUILD: 20260809-2 */
#myModal.bm-recall-modal,
#recallSuccessPopup.bm-recall-success-popup {
    --recall-ink: #17251e;
    --recall-muted: #67736d;
    --recall-border: #dce4df;
    --recall-surface: #ffffff;
    --recall-soft: #f4f7f5;
    --recall-green: #245f3f;
    --recall-green-dark: #19482f;
    --recall-orange: #e9852d;
    --recall-danger: #b44242;
}

#myModal.bm-recall-modal .modal-dialog {
    width: calc(100% - 32px);
    max-width: 590px;
    margin: 1.75rem auto;
}

#myModal.bm-recall-modal .modal-content {
    position: relative;
    overflow: hidden;
    border: 0;
    border-radius: 24px;
    background: var(--recall-surface);
    box-shadow: 0 26px 70px rgba(21, 47, 33, 0.24);
}

#myModal.bm-recall-modal .modal-content::before {
    position: absolute;
    z-index: 1;
    top: 0;
    right: 0;
    left: 0;
    height: 5px;
    content: '';
    background: linear-gradient(90deg, var(--recall-green) 0 70%, var(--recall-orange) 70% 100%);
}

#myModal.bm-recall-modal .modal-header {
    position: relative;
    align-items: flex-start;
    padding: 32px 38px 14px;
    border: 0;
}

#myModal.bm-recall-modal .bm-recall-modal__heading {
    max-width: 450px;
    padding-right: 32px;
}

#myModal.bm-recall-modal .bm-recall-modal__eyebrow {
    display: inline-block;
    margin-bottom: 8px;
    color: var(--recall-orange);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    line-height: 1.2;
    text-transform: uppercase;
}

#myModal.bm-recall-modal .modal-title {
    margin: 0;
    color: var(--recall-ink);
    font-size: clamp(25px, 4vw, 32px);
    font-weight: 700;
    letter-spacing: -0.025em;
    line-height: 1.15;
}

#myModal.bm-recall-modal .bm-recall-modal__intro {
    margin: 12px 0 0;
    color: var(--recall-muted);
    font-size: 15px;
    line-height: 1.55;
}

#myModal.bm-recall-modal .close {
    position: absolute;
    top: 25px;
    right: 26px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    margin: 0;
    padding: 0 0 3px;
    border: 0;
    border-radius: 50%;
    background: var(--recall-soft);
    color: var(--recall-ink);
    font-size: 27px;
    font-weight: 400;
    line-height: 1;
    opacity: 1;
    text-shadow: none;
    transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

#myModal.bm-recall-modal .close:hover,
#myModal.bm-recall-modal .close:focus {
    background: var(--recall-green);
    color: #ffffff;
    opacity: 1;
    outline: 0;
    transform: rotate(4deg);
}

#myModal.bm-recall-modal .modal-body {
    padding: 12px 38px 36px;
}

#myModal.bm-recall-modal .bm-recall-form {
    display: grid;
    gap: 18px;
}

#myModal.bm-recall-modal .bm-recall-form__field label {
    display: block;
    margin: 0 0 7px;
    color: var(--recall-ink);
    font-size: 14px;
    font-weight: 650;
    line-height: 1.35;
}

#myModal.bm-recall-modal .bm-recall-form__field label span {
    color: var(--recall-orange);
}

#myModal.bm-recall-modal .form-control {
    width: 100%;
    height: 52px;
    padding: 13px 15px;
    border: 1px solid var(--recall-border);
    border-radius: 12px;
    background: var(--recall-soft);
    color: var(--recall-ink);
    font-size: 16px;
    line-height: 1.4;
    box-shadow: none;
    transition: border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

#myModal.bm-recall-modal textarea.form-control {
    min-height: 108px;
    height: auto;
    resize: vertical;
}

#myModal.bm-recall-modal .form-control::placeholder {
    color: #8a948f;
    opacity: 1;
}

#myModal.bm-recall-modal .form-control:hover {
    border-color: #bdcbc3;
}

#myModal.bm-recall-modal .form-control:focus {
    border-color: var(--recall-green);
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(36, 95, 63, 0.12);
    outline: 0;
}

#myModal.bm-recall-modal .bm-recall-form__actions {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 2px;
}

#myModal.bm-recall-modal .bm-recall-form__submit,
#myModal.bm-recall-modal .bm-recall-form__cancel {
    min-height: 50px;
    padding: 12px 22px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.2;
    cursor: pointer;
    transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

#myModal.bm-recall-modal .bm-recall-form__submit {
    position: relative;
    flex: 1 1 auto;
    border: 1px solid var(--recall-green);
    background: var(--recall-green);
    color: #ffffff;
    box-shadow: 0 10px 24px rgba(36, 95, 63, 0.2);
}

#myModal.bm-recall-modal .bm-recall-form__submit:hover,
#myModal.bm-recall-modal .bm-recall-form__submit:focus {
    border-color: var(--recall-green-dark);
    background: var(--recall-green-dark);
    color: #ffffff;
    outline: 0;
    transform: translateY(-1px);
}

#myModal.bm-recall-modal .bm-recall-form__submit:focus-visible,
#myModal.bm-recall-modal .bm-recall-form__cancel:focus-visible,
#myModal.bm-recall-modal .close:focus-visible {
    box-shadow: 0 0 0 4px rgba(233, 133, 45, 0.22);
}

#myModal.bm-recall-modal .bm-recall-form__submit[aria-busy='true'] {
    padding-right: 50px;
    cursor: wait;
    opacity: 0.8;
}

#myModal.bm-recall-modal .bm-recall-form__submit[aria-busy='true']::after {
    position: absolute;
    top: 50%;
    right: 20px;
    width: 17px;
    height: 17px;
    margin-top: -8.5px;
    content: '';
    border: 2px solid rgba(255, 255, 255, 0.45);
    border-top-color: #ffffff;
    border-radius: 50%;
    animation: bm-recall-spin 0.75s linear infinite;
}

#myModal.bm-recall-modal .bm-recall-form__cancel {
    border: 1px solid var(--recall-border);
    background: transparent;
    color: var(--recall-muted);
}

#myModal.bm-recall-modal .bm-recall-form__cancel:hover,
#myModal.bm-recall-modal .bm-recall-form__cancel:focus {
    border-color: var(--recall-green);
    background: var(--recall-soft);
    color: var(--recall-green);
    outline: 0;
}

#myModal.bm-recall-modal .bm-recall-form__status {
    min-height: 0;
    color: var(--recall-muted);
    font-size: 14px;
    line-height: 1.45;
}

#myModal.bm-recall-modal .bm-recall-form__status.is-loading {
    min-height: 20px;
}

#myModal.bm-recall-modal .bm-recall-response {
    margin: 0;
    padding: 12px 14px;
    border-radius: 10px;
    font-weight: 600;
}

#myModal.bm-recall-modal .bm-recall-response--success {
    background: #edf7f1;
    color: var(--recall-green-dark);
}

#myModal.bm-recall-modal .bm-recall-response--error {
    background: #fff0f0;
    color: var(--recall-danger);
}

body.bm-recall-success-open {
    overflow: hidden;
}

#recallSuccessPopup.bm-recall-success-popup {
    position: fixed;
    z-index: 2000;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    background: rgba(15, 27, 21, 0.68);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.2s ease, visibility 0.2s ease;
}

#recallSuccessPopup.bm-recall-success-popup.is-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

#recallSuccessPopup.bm-recall-success-popup .bm-recall-success-popup__dialog {
    position: relative;
    width: 100%;
    max-width: 440px;
    overflow: hidden;
    border-radius: 24px;
    background: var(--recall-surface);
    box-shadow: 0 26px 70px rgba(21, 47, 33, 0.28);
    transform: translateY(10px) scale(0.98);
    transition: transform 0.2s ease;
}

#recallSuccessPopup.bm-recall-success-popup.is-visible .bm-recall-success-popup__dialog {
    transform: translateY(0) scale(1);
}

#recallSuccessPopup.bm-recall-success-popup .bm-recall-success-popup__dialog::before {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 5px;
    content: '';
    background: linear-gradient(90deg, var(--recall-green) 0 70%, var(--recall-orange) 70% 100%);
}

#recallSuccessPopup.bm-recall-success-popup .bm-recall-success-popup__dismiss {
    position: absolute;
    z-index: 2;
    top: 20px;
    right: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    margin: 0;
    padding: 0 0 3px;
    border: 0;
    border-radius: 50%;
    background: var(--recall-soft);
    color: var(--recall-ink);
    font-size: 27px;
    font-weight: 400;
    line-height: 1;
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

#recallSuccessPopup.bm-recall-success-popup .bm-recall-success-popup__dismiss:hover,
#recallSuccessPopup.bm-recall-success-popup .bm-recall-success-popup__dismiss:focus {
    background: var(--recall-green);
    color: #ffffff;
    outline: 0;
    transform: rotate(4deg);
}

#recallSuccessPopup.bm-recall-success-popup .bm-recall-success-popup__dismiss:focus-visible,
#recallSuccessPopup.bm-recall-success-popup .bm-recall-success__button:focus-visible {
    box-shadow: 0 0 0 4px rgba(233, 133, 45, 0.22);
}

#recallSuccessPopup.bm-recall-success-popup .bm-recall-success {
    padding: 44px 36px 34px;
    text-align: center;
}

#recallSuccessPopup.bm-recall-success-popup .bm-recall-success__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 68px;
    height: 68px;
    margin-bottom: 18px;
    border-radius: 50%;
    background: #edf7f1;
    color: var(--recall-green);
}

#recallSuccessPopup.bm-recall-success-popup .bm-recall-success__icon svg {
    width: 36px;
    height: 36px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

#recallSuccessPopup.bm-recall-success-popup .bm-recall-success__eyebrow {
    display: block;
    margin-bottom: 7px;
    color: var(--recall-orange);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    line-height: 1.2;
    text-transform: uppercase;
}

#recallSuccessPopup.bm-recall-success-popup .bm-recall-success__title {
    margin: 0;
    color: var(--recall-ink);
    font-size: 28px;
    font-weight: 700;
    line-height: 1.2;
}

#recallSuccessPopup.bm-recall-success-popup #recall-success-message {
    margin: 12px 0 24px;
    color: var(--recall-muted);
    font-size: 15px;
    line-height: 1.55;
}

#recallSuccessPopup.bm-recall-success-popup .bm-recall-success__button {
    min-width: 150px;
    min-height: 48px;
    padding: 11px 24px;
    border: 1px solid var(--recall-green);
    border-radius: 12px;
    background: var(--recall-green);
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.2;
    cursor: pointer;
    box-shadow: 0 10px 24px rgba(36, 95, 63, 0.2);
    transition: background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

#recallSuccessPopup.bm-recall-success-popup .bm-recall-success__button:hover,
#recallSuccessPopup.bm-recall-success-popup .bm-recall-success__button:focus {
    border-color: var(--recall-green-dark);
    background: var(--recall-green-dark);
    color: #ffffff;
    outline: 0;
    transform: translateY(-1px);
}

@keyframes bm-recall-spin {
    to {
        transform: rotate(360deg);
    }
}

@media (max-width: 575.98px) {
    #myModal.bm-recall-modal .modal-dialog {
        width: calc(100% - 20px);
        margin: 10px auto;
    }

    #myModal.bm-recall-modal .modal-content {
        border-radius: 18px;
    }

    #myModal.bm-recall-modal .modal-header {
        padding: 27px 22px 12px;
    }

    #myModal.bm-recall-modal .bm-recall-modal__heading {
        padding-right: 34px;
    }

    #myModal.bm-recall-modal .close {
        top: 19px;
        right: 17px;
    }

    #myModal.bm-recall-modal .modal-body {
        padding: 10px 22px 25px;
    }

    #myModal.bm-recall-modal .bm-recall-form {
        gap: 15px;
    }

    #myModal.bm-recall-modal .bm-recall-form__actions {
        align-items: center;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 10px;
    }

    #myModal.bm-recall-modal .bm-recall-form__submit,
    #myModal.bm-recall-modal .bm-recall-form__cancel {
        width: auto;
        min-height: 46px;
        padding: 11px 16px;
    }

    #myModal.bm-recall-modal .bm-recall-form__submit {
        flex: 0 1 auto;
    }

    #recallSuccessPopup.bm-recall-success-popup .bm-recall-success-popup__dialog {
        border-radius: 18px;
    }

    #recallSuccessPopup.bm-recall-success-popup .bm-recall-success {
        padding: 40px 22px 27px;
    }

    #recallSuccessPopup.bm-recall-success-popup .bm-recall-success-popup__dismiss {
        top: 15px;
        right: 15px;
    }
}

@media (prefers-reduced-motion: reduce) {
    #myModal.bm-recall-modal *,
    #myModal.bm-recall-modal *::before,
    #myModal.bm-recall-modal *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }

    #recallSuccessPopup.bm-recall-success-popup,
    #recallSuccessPopup.bm-recall-success-popup *,
    #recallSuccessPopup.bm-recall-success-popup *::before,
    #recallSuccessPopup.bm-recall-success-popup *::after {
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }
}
