/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */

.working-status-message {
    display: flex;
    flex-direction: row;
    align-self: center;
    line-height: 1em;
    color: #000;
    font-weight: bold;
}

.working-status-message > img.emoji {
    box-shadow: 0 0 3px #2ac022 !important;
    border-radius: 50%;
    margin-right: 5px !important;
}

@media (min-width: 992px) {
    #header-container:has(.working-status-message) {
        grid-template-columns: auto 1fr auto auto auto auto;
    }
}

@media (min-width: 550px) and (max-width: 991px) {
    #header-container:has(.working-status-message) {
        grid-template-columns: auto auto 1fr auto auto auto;
    }

    #header-container:has(.working-status-message) > :nth-child(3) {
        order: 2;
    }

    #header-container:has(.working-status-message) > :nth-child(4) {
        order: 3;
    }

    #header-container:has(.working-status-message) > :nth-child(5) {
        order: 4;
    }
}

@media (max-width: 549px) {
    .working-status-message {
        display: none;
    }
}

#billing_phone.success {
    border: solid 2px #6dc22e !important;
}

#billing_phone.error {
    border: solid 2px #ff7c7c !important;
}

.woocommerce-error {
    padding: 1em 2em 1em 3.5em;
    margin: 0 0 2em;
    position: relative;
    background-color: #ffe9e9;
    color: #cb4a4a;
    border-top: 3px solid #e72525;
    list-style: none outside;
    width: auto;
    word-wrap: break-word
}

.woocommerce-error li, .woocommerce-info li, .woocommerce-message li {
    list-style: none outside !important;
    padding-left: 0 !important;
    margin-left: 0 !important
}