/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Aug 20 2024 | 18:36:42 */
/* Add your CSS code here.

For example:
.example {
    color: red;
}

For brushing up on your CSS knowledge, check out http://www.w3schools.com/css/css_syntax.asp

End of comment */ 

.woocommerce-notices-wrapper {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    width: 300px;
    max-width: 90%;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    background-color: #ffffff; /* Fundo branco para modernidade */
}

.woocommerce-error {
    padding: 1em 1.5em;
    margin: 0;
    background-color: #ffeded; /* Fundo de erro sutil */
    color: #b81c23; /* Cor de texto de erro */
    border-left: 4px solid #b81c23; /* Barra lateral vermelha para destaque */
    border-radius: 8px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    position: relative;
    font-size: 14px;
    line-height: 1.5;
}

.woocommerce-error::before {
    content: "\26A0"; /* Código Unicode para um ícone de alerta */
    font-size: 20px;
    color: #b81c23;
    position: absolute;
    top: 50%;
    left: 15px;
    transform: translateY(-50%);
}

.woocommerce-error li {
    list-style: none;
    padding-left: 30px; /* Espaço para o ícone */
    margin: 0;
}

.woocommerce-error .close-popup {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
    color: #b81c23;
    font-size: 16px;
    transition: color 0.3s ease;
}

.woocommerce-error .close-popup:hover {
    color: #7f54b3; /* Cor muda ao passar o mouse */
}
