/* colours */
:root {
  --primary: #337ab7;
  --secondary: #E6FFFF;
  --title: white;
}

h5 {
  padding-top: 20px;
}

.progress {
  margin-top: 2rem;
}

.google-button {
  margin: 0 auto;
  margin-top: 2rem;
}

.nav-wrapper i {
  color: var(--secondary);
}

/* 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;
}

.sidenav-trigger {
  padding-right: 10px;
  cursor: pointer;
}

.products {
  margin-top: 2rem;
}

.card-panel.product {
  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;
}

.product img {
  grid-area: image;
  max-width: 60px;
}

.product-details {
  grid-area: details;
  margin-top: 6px;
}

.product-delete {
  grid-area: delete;
  position: absolute;
  bottom: 0px;
  right: 0px;
}

.product-delete i {
  font-size: 18px;
}

.product-title {
  font-weight: bold;
}

.product-message {
  font-size: 0.8em;
}

img.cover {
  object-fit: cover;
  max-height: 150px;
}

.card .card-title {
  font-size: 20px;
  margin-bottom: 8px;
}

.hasNoMoves, .hasNoForm {
  display: none;
}

.card-image {
  height: 200px;
}

.card.large .card-content {
  display: flex;
  flex-direction: column;
  height: 300px;
  max-height: 100%;
}

.card.large .card-content .viewer {
  flex-grow: 1;
  width: 100%;
}

.card.large img {
  min-height: 200px;
  height: 200px;
  object-fit: cover;
}

.card.large .card-image + .card-content {
  max-height: 100%;
}

/* form-styles */
input {
  box-shadow: none !important;
  -webkit-box-shadow: none !important;
}

.settings-form .switch {
  clear: both;
  padding-bottom: 30px;
}

.switch-label {
  font-size: 1rem;
}

select#sorting, select#team, select#shadow {
  display: block;
}

.about {
  padding: 1rem 2rem;
}

.about-divider {
  clear: both;
}

.about-title {
  float: left;
}
