@font-face {
  font-family: 'Barlow';
  font-style: italic;
  font-weight: 300;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/barlow/v5/7cHsv4kjgoGqM7E_CfOQ4lop.ttf) format('truetype');
}
@font-face {
  font-family: 'Barlow';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/barlow/v5/7cHrv4kjgoGqM7E_Ccs8.ttf) format('truetype');
}
@font-face {
  font-family: 'Barlow';
  font-style: italic;
  font-weight: 500;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/barlow/v5/7cHsv4kjgoGqM7E_CfPI41op.ttf) format('truetype');
}
@font-face {
  font-family: 'Barlow';
  font-style: italic;
  font-weight: 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/barlow/v5/7cHsv4kjgoGqM7E_CfOA5Vop.ttf) format('truetype');
}
@font-face {
  font-family: 'Barlow';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/barlow/v5/7cHqv4kjgoGqM7E3p-kc4A.ttf) format('truetype');
}
@font-face {
  font-family: 'Barlow';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/barlow/v5/7cHpv4kjgoGqM7EPCw.ttf) format('truetype');
}
@font-face {
  font-family: 'Barlow';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/barlow/v5/7cHqv4kjgoGqM7E3_-gc4A.ttf) format('truetype');
}
@font-face {
  font-family: 'Barlow';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/barlow/v5/7cHqv4kjgoGqM7E3t-4c4A.ttf) format('truetype');
}
.transition {
  transition: all 0.2s ease-out;
}
* {
  font-family: "Barlow", sans-serif;
}
html,
body {
  height: 100%;
}
body {
  margin: 0px;
}
body.fs {
  background: linear-gradient(120deg, #bccf00, #e8e100);
  background-size: cover;
}
main.fridge-contents {
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  text-align: center;
}
main.fridge-contents h1 {
  color: #e8e100;
  font-weight: 500;
  text-transform: uppercase;
  font-size: 1.8rem;
  margin: 0px;
  padding: 0.4rem;
  background: #00121e;
}
main.fridge-contents hr {
  display: none;
  width: 80%;
  border: none;
  height: 1px;
  background: #858585;
}
main.fridge-contents #item-list {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-around;
}
main.fridge-contents .btn {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #bccf00;
  color: #394137;
  width: 100%;
  text-align: center;
  font-size: 1.2rem;
  height: 2.4rem;
  border: solid 1px #bccf00;
}
main.fridge-contents .btn:focus {
  outline: 0;
}
main.fridge-select {
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  align-items: center;
  text-align: center;
  min-height: 90vh;
}
main.fridge-select h1 {
  color: #00121e;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 1.8rem;
  margin-bottom: 2rem;
}
main.fridge-select a.fridge {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 9rem;
  width: 9rem;
  margin: 1rem 0.6rem;
  background: #858585;
  background-image: url("assets/products/fridge.jpg");
  background-size: cover;
  background-position: center;
  text-decoration: none;
  box-shadow: 2px 2px 16px rgba(0, 0, 0, 0.4);
  border-radius: 1rem;
  transition: all 0.2s ease-out;
}
main.fridge-select a.fridge span {
  font-size: 1.4rem;
  font-weight: bold;
  text-transform: uppercase;
  color: white;
  width: 100%;
  background: rgba(0, 0, 0, 0.6);
  padding: 0.2rem;
}
main.fridge-select a.fridge:hover {
  transition: all 0.2s ease-out;
  filter: brightness(1.2) contrast(0.8);
}
.item {
  background: #fff;
  display: flex;
  flex-flow: column nowrap;
  margin: 1rem 0rem;
  width: 10rem;
  border-radius: 0.5rem;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
  border: solid 2px #e84900;
}
.item-description {
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
  padding-bottom: 1rem;
  height: 100%;
}
.item-description img {
  height: 8rem;
  margin-top: 0.4rem;
}
.item-description span {
  font-size: 1.2rem;
  font-weight: bold;
}
.item-actions {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: space-between;
}
.item-button,
.item-amount {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #00121e;
  width: 30%;
  text-align: center;
  font-size: 1.6rem;
  height: 2.4rem;
  font-weight: bold;
  padding-bottom: 0.2rem;
}
.item-button {
  font-size: 1.1rem;
}
.item-button:first-of-type {
  color: #e84900;
}
.item-button:last-of-type {
  color: #78c90e;
}
.item-amount {
  background: transparent;
  font-size: 1.4rem;
}
.item.completed {
  background: #fff;
  border: solid 2px #bccf00;
}
.alert {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: center;
  height: 3rem;
  width: 100%;
  background-color: #dd1515;
  color: #dfdfdf;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2);
  font-size: 0.9rem;
}
