.woocommerce-notices-wrapper {
    margin-bottom: 3rem;
    width: 100%;
    max-width: 130rem;
    /* margin: 2rem auto 0; */
    margin: 0 auto;
}

.woocommerce-message {
    padding: 1rem 3rem;
    margin: 2em 0 2em;
    position: relative;
    background-color: #f6f5f8;
    color: #515151;
    border-top: 3px solid #8fae1b;
    list-style: none outside;
    width: auto;
    word-wrap: break-word;
    display: flex;
    align-items: center;
    font-size: 1.5rem;
}
	
.woocommerce-message::before {
	content: "✔";
    color: #8fae1b;
    display: inline-block;
    position: absolute;
    top: 1rem;
    right: 1.5rem;
}

.single-product .woocommerce-message::before,
.tax-product_cat .woocommerce-message::before,
.search .woocommerce-message::before,
.woocommerce-shop .woocommerce-message::before {
    top: 1.7rem;
}

.woocommerce-message strong {
    margin: 0 .3rem;
}

.woocommerce-message a.wc-forward {
    font-size: 100%;
    margin: 0;
    line-height: 1;
    cursor: pointer;
    position: relative;
    text-decoration: none;
    overflow: visible;
    padding: .618em 1em;
    font-weight: 700;
    border-radius: 3px;
    right: auto;
    color: #515151;
    background-color: #e9e6ed;
    border: 0;
    display: inline-block;
    background-image: none;
    box-shadow: none;
    text-shadow: none;
    margin-right: auto;
}

@media (max-width: 1023px) {
    .woocommerce-notices-wrapper {
        padding: 0 1.5rem;
    }
}

@media (max-width: 500px) {
    .woocommerce-message {
        flex-wrap: wrap;
    }

    .woocommerce-message a.wc-forward {
        margin-right: unset;
        margin-top: 1rem;
    }
}