/**
 * File: style.woocommerce.css
 * Created At: 3/10/25 | 12:48
 * Author: niklasmeyer
 * Description: [Kurze Beschreibung der Datei]
 * Version: [Version]
 * Last Updated: [Datum]
 * Project: waldpoet.DEV
 */


.woocommerce-notices-wrapper {
    background-color: rgb(250, 251, 245);
    padding: 0 40px;

    @media (max-width: 1024px) {
        padding: 0 24px;
    }

    .woocommerce-message {
        color: var(--e-global-color-text) !important;
        max-width: 1240px;
        margin: 0 auto;
        padding-right: 0 !important;

        @media (max-width: 767px) {
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: flex-start;
            gap: 8px;
        }

        &:before {
            color: var(--e-global-color-primary) !important;
        }

        .wc-forward {
            color: white;
            background: var(--e-global-color-primary) !important;
        }
    }
}