/* Notice Bar */
.woocommerce-notices-wrapper {
    width: 100%;
}

/* General */
.woocommerce-notices-wrapper .woocommerce-message,
.woocommerce-notices-wrapper .woocommerce-error {
    position: relative;
    margin: 0 auto 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
	flex-wrap: wrap;
    text-decoration: none;
    line-height: 1;
    outline: 0;
    cursor: pointer;
    font-weight: 400;
    transition: all .4s ease;
    padding: 1.4rem 1.2rem;
    background-color: transparent;
    font-family: inherit;
    font-size: 1.4rem;
}
	
	.woocommerce-notices-wrapper .woocommerce-message a {
		margin-left: 1rem;
	}


	/* Message */
	.woocommerce-notices-wrapper .woocommerce-message {
		width: calc(100% - 20rem);
		border: 1px solid var(--pink);
		color: var(--pink);
	}
	
	
	/* Error */
	.woocommerce-notices-wrapper .woocommerce-error {
		border: 1px solid var(--red);
		color: var(--red);
		padding-left: 5rem;
	}

		.woocommerce-notices-wrapper .woocommerce-error  li {
			display: block;
			width: 100%;
			padding: 0.2rem;
		}
	
	.woocommerce-notices-wrapper .woocommerce-error:before {
		color: var(--red);
		padding-top: 0.3rem;
	}


@media (max-width: 1800px) {
	.woocommerce-notices-wrapper .woocommerce-message {
	    width: calc(100% - 12rem);
	}
}

@media (max-width: 1300px) {
	.woocommerce-notices-wrapper .woocommerce-message {
	    width: calc(100% - 6rem);
	}
}

@media (max-width: 650px) {
	.woocommerce-notices-wrapper .woocommerce-message {
	    width: calc(100% - 3rem);
	}
}