VitaGene will remain open throughout the festive season. However, we kindly ask for your patience with orders, as public holidays may cause delays in courier deliveries.
Nourish: Nutrient Supplement Assessment including Genetic Test Feedback
Choosing a selection results in a full page refresh.
Opens in a new window.
/* Styling for the supplier list container */
.supplier-list {
max-height: 400px; /* Adjust height as needed */
overflow-y: auto; /* Enable vertical scrolling */
border: 1px solid #ddd;
padding: 10px;
background-color: #f9f9f9;
border-radius: 5px;
}
/* Styling for each supplier item */
.supplier-list .supplier-item {
padding: 10px 15px;
margin-bottom: 5px;
background-color: #fff;
border: 1px solid #ddd;
border-radius: 5px;
cursor: pointer;
font-family: "Montserrat", sans-serif;
font-size: 14px;
color: #333;
text-align: center;
transition: background-color 0.3s, color 0.3s;
}
.supplier-list .supplier-item:hover {
background-color: #004080; /* Primary blue */
color: #fff; /* White text on hover */
}
/* Remove the default list styles */
.supplier-list {
list-style: none;
padding: 0;
margin: 0;
}