GENERAL FAQ
.accordion {
background-color: #002f5e;
color: #ffff;
cursor: pointer;
padding: 18px;
width: 100%;
border: none;
text-align: left;
outline: none;
font-size: 20px;
transition: 0.4s;
}
.active, .accordion:hover {
background-color: #bad80a;
}
.panel {
padding: 0 18px;
display: none;
background-color: white;
overflow: hidden;
}
Is the Bookstore open?The Bookstore is operating in a limited capacity due to COVID-19. Our online store is open, we are processing orders Monday-Friday but our physical store in the Viking Union remains closed to the public at this time.I'm having trouble placing an order, who do I contact?The best way to reach us at present is via email at asbookstore@wwu.eduWhat forms of payment does the Bookstore accept?Our online store accepts all major credit cards, AS Bookstore gift cards, and Student Account charges. For detailed information about student account charges please reference our Charge-It page. When in person service resumes we will accept cash as well as personal and traveler's checks (identification required).If I have more questions, who do I contact?The best way to reach us at present is via email at asbookstore@wwu.eduMy organization is holding an event. How do I request a Bookstore donation?All donations from the Bookstore must be approved by the Associated Students. To ask for a donation, submit the Donation Request form here.
var acc = document.getElementsByClassName("accordion");
var i;
for (i = 0; i < acc.length; i++) {
acc[i].addEventListener("click", function() {
this.classList.toggle("active");
var panel = this.nextElementSibling;
if (panel.style.display === "block") {
panel.style.display = "none";
} else {
panel.style.display = "block";
}
});
}