body {
  margin: 0;
}
*, ::after, ::before {
  box-sizing: border-box;
}
.flex {
  display: flex;
}
.abs {
  position: absolute;
}
.rel {
  position: relative;
}
a {
  text-decoration: none;
  color: inherit;
  transition: all 0.2s;
}
.bold {
  font-weight: bold;
}
.small {
  font-size: small;
}
.smaller {
  font-size: smaller;
}
.large {
  font-size: large;
}
.xl {
  font-size: x-large;
}
.header {
  height: 400px;
  color: white;
}
.background {
  background-image: url('../img/subheader.jpg');
  filter: brightness(0.9) contrast(0.3);
  background-position: center;
  background-size: cover;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
}
.header-container {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  max-width: 900px;
  justify-content: space-between;
  align-items: center;
}
.breadcrumb {
  padding: 15px;
  border-radius: 25px;
  background-color: white;
  color: gray;
  font-family: sans-serif;
  transition: all 0.2s;
}
.breadcrumb a {
  font-weight: bold;
}
@media screen and (max-width: 650px) {
  .header-container {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media screen and (max-width:650px) {
  table {
    border: none;
  }
  tbody {
    border: 1px solid #8e8e8e;
  }
  table tbody:nth-child(1) {
    display: none;
  }
  #cartTable td {
    position: relative;
    display: block;
    width: 100%;
    text-align: right;
    padding: 10px;
    border-top: 0;
  }
  #cartTable td:nth-child(1) {
    text-align: left;
  }
  #quantity {
    width: 25%;
  }
  #cartTable td:before {
    content: attr(data-title);
    font-weight: 700;
    float: left;
  }
}