/* ===================
   Estilos para alertas de woocommerce
   =================== */

.woocommerce-notices-wrapper {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 450px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.25);
  z-index: 9999;
}

.woocommerce-error::before, .woocommerce-message::before, .woocommerce-info::before {
  display: none;
}

.woocommerce-error, .woocommerce-message, .woocommerce-info {
  margin: 0;
  padding: 30px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}


@media(max-width:1199px){
  .woocommerce-notices-wrapper {
    width: 70vw;
  }
}