.woocommerce-notices-wrapper,
.woocommerce-form-coupon-toggle{
	&:empty{
		display: none;
	}
    font-size: 19px;
    font-family: var(--heading-font-family);
    color: var(--heading-font-color);
    font-weight: 600;
	background: #{'rgba(var(--color-accent-rgb), 0.2)'};
	margin-bottom: $grid-gutters;
	padding: 25px;
    @include border-radius(10px);
    > .woocommerce-error{
        background: none;
        padding: 0;
        margin: 0;
        list-style: none;
        color: red;
    }
}
.woocommerce-message,
.woocommerce-Message{
	display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;

    .button{
    	flex: 0 0 auto;
    	order: 9;
    	min-width: 170px;
    	padding: 21.5px;
    	text-align: center;
    	background: $accent-color;
        color: white;
    	&:hover{
    		background: $primary-color;
    	}
    }
    + .woocommerce-message{
        margin-top: 30px;
    }
}
.woocommerce-error{
    background: $color-red;
    color: $white;
    padding: 25px;
    margin: 0 0 35px;
}