/* colours */
:root{
  --primary: #e8f5e9;
  --secondary: #c8e6c9;
  --title: #4caf50;
}

/* layout styles */
nav{
  background: var(--primary);
  border-bottom: 10px solid var(--secondary);
}
nav a{
  text-transform: uppercase;
  color: var(--title);
}
nav a span{
  font-weight: bold;
}
nav .sidenav-trigger{
  margin: 0;
}

/* pharmacy styles */
.pharmacys{
  margin-top: 20px;
}
.card-panel.pharmacy{
  border-radius: 8px;
  padding: 10px;
  box-shadow: 0px 1px 3px rgba(90,90,90,0.1);
  display: grid;
  grid-template-columns: 2fr 6fr 1fr;
  grid-template-areas: "image details delete";
  position: relative;
}
.pharmacy img{
  grid-area: image;
  max-width: 60px;
}
.pharmacy-details{
  grid-area: details;
  margin-top: 6px;
}
.pharmacy-delete{
  grid-area: delete;
  position: absolute;
  bottom: 0px;
  right: 0px;
}
.pharmacy-delete i{
  font-size: 18px;
}
.pharmacy-title{
  font-weight: bold;
}
.pharmacy-address{
  font-size: 0.8em;
}
.subheader{
  color: var(--title) !important;
}
/* form-styles */
.add-btn{
  background: var(--title) !important;
}
input{
  box-shadow: none !important;
  -webkit-box-shadow: none !important;
}
.side-form button{
  background: var(--title);
  box-shadow: 1px 1px 3px rgba(90,90,90,0.2);
}
form .input-field{
  margin-top: 30px;
}

#work-collections .collection-header {
  font-size: 1.14rem;
  font-weight: 500;
}

#work-collections p.collections-title {
  font-size: 1.0rem;
  padding: 0;
  margin: 0;
  font-weight: 500;
}

#work-collections p.collections-content {
  font-size: 0.9rem;
  padding: 0;
  margin: 0;
  font-weight: 400;
}

#work-collections .collection-item.avatar {
  height: auto;
  padding-top: 22px;
}

i.rating{
  color: orange;
}