@font-face {
    font-family: "Bingo";
    src:
        local("Bingo"),
        url("./Bingo-Regular.woff2") format("woff2"),
        url("./Bingo-Regular.woff") format("woff");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Bingo";
    src:
        local("Bingo Italic"),
        url("./Bingo-Italic.woff2") format("woff2"),
        url("./Bingo-Italic.woff") format("woff");
    font-weight: 400;
    font-style: italic;
    font-display: swap;
}

[style*="font-family: Bingo"],
sr7-txt {
    font-variant-ligatures: none;
    font-feature-settings: "liga" 0, "clig" 0;
}

.footer-newsletter {
    width: 100%;
    max-width: 420px;
}

.footer-newsletter .newsletter-form {
    display: flex;
    flex-wrap: nowrap;
    align-items: stretch;
    justify-content: space-between;
    width: 100%;
    height: 56px;
    margin: 0;
    padding: 0;
    border: 1px solid #d9d9d9;
    border-radius: 16px;
    overflow: hidden;
    background: #ffffff;
    box-sizing: border-box;
}

.footer-newsletter .newsletter-form input[type="email"] {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;

    flex: 1 1 auto;
    min-width: 0;
    width: 100%;
    height: 100%;

    margin: 0 !important;
    padding: 0 18px !important;

    border: none !important;
    outline: none !important;
    border-radius: 0 !important;

    background: transparent !important;
    box-shadow: none !important;

    color: #222;
    font-size: 15px;
    font-weight: 400;
    line-height: 1;
    font-family: inherit;

    box-sizing: border-box;
}

.footer-newsletter .newsletter-form input[type="email"]::placeholder {
    color: #999999;
    opacity: 1;
}

.footer-newsletter .newsletter-form input[type="email"]:focus {
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
}

.footer-newsletter .newsletter-form button {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;

    flex: 0 0 56px;
    width: 56px;
    height: 56px;

    margin: 0 !important;
    padding: 0 !important;

    border: none !important;
    border-radius: 0 !important;

    background: #4C1C0A;
    color: #ffffff;

    display: flex;
    align-items: center;
    justify-content: center;

    cursor: pointer;
    box-shadow: none !important;
    transition: background .25s ease;

    box-sizing: border-box;
}

.footer-newsletter .newsletter-form button:hover,
.footer-newsletter .newsletter-form button:focus {
    background: #2f2f2f;
    outline: none;
}

.footer-newsletter .newsletter-form button svg {
    display: block;
    width: 18px;
    height: 18px;
    margin: 0;
    padding: 0;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    pointer-events: none;
}

.footer-newsletter .newsletter-form:focus-within {
    border-color: #4C1C0A;
}

@media (max-width: 480px) {
    .footer-newsletter .newsletter-form {
        height: 52px;
    }

    .footer-newsletter .newsletter-form button {
        flex-basis: 52px;
        width: 52px;
        height: 52px;
    }

    .footer-newsletter .newsletter-form input[type="email"] {
        padding: 0 16px !important;
        font-size: 14px;
    }

    .footer-newsletter .newsletter-form button svg {
        width: 17px;
        height: 17px;
    }
}