Once we've recieved your order we will pack and dispatch your items with 3 - 5 working days. If we expect any delay we will keep you updated. We are currently unable to offer shipping outside of the UK. The cost of shipping is £2.99
If you wish to return items please contact us at: [email protected]. Returns can only be accepted within 14 days of receipt of order. Please note that earrings are non returnable due to hygiene. If you do wish to return items you will be liable for the postage charge. If an item you have recieved has been damaged on it's way to you please contact us within 48 hours of receipt of order.
Although every effort has been made to list and display items accurately please note that colour and finish may vary. If your item comes with care instructions we cannot be held liable for any losses or damages if these are not followed.
If you would like to contact us please email: [email protected]
.panel {
padding: 10px 18px;
background-color: white;
max-height: 0;
overflow: hidden;
transition: max-height 0.2s ease-out;
}
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.maxHeight){
panel.style.maxHeight = null;
} else {
panel.style.maxHeight = panel.scrollHeight + "px";
}
});
}